ReferenceAttributeDescriptorpublic final class ReferenceAttributeDescriptor extends TextAttributeDescriptor Describes an XML attribute displayed containing a value or a reference to a resource.
It is displayed by a {@link UiResourceAttributeNode}. |
Fields Summary |
---|
private com.android.ide.eclipse.common.resources.ResourceType | mResourceType |
Constructors Summary |
---|
public ReferenceAttributeDescriptor(String xmlLocalName, String uiName, String nsUri, String tooltip)Creates a reference attributes that can contain any type of resources.
super(xmlLocalName, uiName, nsUri, tooltip);
| public ReferenceAttributeDescriptor(com.android.ide.eclipse.common.resources.ResourceType resourceType, String xmlLocalName, String uiName, String nsUri, String tooltip)Creates a reference attributes that can contain a reference to a specific
{@link ResourceType}.
super(xmlLocalName, uiName, nsUri, tooltip);
mResourceType = resourceType;
|
|