Package org.eclipse.draw2d

Examples of org.eclipse.draw2d.ScalableFreeformLayeredPane


 
  public static final int MARGIN_SIZE = 10;
 
  @Override
  protected IFigure createFigure() {
    Figure panel = new ScalableFreeformLayeredPane();
    panel.setBackgroundColor(ColorConstants.listBackground);
    panel.setLayoutManager(new XYLayout());
    panel.setBorder(new MarginBorder(MARGIN_SIZE));
    
    ConnectionLayer cLayer = (ConnectionLayer) getLayer(CONNECTION_LAYER);
        cLayer.setAntialias(SWT.ON);
   
    return panel;
View Full Code Here

TOP

Related Classes of org.eclipse.draw2d.ScalableFreeformLayeredPane

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.