Home
last modified time | relevance | path

Searched refs:labels (Results 1 – 3 of 3) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
DAddTranslationDialog.java279 List<String> labels = new ArrayList<String>(); in fillLanguages() local
281 labels.add(code + ": " + LocaleManager.getLanguageName(code)); //$NON-NLS-1$ in fillLanguages()
283 Collections.sort(labels); in fillLanguages()
284 labels.add(0, "(Select)"); in fillLanguages()
285 mLanguageCombo.setItems(labels.toArray(new String[labels.size()])); in fillLanguages()
295 List<String> labels = new ArrayList<String>(); in fillRegions() local
297 labels.add(code + ": " + LocaleManager.getRegionName(code)); //$NON-NLS-1$ in fillRegions()
299 Collections.sort(labels); in fillRegions()
300 labels.add(0, "Any"); in fillRegions()
301 mRegionCombo.setItems(labels.toArray(new String[labels.size()])); in fillRegions()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DNewProjectPage.java216 List<String> labels = new ArrayList<String>(24); in createControl() local
218 labels.add(label); in createControl()
220 assert labels.size() >= 15; // *Known* versions to ADT, not installed/available versions in createControl()
222 labels.add(codeName); in createControl()
224 String[] versions = labels.toArray(new String[labels.size()]); in createControl()
DNewTemplatePage.java433 List<String> labels = Lists.newArrayList(); in createOptionCombo() local
475 labels.add(optionLabel); in createOptionCombo()
483 assert labels.size() > 0; in createOptionCombo()
484 combo.setItems(labels.toArray(new String[labels.size()])); in createOptionCombo()