Package com.jformdesigner.annotations
Annotation Type BeanInfo.Category
-
@Target(TYPE) @Retention(RUNTIME) public static @interface BeanInfo.Category
This annotation supports grouping of properties into categories, which are displayed in the JFormDesigner Properties view. For example:@BeanInfo( categories={ @Category(name="Sizes", properties={"preferredSize", "minimumSize", "maximumSize"}), @Category(name="Colors", properties={"background", "foreground"}), } ) public class MyButton extends JButton { ... }Its also possible to specify a category for a property withPropertyDesc.category().
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description StringnameThe name of the category.String[]propertiesArray of property names that should be assigned to this category.
-