package play.modules.origo.core.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Hooks/Listeners for each element of the UI rendering process. * <p/> * The \@Decorates can only be used in a class with \@Theme annotation. */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface Decorates { String type(); }