private Figure m_resizeFeedback;
private TextFeedback m_textFeedback;
private Command getResizeCommand(ChangeBoundsRequest request) {
final Rectangle newBounds = request.getTransformedRectangle(getHostFigure().getBounds());
return new EditCommand(m_column) {
@Override
protected void executeEdit() throws Exception {
Property widthProperty = m_column.getWidthProperty();
if (widthProperty != null) {
widthProperty.setValue(newBounds.width + "px");