HomeSort by relevance Sort by last modified time
    Searched defs:Choices (Results 1 - 2 of 2) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LinearLayoutRuleTest.java 159 assertTrue(menuAction instanceof RuleAction.Choices);
160 RuleAction.Choices choices = (RuleAction.Choices) menuAction; local
161 List<String> titles = choices.getTitles();
162 List<String> ids = choices.getIds();
169 assertEquals("42dip", choices.getCurrent());
191 orientationAction instanceof RuleAction.Choices);
193 RuleAction.Choices choices = (RuleAction.Choices) orientationAction local
    [all...]
  /sdk/rule_api/src/com/android/ide/common/api/
RuleAction.java 36 * or into a flat submenu using the {@link Choices} class.
47 * Character used to split multiple checked choices.
87 * Special value which will insert a separator in the choices' submenu.
169 NestedAction choices = new NestedAction(id, title, provider, callback, local
171 choices.setIconUrl(iconUrl);
172 return choices;
184 * marked. Can be null. Can be an id not present in the choices
195 * @return the new {@link Choices}
197 public static Choices createChoices(String id, String title,
200 Choices choices = new Choices(id, title, callback, titles, iconUrls local
240 Choices choices = new Choices(id, title, callback, titles, iconUrls, local
268 Choices choices = new DelayedChoices(id, title, callback, local
    [all...]

Completed in 336 milliseconds