Package org.emftrace.emffit.ui.commands.factors

Examples of org.emftrace.emffit.ui.commands.factors.SetFactorNameCommand


      public void focusGained(FocusEvent e) {
      }

      @Override
      public void focusLost(FocusEvent e) {
        new SetFactorNameCommand(factor, part.getCaption()).runAsJob();
      }
    };
  }
View Full Code Here


  @Test
  public void testDoRun() {
    FactorCategory fc1st  = (FactorCategory) factorTable.getEntries().get(0);
    Factor factor1st = (Factor) fc1st.getChildren().get(1);
    new SetFactorNameCommand(factor1st,"new name for foo factor").runWithoutUnicaseCommand();
    assertEquals("new name for foo factor", factor1st.getName());
  }
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.ui.commands.factors.SetFactorNameCommand

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.