Home
last modified time | relevance | path

Searched refs:getCurrentValue (Results 1 – 22 of 22) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DAttributeDescriptorLabelProvider.java43 String v = node.getCurrentValue(); in getImage()
57 return ((UiAbstractTextAttributeNode)element).getCurrentValue(); in getText()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiTextAttributeNode.java67 desc.getUiName(), getCurrentValue(), in createUiControl()
154 getCurrentValue() != null && in setTextWidget()
155 !mText.getText().equals(getCurrentValue())) { in setTextWidget()
DUiTextValueNode.java67 if (isValid() && !getTextWidgetValue().equals(getCurrentValue())) { in updateValue()
70 setTextWidgetValue(getCurrentValue()); in updateValue()
DIUiSettableAttributeNode.java27 public String getCurrentValue(); in getCurrentValue() method
DUiListAttributeNode.java82 setTextWidgetValue(getCurrentValue()); in createUiControl()
215 getCurrentValue() != null && in onComboChange()
216 !mCombo.getText().equals(getCurrentValue())) { in onComboChange()
DUiAbstractTextAttributeNode.java50 public final String getCurrentValue() { in getCurrentValue() method in UiAbstractTextAttributeNode
DUiElementNode.java1078 String value = uiAttr.getCurrentValue(); in createXmlNode()
1091 commitAttributeToXml(node, node.getCurrentValue()); in createXmlNode()
1620 String value = uiAttr.getCurrentValue(); in commitDirtyAttributesToXml()
1649 commitAttributeToXml(uiAttribute, uiAttribute.getCurrentValue()); in commitDirtyAttributesToXml()
1730 commitAttributeToXml(uiAttribute, uiAttribute.getCurrentValue()); in commitDirtyAttributesToXml()
1821 String current = uiAttr.getCurrentValue(); in setInternalAttrValue()
1859 return uiAttr.getCurrentValue(); in getAttributeValue()
1944 return attribute.getCurrentValue().length() > 0; in isPropertySet()
1950 return unknownAttr.getCurrentValue().length() > 0; in isPropertySet()
2010 String oldValue = attribute.getCurrentValue(); in setPropertyValue()
DUiAttributeNode.java61 public abstract String getCurrentValue(); in getCurrentValue() method in UiAttributeNode
DUiSeparatorAttributeNode.java48 public String getCurrentValue() { in getCurrentValue() method in UiSeparatorAttributeNode
DUiFlagAttributeNode.java100 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
DUiResourceAttributeNode.java126 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
DTextValueCellEditor.java37 super.doSetValue(((UiAttributeNode)value).getCurrentValue()); in doSetValue()
DFlagValueCellEditor.java52 super.doSetValue(mUiFlagAttribute.getCurrentValue()); in doSetValue()
DResourceValueCellEditor.java53 super.doSetValue(mUiResourceAttribute.getCurrentValue()); in doSetValue()
DListValueCellEditor.java57 String attrValue = uiListAttribute.getCurrentValue(); in doSetValue()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
DUiElementDetail.java326 if (ui_attr.getCurrentValue() != null && in createUiAttributeControls()
327 ui_attr.getCurrentValue().length() > 0) { in createUiAttributeControls()
471 if (ui_attr.getCurrentValue() != null && ui_attr.getCurrentValue().length() > 0) { in updateUnknownAttributesSection()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
DUiPackageAttributeNode.java122 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
DUiManifestPkgAttrNode.java122 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
DUiClassAttributeNode.java275 final Text text = toolkit.createText(composite, getCurrentValue());
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
DManifestEditor.java408 if (attr.getCurrentValue().equals(className)) { in processMarker()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DCanvasViewInfo.java531 String value = attr.getCurrentValue(); in toSimpleElement()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidContentAssist.java1308 String currentValue = currAttrNode.getCurrentValue(); in completeSuffix()