Package ch.rakudave.jnetmap.view.components

Examples of ch.rakudave.jnetmap.view.components.EditPanel


    add(splitPane, BorderLayout.CENTER);
    // add default sidebar tabs
      InfoPanel info = new InfoPanel(this);
        mapPanel.addGraphListener(info);
        addSideTab(Lang.get("infopanel.title"), Icons.get("info"), info, Lang.get("infopanel.tooltip"));
      addSideTab(Lang.get("menu.edit"), Icons.get("cursor_edit"), new EditPanel(this), "");
    // load plugin sidebar tabs
    for (SidebarPlugin p : new PluginManagerUtil(Controller.pm).getPlugins(SidebarPlugin.class)) {
      try {
        addSideTab(p.getTabTitle(), p.getIcon(), p.getPanel(), p.getToolTip());
        mapPanel.addGraphListener(p);
View Full Code Here

TOP

Related Classes of ch.rakudave.jnetmap.view.components.EditPanel

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.