Package org.emftrace.emffit.ui.commands.strategies

Examples of org.emftrace.emffit.ui.commands.strategies.SetStrategyNameCommand


      public void focusGained(FocusEvent e) {
      }

      @Override
      public void focusLost(FocusEvent e) {
        new SetStrategyNameCommand(strategy, part.getCaption())
            .runAsJob();
      }

    };
  }
View Full Code Here


    //setup
    Strategy strategy = issueCard.getStrategies().get(0);
    String newName = "new foo name";
   
    //run command
    new SetStrategyNameCommand(strategy, newName).runWithoutUnicaseCommand();
   
    //check
    assertEquals(newName, strategy.getName());
  }
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.ui.commands.strategies.SetStrategyNameCommand

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.