Package org.freeplane.view.swing.map.link

Examples of org.freeplane.view.swing.map.link.EdgeLinkView


          final NodeView targetView = getNodeView(target);
          final ILinkView arrowLink;
          if (sourceView != null && targetView != null
                  && (Shape.EDGE_LIKE.equals(ref.getShape()) || sourceView.getMap().getLayoutType() == MapViewLayout.OUTLINE)
                  && source.isVisible() && target.isVisible()) {
            arrowLink = new EdgeLinkView(ref, getModeController(), sourceView, targetView);
          }
          else {
            arrowLink = new ConnectorView(ref, sourceView, targetView, getBackground());
          }
          arrowLink.paint(graphics);
View Full Code Here

TOP

Related Classes of org.freeplane.view.swing.map.link.EdgeLinkView

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.