use of org.kie.dmn.model.api.Association in project drools by kiegroup.
the class AssociationConverter method writeAttributes.
@Override
protected void writeAttributes(HierarchicalStreamWriter writer, Object parent) {
super.writeAttributes(writer, parent);
Association a = (Association) parent;
if (a.getAssociationDirection() != null)
writer.addAttribute(ASSOCIATION_DIRECTION, a.getAssociationDirection().value());
}
Aggregations