package no.met.metadataeditor.dataTypes; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation used to mark a field in a DataAttributes sub class as an * attribute. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface IsAttributeValue { DataType value(); }