Skip to content

Instantly share code, notes, and snippets.

@sebastianmonte
Created July 31, 2015 07:13
Show Gist options
  • Save sebastianmonte/56240e79e892b6c1bada to your computer and use it in GitHub Desktop.
Save sebastianmonte/56240e79e892b6c1bada to your computer and use it in GitHub Desktop.
package com.gofore.fixme.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
@Retention(RetentionPolicy.SOURCE)
@Target({ANNOTATION_TYPE, CONSTRUCTOR, FIELD, METHOD, TYPE})
public @interface Fixme {
String summary();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment