ManifestElementDescriptorpublic class ManifestElementDescriptor extends com.android.ide.eclipse.editors.descriptors.ElementDescriptor {@link ManifestElementDescriptor} describes an XML element node, with its
element name, its possible attributes, its possible child elements but also
its display name and tooltip.
This {@link ElementDescriptor} is specialized to create {@link UiManifestElementNode} UI nodes. |
Constructors Summary |
---|
public ManifestElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url, com.android.ide.eclipse.editors.descriptors.AttributeDescriptor[] attributes, com.android.ide.eclipse.editors.descriptors.ElementDescriptor[] children, boolean mandatory)Constructs a new {@link ManifestElementDescriptor}.
super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
| public ManifestElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url, com.android.ide.eclipse.editors.descriptors.AttributeDescriptor[] attributes, com.android.ide.eclipse.editors.descriptors.ElementDescriptor[] children)Constructs a new {@link ManifestElementDescriptor}.
super(xml_name, ui_name, tooltip, sdk_url, attributes, children, false);
| public ManifestElementDescriptor(String xml_name, com.android.ide.eclipse.editors.descriptors.ElementDescriptor[] children)This is a shortcut for
ManifestElementDescriptor(xml_name, xml_name.capitalize(), null, null, null, children).
This constructor is mostly used for unit tests.
super(xml_name, children);
| public ManifestElementDescriptor(String xml_name)This is a shortcut for
ManifestElementDescriptor(xml_name, xml_name.capitalize(), null, null, null, null).
This constructor is mostly used for unit tests.
super(xml_name, null);
|
|