Searched defs:uiParent (Results 1 - 25 of 29) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
H A DEnumAttributeDescriptor.java39 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
40 return new UiListAttributeNode(this, uiParent);
H A DSeparatorAttributeDescriptor.java42 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
43 return new UiSeparatorAttributeNode(this, uiParent);
H A DTextValueDescriptor.java47 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
48 return new UiTextValueNode(this, uiParent);
H A DListAttributeDescriptor.java79 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
80 return new UiListAttributeNode(this, uiParent);
H A DReferenceAttributeDescriptor.java97 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
98 return new UiResourceAttributeNode(mResourceType, this, uiParent);
H A DXmlnsAttributeDescriptor.java74 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
H A DFlagAttributeDescriptor.java81 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
82 return new UiFlagAttributeNode(this, uiParent);
H A DAttributeDescriptor.java110 * @param uiParent The {@link UiElementNode} parent of this UI attribute.
114 public abstract UiAttributeNode createUiNode(UiElementNode uiParent); argument
H A DTextAttributeDescriptor.java231 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
232 return new UiTextAttributeNode(this, uiParent);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
H A DManifestPkgAttrDescriptor.java53 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
54 return new UiManifestPkgAttrNode(this, uiParent);
H A DPackageAttributeDescriptor.java38 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
39 return new UiPackageAttributeNode(this, uiParent);
H A DThemeAttributeDescriptor.java54 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
55 return new UiResourceAttributeNode(ResourceType.STYLE, this, uiParent);
H A DClassAttributeDescriptor.java102 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
104 mMandatory, this, uiParent, mDefaultToProjectOnly);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
H A DUiTextValueNode.java31 public UiTextValueNode(TextValueDescriptor attributeDescriptor, UiElementNode uiParent) { argument
32 super(attributeDescriptor, uiParent);
H A DUiAbstractTextAttributeNode.java44 UiElementNode uiParent) {
45 super(attributeDescriptor, uiParent);
43 UiAbstractTextAttributeNode(AttributeDescriptor attributeDescriptor, UiElementNode uiParent) argument
H A DUiFlagAttributeNode.java71 UiElementNode uiParent) {
72 super(attributeDescriptor, uiParent);
70 UiFlagAttributeNode(FlagAttributeDescriptor attributeDescriptor, UiElementNode uiParent) argument
H A DUiListAttributeNode.java55 UiElementNode uiParent) {
56 super(attributeDescriptor, uiParent);
135 UiElementNode uiParent = getUiParent();
138 String element_name = uiParent.getDescriptor().getXmlName();
166 UiElementNode grandParentNode = uiParent.getUiParent();
54 UiListAttributeNode(ListAttributeDescriptor attributeDescriptor, UiElementNode uiParent) argument
H A DUiSeparatorAttributeNode.java42 UiElementNode uiParent) {
43 super(attrDesc, uiParent);
41 UiSeparatorAttributeNode(SeparatorAttributeDescriptor attrDesc, UiElementNode uiParent) argument
H A DUiAttributeNode.java57 public UiAttributeNode(AttributeDescriptor attributeDescriptor, UiElementNode uiParent) { argument
59 mUiParent = uiParent;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
H A DColorValueDescriptor.java38 public UiAttributeNode createUiNode(UiElementNode uiParent) { argument
39 return new UiColorValueNode(this, uiParent);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/
H A DUiColorValueNode.java44 public UiColorValueNode(TextValueDescriptor attributeDescriptor, UiElementNode uiParent) { argument
45 super(attributeDescriptor, uiParent);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
H A DUiManifestPkgAttrNode.java81 public UiManifestPkgAttrNode(AttributeDescriptor attributeDescriptor, UiElementNode uiParent) { argument
82 super(attributeDescriptor, uiParent);
H A DUiPackageAttributeNode.java81 public UiPackageAttributeNode(AttributeDescriptor attributeDescriptor, UiElementNode uiParent) { argument
82 super(attributeDescriptor, uiParent);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
H A DValuesContentAssist.java140 Node parentNode, Node currentNode, UiElementNode uiParent,
142 super.computeTextValues(proposals, offset, parentNode, currentNode, uiParent,
177 if (uiParent == null) {
180 uiParent = documentDescriptor.createUiNode();
181 uiParent.setEditor(mEditor);
184 UiAttributeNode currAttrNode = desc.createUiNode(uiParent);
139 computeTextValues(List<ICompletionProposal> proposals, int offset, Node parentNode, Node currentNode, UiElementNode uiParent, String prefix) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
H A DUiActions.java111 * @param uiParent An existing UI node or null to add to the tree root
117 public UiElementNode addElement(UiElementNode uiParent, argument
121 if (uiParent instanceof UiDocumentNode && uiParent.getUiChildren().size() > 0) {
122 uiParent = uiParent.getUiChildren().get(0);
124 if (uiSibling != null && uiSibling.getUiParent() != uiParent) {
128 UiElementNode uiNew = addNewTreeElement(uiParent, uiSibling, descriptor, updateLayout);
544 * @param uiParent An existing UI node or null to add to the tree root
550 private UiElementNode addNewTreeElement(UiElementNode uiParent, argument
[all...]

Completed in 163 milliseconds

12