.getLayoutConstraint();
boundsCommand.add(new SetBoundsCommand(boundsCommand
.getEditingDomain(), boundsCommand.getLabel(),
descriptor, new Point(l.getX(), l.getY())));
} else if (((Node) originalView).getLayoutConstraint() instanceof Size) {
Size s = (Size) ((Node) originalView)
.getLayoutConstraint();
boundsCommand.add(new SetBoundsCommand(boundsCommand
.getEditingDomain(), boundsCommand.getLabel(),
descriptor, new Dimension(s.getWidth(), s
.getHeight())));
}
}
}
}