Package org.eclipse.sapphire.ui.diagram.shape.def

Examples of org.eclipse.sapphire.ui.diagram.shape.def.LayoutConstraintDef


public class SpacerPart extends ShapePart
{
  public Point getSize()
  {
    LayoutConstraintDef constraint = getLayoutConstraint();
    Point size = new Point(constraint.getWidth().content() != null ? constraint.getWidth().content() : -1,
                constraint.getHeight().content() != null ? constraint.getHeight().content() : -1);
    return size;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.ui.diagram.shape.def.LayoutConstraintDef

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.