< prev index next >

src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/BindInfo.java

Print this page

        

*** 77,87 **** @XmlLocation private Locator location; /** ! * Documentation taken from &lt;xs:documentation>s. */ @XmlElement(namespace=WellKnownNamespace.XML_SCHEMA) private Documentation documentation; /** --- 77,87 ---- @XmlLocation private Locator location; /** ! * Documentation taken from {@code <xs:documentation>s}. */ @XmlElement(namespace=WellKnownNamespace.XML_SCHEMA) private Documentation documentation; /**
*** 210,220 **** public BIDeclaration[] getDecls() { return decls.toArray(new BIDeclaration[decls.size()]); } /** ! * Gets the documentation parsed from &lt;xs:documentation>s. * The returned collection is to be added to {@link JDocComment#append(Object)}. * @return maybe null. */ public String getDocumentation() { // TODO: FIXME: correctly turn individual items to String including DOM --- 210,220 ---- public BIDeclaration[] getDecls() { return decls.toArray(new BIDeclaration[decls.size()]); } /** ! * Gets the documentation parsed from {@code <xs:documentation>}s. * The returned collection is to be added to {@link JDocComment#append(Object)}. * @return maybe null. */ public String getDocumentation() { // TODO: FIXME: correctly turn individual items to String including DOM
*** 351,357 **** } /** * Lazily parsed schema for the binding file. */ ! public static SchemaCache bindingFileSchema = new SchemaCache("binding.xsd", BindInfo.class, true); } --- 351,357 ---- } /** * Lazily parsed schema for the binding file. */ ! public static final SchemaCache bindingFileSchema = new SchemaCache("binding.xsd", BindInfo.class, true); }
< prev index next >