mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-10 15:50:57 +00:00
15 lines
326 B
Java
15 lines
326 B
Java
|
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();
|
||
|
|
||
|
}
|