Package net.sf.graphiti.ui.figure

Examples of net.sf.graphiti.ui.figure.EdgeFigure


   * Creates a new DependencyGef figure
   */
  @Override
  protected IFigure createFigure() {
    Edge edge = (Edge) getModel();
    return new EdgeFigure(edge);
  }
View Full Code Here


      refresh();
    }

    // any parameter
    // (including ports in case they are also displayed on the edge)
    EdgeFigure figure = (EdgeFigure) getFigure();
    figure.refresh(evt.getPropertyName(), evt.getNewValue());
  }
View Full Code Here

public class EdgeGraphicalNodeEditPolicy extends GraphicalNodeEditPolicy {

  @Override
  protected Connection createDummyConnection(Request req) {
    Object obj = ((CreateConnectionRequest) req).getNewObject();
    EdgeFigure conn = new EdgeFigure((Edge) obj);
    return conn;
  }
View Full Code Here

TOP

Related Classes of net.sf.graphiti.ui.figure.EdgeFigure

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.