package org.activityinfo.model.form.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Provides a description for a given field */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Description { }