Examples of SetIssueCardNameCommand


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

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

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
Copyright © 2018 www.massapi.com. 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.