@Retention(value=RUNTIME) @Target(value=METHOD) public @interface Button
Modifier and Type | Required Element and Description |
---|---|
String |
list
The list where this button is to be placed.
|
Modifier and Type | Optional Element and Description |
---|---|
String |
group
The group this button belongs to.
|
String |
icon
The name of the button's icon.
|
boolean |
iconBefore
Allows to specify the icon position (before text or not).
|
String |
key
The resource bundle key for the button's label.
|
double |
order
The order of the button inside the list.
|
String |
titleKey
The resource bundle key for the button's title (shown as a tooltip on most browsers).
|
String |
type
Allows to specify the type of button to render: for example "primary", "link" or "success".
|
public abstract String list
public abstract double order
public abstract String key
public abstract String titleKey
public abstract String icon
public abstract String type
public abstract String group
public abstract boolean iconBefore