1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-10 15:50:57 +00:00
plantuml/src/gen/annotation/Todo.java

15 lines
326 B
Java
Raw Normal View History

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();
}