Home
last modified time | relevance | path

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

/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DPortFieldEditor.java37 public int getCurrentValue() { in getCurrentValue() method in PortFieldEditor
58 int val = getCurrentValue(); in checkState()
/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.java1077 String value = uiAttr.getCurrentValue(); in createXmlNode()
1090 commitAttributeToXml(node, node.getCurrentValue()); in createXmlNode()
1619 String value = uiAttr.getCurrentValue(); in commitDirtyAttributesToXml()
1648 commitAttributeToXml(uiAttribute, uiAttribute.getCurrentValue()); in commitDirtyAttributesToXml()
1729 commitAttributeToXml(uiAttribute, uiAttribute.getCurrentValue()); in commitDirtyAttributesToXml()
1820 String current = uiAttr.getCurrentValue(); in setInternalAttrValue()
1858 return uiAttr.getCurrentValue(); in getAttributeValue()
1943 return attribute.getCurrentValue().length() > 0; in isPropertySet()
1949 return unknownAttr.getCurrentValue().length() > 0; in isPropertySet()
2009 String oldValue = attribute.getCurrentValue(); in setPropertyValue()
DUiSeparatorAttributeNode.java48 public String getCurrentValue() { in getCurrentValue() method in UiSeparatorAttributeNode
DUiAttributeNode.java73 public abstract String getCurrentValue(); in getCurrentValue() method in UiAttributeNode
DUiFlagAttributeNode.java100 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
DUiResourceAttributeNode.java119 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
DCommandLineParser.java197 return arg.getCurrentValue(); in getValue()
206 return arg.getCurrentValue(); in getValue()
208 if (arg.getCurrentValue() != null) { in getValue()
209 lastDefault = arg.getCurrentValue(); in getValue()
420 if (arg.isMandatory() && arg.getCurrentValue() == null) { in parseArgs()
655 arg.setCurrentValue(! ((Boolean) arg.getCurrentValue()).booleanValue()); in process()
728 Object v = arg.getCurrentValue(); in process()
874 public Object getCurrentValue() { in getCurrentValue() method in CommandLineParser.Arg
/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/
DUiManifestPkgAttrNode.java122 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
DUiPackageAttributeNode.java122 final Text text = toolkit.createText(composite, getCurrentValue()); in createUiControl()
DUiClassAttributeNode.java271 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.java1247 String currentValue = currAttrNode.getCurrentValue(); in completeSuffix()