ListAttributeDescriptorpublic class ListAttributeDescriptor extends TextAttributeDescriptor Describes a text attribute that can contains some predefined values.
It is displayed by a {@link UiListAttributeNode}. |
Fields Summary |
---|
private String[] | mValues |
Constructors Summary |
---|
public ListAttributeDescriptor(String xmlLocalName, String uiName, String nsUri, String tooltip)Creates a new {@link ListAttributeDescriptor} which automatically gets its
values from the FrameworkResourceManager.
super(xmlLocalName, uiName, nsUri, tooltip);
| public ListAttributeDescriptor(String xmlLocalName, String uiName, String nsUri, String tooltip, String[] values)Creates a new {@link ListAttributeDescriptor} which uses the provided values.
super(xmlLocalName, uiName, nsUri, tooltip);
mValues = values;
|
|