1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-09-20 19:19:04 +00:00
plantuml/src/gen/annotation/Todo.java

33 lines
857 B
Java
Raw Normal View History

2021-05-14 08:42:57 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2021-05-14 08:42:57 +00:00
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* Original Author: Arnaud Roques
*
*/
2020-12-20 12:59:51 +00:00
package gen.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface Todo {
String what();
}