ca.grimoire.critical.Todo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of todo-annotations Show documentation
Show all versions of todo-annotations Show documentation
Annotations and processors for tagging questionable code and tracking
TODOs in a compiler-detectable way.
The newest version!
package ca.grimoire.critical;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Code around the annotation site has work that needs to be done.
*/
@Retention(RetentionPolicy.SOURCE)
public @interface Todo {
public String value() default "";
}