Package vg.userInterface.navigator.components

Examples of vg.userInterface.navigator.components.OpenVerticesMenuItem


    // initialize
    this.tree = tree;
    this.parameter = parameter;
    this.popup = new JPopupMenu();
    this.menuItems = new ArrayList<IMenuItem>(10);
    this.openVerticesMenuItem = new OpenVerticesMenuItem(tree, this.parameter.model, this.parameter.userInterface);
    this.selectionTabMenuItem = new SelectionTabMenuItem(tree, this.parameter.userInterface);
    // check input parameter
    if(tree == null) return;
    // create items
    this.menuItems.add(this.openVerticesMenuItem);
View Full Code Here

TOP

Related Classes of vg.userInterface.navigator.components.OpenVerticesMenuItem

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.