public ILayoutFeature getLayoutFeature(ILayoutContext context) {
final PictogramElement pe = context.getPictogramElement();
final Object bo = getBusinessObjectForPictogramElement(pe);
if (bo instanceof TextAnnotation) {
return new LayoutTextAnnotationFeature(this);
}
return super.getLayoutFeature(context);
}