package eu.ggnet.saft.api.ui; import java.lang.annotation.*; import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Annotate Ui Class to indicate, that it should be a Frame not a Dialog. * * @author oliver.guenther */ @Documented @Retention(RUNTIME) @Target(TYPE) public @interface Frame { }