Annotation Interface StyleBundle.StyleGroup

Enclosing interface:
StyleBundle

@Retention(RUNTIME) @Target(TYPE) @Documented public static @interface StyleBundle.StyleGroup
Annotation that specifies the style group name for a StyleBundle interface.

This annotation is required on StyleBundle interfaces used with Styler.bundle(Class). It specifies the style group to use when looking up named styles in a StyleSource.

Example:

 @StyleBundle.StyleGroup("mygroup")
 interface MyStyles extends StyleBundle {
     // methods...
 }