All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.grimoire.critical.Todo Maven / Gradle / Ivy

Go to download

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 "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy