Package sos.scheduler.editor.app

Examples of sos.scheduler.editor.app.TreeMenu


  private void createGTree() {
    gTree = new Group(sashForm, SWT.NONE);
    gTree.setLayout(new FillLayout());
    gTree.setText("Scheduler Elements");
    tree = new Tree(gTree, SWT.BORDER);
    tree.setMenu(new TreeMenu(tree, dom, this).getMenu());
    tree.addListener(SWT.MenuDetect, new Listener() {
      public void handleEvent(Event e) {
        e.doit = tree.getSelectionCount() > 0;
      }
    });
View Full Code Here

TOP

Related Classes of sos.scheduler.editor.app.TreeMenu

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.