@Override
public IMoveShapeFeature getMoveShapeFeature(IMoveShapeContext context) {
Shape shape = context.getShape();
Object bo = getBusinessObjectForPictogramElement(shape);
if (bo instanceof AbstractNode) {
return new MoveNodeFeature(this);
}
return super.getMoveShapeFeature(context);
}