HomeSort by relevance Sort by last modified time
    Searched refs:uiName (Results 1 - 20 of 20) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
TextValueDescriptor.java 34 * @param uiName The UI name of the attribute. Cannot be an empty string and cannot be null.
37 public TextValueDescriptor(String uiName, String tooltip) {
39 setUiName(uiName);
EnumAttributeDescriptor.java 30 public EnumAttributeDescriptor(String xmlLocalName, String uiName, String nsUri,
FlagAttributeDescriptor.java 63 public FlagAttributeDescriptor(String xmlLocalName, String uiName, String nsUri,
TextAttributeDescriptor.java 95 * @param uiName the new UI name to be used
98 public TextAttributeDescriptor setUiName(String uiName) {
99 mUiName = uiName;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/sources/
SdkSourceCategory.java 58 private SdkSourceCategory(String uiName, boolean alwaysDisplay) {
59 mUiName = uiName;
SdkAddonSource.java 38 * @param uiName The UI-visible name of the source. Can be null.
40 public SdkAddonSource(String url, String uiName) {
41 super(url, uiName);
SdkSource.java 90 * @param uiName The UI-visible name of the source. Can be null.
92 public SdkSource(String url, String uiName) {
111 if (uiName == null) {
112 uiName = sSourcesProps.getProperty(SdkSourceProperties.KEY_NAME, url, null);
114 sSourcesProps.setProperty(SdkSourceProperties.KEY_NAME, url, uiName);
118 mUiName = uiName;
    [all...]
SdkRepoSource.java 53 * @param uiName The UI-visible name of the source. Can be null.
55 public SdkRepoSource(String url, String uiName) {
56 super(url, uiName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ColorValueDescriptor.java 30 public ColorValueDescriptor(String uiName, String tooltip) {
31 super(uiName, tooltip);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui_3.6.1.M20100826-1330.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimatorDescriptors.java 126 * @param uiName the UI name to display the element as
139 String xmlName, String uiName, String styleName, String extraStyle,
148 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, tooltip, sdkUrl,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/
MenuDescriptors.java 77 "Menu", // uiName,
88 "Item", // uiName,
96 "Group", // uiName,
104 "Sub-Menu", // uiName,
114 "Item", // uiName,
122 "Group", // uiName,
141 String xmlName, String uiName, String sdkUrl,
145 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, null, sdkUrl,
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
Archive.java 84 private Os(String uiName) {
85 mUiName = uiName;
136 private Arch(String uiName) {
137 mUiName = uiName;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/
OtherXmlDescriptors.java 184 "Action Key", // uiName
193 "Searchable", // uiName
215 "AppWidget Provider", // uiName
229 String xmlName, String uiName, String sdkUrl,
233 ElementDescriptor element = new ElementDescriptor(xmlName, uiName, null, sdkUrl,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 266 String uiName = xmlName;
338 uiName,
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
AddonsListFetcher.java 67 private Site(String url, String uiName) {
69 mUiName = uiName;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 298 String uiName = mDescriptor.getUiName();
303 if (LayoutDescriptors.VIEW_VIEWTAG.equals(uiName) && mXmlNode instanceof Element) {
307 uiName = cls.substring(cls.lastIndexOf('.') + 1);
316 if (attr.toLowerCase(Locale.US).indexOf(uiName.toLowerCase(Locale.US)) == -1) {
318 styledString.append(String.format(" (%1$s)", uiName),
326 styledString.append(uiName);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 311 String uiName = getUiName(xmlName);
313 ElementDescriptor element = new ManifestElementDescriptor(xmlName, uiName, null, sdkUrl,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlinePage.java 688 String uiName = desc.getUiName();
689 if (uiName.equals(LINEAR_LAYOUT)) {
696 } else if (uiName.equals(VIEW_VIEWTAG)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 126 public TypeInfo(String uiName,
134 mUiName = uiName;
    [all...]

Completed in 447 milliseconds