Package org.emftrace.emffit.ui.commands.issuecards

Examples of org.emftrace.emffit.ui.commands.issuecards.SetIssueCardNameCommand


      public void focusGained(FocusEvent e) {
      }

      @Override
      public void focusLost(FocusEvent e) {
        new SetIssueCardNameCommand(ic, part.getName()).runAsJob();

      }
    };
  }
View Full Code Here


public class SetIssueCardNameCommandTest extends EMFfitTestCase{

  @Test
  public void testDoRun() {
    new SetIssueCardNameCommand(issueCard, "new name for issuecard").runWithoutUnicaseCommand();
    assertEquals("new name for issuecard", issueCard.getName());
  }
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.ui.commands.issuecards.SetIssueCardNameCommand

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.