Searched refs:UiAttributeNode (Results 1 - 25 of 31) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
H A DTextValueCellEditor.java19 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
25 * TextCellEditor able to receive a {@link UiAttributeNode} in the {@link #setValue(Object)}
36 if (value instanceof UiAttributeNode) {
37 super.doSetValue(((UiAttributeNode)value).getCurrentValue());
H A DUiElementPart.java24 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
219 UiAttributeNode ui_attr = uiNode.findUiAttribute(attr_desc);
247 for (UiAttributeNode ui_attr : mUiElementNode.getAllUiAttributes()) {
273 for (UiAttributeNode ui_attr : mUiElementNode.getAllUiAttributes()) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
H A DSeparatorAttributeDescriptor.java19 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
38 * @return A new {@link UiAttributeNode} linked to this descriptor or null if this
42 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DTextValueDescriptor.java19 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
47 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DEnumAttributeDescriptor.java20 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
39 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DXmlnsAttributeDescriptor.java22 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
29 * Such an attribute has no user interface and no corresponding {@link UiAttributeNode}.
74 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DAttributeDescriptor.java22 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
35 * the correct UiAttributeNode-derived class.
111 * @return A new {@link UiAttributeNode} linked to this descriptor or null if this
114 public abstract UiAttributeNode createUiNode(UiElementNode uiParent);
H A DFlagAttributeDescriptor.java21 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
81 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DListAttributeDescriptor.java21 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
79 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DReferenceAttributeDescriptor.java24 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
97 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DTextAttributeDescriptor.java25 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
231 public UiAttributeNode createUiNode(UiElementNode uiParent) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
H A DUiAttributeNode.java30 * The characteristics of an {@link UiAttributeNode} are declared by a
36 public abstract class UiAttributeNode implements Comparable<UiAttributeNode> { class in inherits:Comparable
43 /** Creates a new {@link UiAttributeNode} linked to a specific {@link AttributeDescriptor}
45 public UiAttributeNode(AttributeDescriptor attributeDescriptor, UiElementNode uiParent) { method in class:UiAttributeNode
55 /** Returns the {@link UiElementNode} that owns this {@link UiAttributeNode} */
170 public int compareTo(UiAttributeNode o) {
H A DUiElementNode.java82 * as well as their children's attributes, see {@link UiAttributeNode}.
121 private HashMap<AttributeDescriptor, UiAttributeNode> mUiAttributes;
122 private HashSet<UiAttributeNode> mUnknownUiAttributes;
126 private Collection<UiAttributeNode> mCachedAllUiAttributes;
160 * the {@link UiAttributeNode}s list.
190 mUnknownUiAttributes = new HashSet<UiAttributeNode>();
199 * @return A new set of {@link UiAttributeNode} that matches the expected
202 private HashMap<AttributeDescriptor, UiAttributeNode> getInternalUiAttributes() {
205 mUiAttributes = new HashMap<AttributeDescriptor, UiAttributeNode>(attrList.length);
207 UiAttributeNode uiNod
[all...]
H A DUiAbstractTextAttributeNode.java31 * See {@link UiAttributeNode} for more information.
33 public abstract class UiAbstractTextAttributeNode extends UiAttributeNode
H A DUiSeparatorAttributeNode.java38 public class UiSeparatorAttributeNode extends UiAttributeNode {
40 /** Creates a new {@link UiAttributeNode} linked to a specific {@link AttributeDescriptor} */
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
H A DPackageAttributeDescriptor.java22 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
38 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DManifestPkgAttrDescriptor.java24 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
53 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DThemeAttributeDescriptor.java23 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
54 public UiAttributeNode createUiNode(UiElementNode uiParent) {
H A DClassAttributeDescriptor.java24 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
102 public UiAttributeNode createUiNode(UiElementNode uiParent) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
H A DColorValueDescriptor.java20 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
38 public UiAttributeNode createUiNode(UiElementNode uiParent) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
H A DUiElementDetail.java29 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
321 UiAttributeNode ui_attr = ui_node.findUiAttribute(attr_desc);
345 final HashSet<UiAttributeNode> reference = new HashSet<UiAttributeNode>();
435 HashSet<UiAttributeNode> reference) {
436 Collection<UiAttributeNode> ui_attrs = ui_node.getUnknownUiAttributes();
449 for (UiAttributeNode ui_attr : ui_attrs) {
467 for (UiAttributeNode ui_attr : ui_attrs) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
H A DApplicationAttributesPart.java25 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
127 UiAttributeNode ui_attr = uiElementNode.findUiAttribute(attr_desc);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
H A DUiManifestElementNode.java23 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
39 * as well as their children's attributes, see {@link UiAttributeNode}.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/
H A DUiColorValueNode.java20 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
36 * See {@link UiAttributeNode} for more information.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
H A DValuesContentAssist.java37 import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode;
186 UiAttributeNode currAttrNode = desc.createUiNode(uiParent);

Completed in 163 milliseconds

12