Package vg.modules.notepad.components.connectorComponent

Examples of vg.modules.notepad.components.connectorComponent.Connector


      }
    });
    // init main data
    this.connections = new ArrayList<UIEventCreateNewConnection>();
    // create components
    this.connector = new Connector(param, this);
    this.connectionStatistic = new ConnectionStatistic(this, param);
   
    this.toolBar = new JToolBar("Tool Bar");
    this.toolBar.setLayout(new GridBagLayout());
    this.toolBar.setFloatable(false);
View Full Code Here


   */
  public ConnectionStatistic(final JFrame parent, final PluginParameter param) {
    super(parent, "Connection statistic", true);
    // create components
    this.param = param;
    this.connector = new Connector(param, parent);
    this.connections = new ArrayList<UIEventCreateNewConnection>();
    this.view = new JPanel(new GridBagLayout());
    this.cancelButton = new JButton("Cancel");
    // add listeners
    this.cancelButton.addActionListener(new ActionListener() {
View Full Code Here

TOP

Related Classes of vg.modules.notepad.components.connectorComponent.Connector

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.