@Override
public ILayoutFeature getLayoutFeature(ILayoutContext context) {
PictogramElement pictogramElement = context.getPictogramElement();
Object bo = getBusinessObjectForPictogramElement(pictogramElement);
if (bo instanceof AbstractNode) {
return new LayoutNodeFeature(this);
}
return super.getLayoutFeature(context);
}