use of org.kie.dmn.model.api.TextAnnotation in project drools by kiegroup.
the class TextAnnotationConverter method assignAttributes.
@Override
protected void assignAttributes(HierarchicalStreamReader reader, Object parent) {
super.assignAttributes(reader, parent);
TextAnnotation ta = (TextAnnotation) parent;
String textFormat = reader.getAttribute(TEXT_FORMAT);
ta.setTextFormat(textFormat);
}
Aggregations