Home | History | Annotate | Download | only in src

Lines Matching full:name

10 <xsd:element name="api" type="apiType"/>
12 <xsd:complexType name="apiType">
14 <xsd:element name="package" type="packageType" minOccurs='1' maxOccurs='unbounded'/>
16 <xsd:attribute name="name" type="xsd:string"/>
17 <xsd:attribute name="jdversion" type="xsd:string"/>
20 <xsd:complexType name="packageType">
23 <xsd:element name="class" type="classType"/>
24 <xsd:element name="interface" type="classType"/>
26 <xsd:element name="doc" type="xsd:string" minOccurs='0' maxOccurs='1'/>
28 <xsd:attribute name="name" type="xsd:string"/>
31 <xsd:complexType name="classType">
33 <xsd:element name="implements" type="interfaceTypeName" minOccurs='0' maxOccurs='unbounded'/>
34 <xsd:element name="constructor" type="constructorType" minOccurs='0' maxOccurs='unbounded'/>
35 <xsd:element name="method" type="methodType" minOccurs='0' maxOccurs='unbounded'/>
36 <xsd:element name="field" type="fieldType" minOccurs='0' maxOccurs='unbounded'/>
37 <xsd:element name="doc" type="xsd:string" minOccurs='0' maxOccurs='1'/>
39 <xsd:attribute name="name" type="xsd:string"/>
40 <xsd:attribute name="extends" type="xsd:string" use='optional'/>
41 <xsd:attribute name="abstract" type="xsd:boolean"/>
42 <xsd:attribute name="src" type="xsd:string" use='optional'/>
43 <xsd:attribute name="static" type="xsd:boolean"/>
44 <xsd:attribute name="final" type="xsd:boolean"/>
45 <xsd:attribute name="deprecated" type="xsd:string"/>
46 <xsd:attribute name="visibility" type="xsd:string"/>
49 <xsd:complexType name="interfaceTypeName">
50 <xsd:attribute name="name" type="xsd:string"/>
53 <xsd:complexType name="constructorType">
55 <xsd:element name="exception" type="exceptionType" minOccurs='0' maxOccurs='unbounded'/>
56 <xsd:element name="doc" type="xsd:string" minOccurs='0' maxOccurs='1'/>
58 <xsd:attribute name="name" type="xsd:string"/>
59 <xsd:attribute name="type" type="xsd:string" use='optional'/>
60 <xsd:attribute name="src" type="xsd:string" use='optional'/>
61 <xsd:attribute name="static" type="xsd:boolean"/>
62 <xsd:attribute name="final" type="xsd:boolean"/>
63 <xsd:attribute name="deprecated" type="xsd:string"/>
64 <xsd:attribute name="visibility" type="xsd:string"/>
67 <xsd:complexType name="paramsType">
68 <xsd:attribute name="name" type="xsd:string"/>
69 <xsd:attribute name="type" type="xsd:string"/>
72 <xsd:complexType name="exceptionType">
73 <xsd:attribute name="name" type="xsd:string"/>
74 <xsd:attribute name="type" type="xsd:string"/>
77 <xsd:complexType name="methodType">
79 <xsd:element name="param" type="paramsType" minOccurs='0' maxOccurs='unbounded'/>
80 <xsd:element name="exception" type="exceptionType" minOccurs='0' maxOccurs='unbounded'/>
81 <xsd:element name="doc" type="xsd:string" minOccurs='0' maxOccurs='1'/>
83 <xsd:attribute name="name" type="xsd:string"/>
84 <xsd:attribute name="return" type="xsd:string" use='optional'/>
85 <xsd:attribute name="abstract" type="xsd:boolean"/>
86 <xsd:attribute name="native" type="xsd:boolean"/>
87 <xsd:attribute name="synchronized" type="xsd:boolean"/>
88 <xsd:attribute name="src" type="xsd:string" use='optional'/>
89 <xsd:attribute name="static" type="xsd:boolean"/>
90 <xsd:attribute name="final" type="xsd:boolean"/>
91 <xsd:attribute name="deprecated" type="xsd:string"/>
92 <xsd:attribute name="visibility" type="xsd:string"/>
95 <xsd:complexType name="fieldType">
97 <xsd:element name="doc" type="xsd:string" minOccurs='0' maxOccurs='1'/>
99 <xsd:attribute name="name" type="xsd:string"/>
100 <xsd:attribute name="type" type="xsd:string"/>
101 <xsd:attribute name="transient" type="xsd:boolean"/>
102 <xsd:attribute name="volatile" type="xsd:boolean"/>
103 <xsd:attribute name="value" type="xsd:string" use='optional'/>
104 <xsd:attribute name="src" type="xsd:string" use='optional'/>
105 <xsd:attribute name="static" type="xsd:boolean"/>
106 <xsd:attribute name="final" type="xsd:boolean"/>
107 <xsd:attribute name="deprecated" type="xsd:string"/>
108 <xsd:attribute name="visibility" type="xsd:string"/>