jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/BindInfo.java
changeset 33547 e4c76ac38b12
parent 30994 6efa17f32dcb
equal deleted inserted replaced
33390:d131f4b8433a 33547:e4c76ac38b12
    77 
    77 
    78     @XmlLocation
    78     @XmlLocation
    79     private Locator location;
    79     private Locator location;
    80 
    80 
    81     /**
    81     /**
    82      * Documentation taken from <xs:documentation>s.
    82      * Documentation taken from {@code <xs:documentation>s}.
    83      */
    83      */
    84     @XmlElement(namespace=WellKnownNamespace.XML_SCHEMA)
    84     @XmlElement(namespace=WellKnownNamespace.XML_SCHEMA)
    85     private Documentation documentation;
    85     private Documentation documentation;
    86 
    86 
    87     /**
    87     /**
   210     public BIDeclaration[] getDecls() {
   210     public BIDeclaration[] getDecls() {
   211         return decls.toArray(new BIDeclaration[decls.size()]);
   211         return decls.toArray(new BIDeclaration[decls.size()]);
   212     }
   212     }
   213 
   213 
   214     /**
   214     /**
   215      * Gets the documentation parsed from &lt;xs:documentation>s.
   215      * Gets the documentation parsed from {@code <xs:documentation>}s.
   216      * The returned collection is to be added to {@link JDocComment#append(Object)}.
   216      * The returned collection is to be added to {@link JDocComment#append(Object)}.
   217      * @return  maybe null.
   217      * @return  maybe null.
   218      */
   218      */
   219     public String getDocumentation() {
   219     public String getDocumentation() {
   220         // TODO: FIXME: correctly turn individual items to String including DOM
   220         // TODO: FIXME: correctly turn individual items to String including DOM
   351     }
   351     }
   352 
   352 
   353     /**
   353     /**
   354      * Lazily parsed schema for the binding file.
   354      * Lazily parsed schema for the binding file.
   355      */
   355      */
   356     public static SchemaCache bindingFileSchema = new SchemaCache("binding.xsd", BindInfo.class, true);
   356     public static final SchemaCache bindingFileSchema = new SchemaCache("binding.xsd", BindInfo.class, true);
   357 }
   357 }