Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
All other objects take the prefix in account like this:
public String toString(String prefix, int tab) { String xml = new String(); ..... xml += "<" + prefix + "element ";
but the XmlSchemaFacet sub types
public String toString(String prefix, int tab) { StringBuffer xml = new StringBuffer(); for (int i = 0; i < tab; i++) { xml.append("\t"); } xml.append("<length value=\"");