Package info.textgrid.lab.noteeditor.commands

Examples of info.textgrid.lab.noteeditor.commands.ManageSourcesCommand


  }

  @SuppressWarnings("unchecked")
  public Command createManageSourcesCommand() {
    CompoundCommand compoundCmd = new CompoundCommand(ACTION_ID);
    ManageSourcesCommand manageSourcesCmd = new ManageSourcesCommand();
    manageSourcesCmd.setMusicDiagram(MusicPlugin.getDefault().getActiveDiagram());
    manageSourcesCmd.setPostList((List<SourceBindingWrapper>) Display.getCurrent().getData(StringConstants.MUSIC_DIAGRAM_DIRTY));
    manageSourcesCmd.setPreList(MusicPlugin.getDefault().getActiveDiagram().getSourceList());
    compoundCmd.add(manageSourcesCmd);
    return compoundCmd;
  }
View Full Code Here

TOP

Related Classes of info.textgrid.lab.noteeditor.commands.ManageSourcesCommand

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.