Package net.sf.pipet.gui.graph

Examples of net.sf.pipet.gui.graph.CreateEdgeDialog


        source = new Plug(origin, origin.getOutputPipeTypes().keySet().iterator().next());
        dest = new Plug(target, target.getInputPipeTypes().keySet().iterator().next());
      }
      else
      {
        CreateEdgeDialog dlg = new CreateEdgeDialog(origin, target);
        int result = JOptionPane.showConfirmDialog(parent, dlg, "Create a pipe", JOptionPane.OK_CANCEL_OPTION);
        if (result == JOptionPane.OK_OPTION)
        {
          source = dlg.getSource();
          dest = dlg.getDest();
        }
      }
      String datatype = null;
      if (source != null)
        datatype = origin.getOutputPipeTypes().get(source.getPort());
View Full Code Here

TOP

Related Classes of net.sf.pipet.gui.graph.CreateEdgeDialog

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.