use of com.twinsoft.convertigo.beans.common.XmlQName in project convertigo by convertigo.
the class XMLElementStep method toString.
@Override
public String toString() {
String label = "";
try {
label += (sourceDefinition.size() > 0) ? " @(" + getLabel() + ")" : " =\"" + nodeText + "\"";
} catch (EngineException e) {
}
XmlQName xmlQName = getXmlElementRefAffectation();
xmlQName = xmlQName.isEmpty() ? getXmlComplexTypeAffectation() : xmlQName;
return "<" + getStepNodeName() + ">" + label + " " + xmlQName.getQName();
}
Aggregations