Package com.google.gdt.eclipse.designer.mobile.device.model

Examples of com.google.gdt.eclipse.designer.mobile.device.model.CategoryInfo


   */
  public void test_CategoryMoveCommand_noSource() throws Exception {
    // add Category
    DeviceManager.commandsAdd(new CategoryAddCommand("catA", "a"));
    DeviceManager.commandsAdd(new CategoryAddCommand("catB", "b"));
    CategoryInfo categoryA = DeviceManager.getCategory("catA");
    CategoryInfo categoryB = DeviceManager.getCategory("catB");
    // ignored - we delete "categoryB" before executing command
    {
      CategoryMoveCommand command = new CategoryMoveCommand(categoryB, categoryA);
      DeviceManager.getCategories().remove(categoryB);
      DeviceManager.commandsAdd(command);
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.mobile.device.model.CategoryInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.