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;
}