Changeset 1271 for trunk/src/xml/findbugs/findbugs.xsd
- Timestamp:
- 01/25/09 15:51:22 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/xml/findbugs/findbugs.xsd (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/xml/findbugs/findbugs.xsd
r1160 r1271 205 205 minOccurs='0' maxOccurs='unbounded'/> 206 206 </xsd:sequence> 207 <xsd:attribute name="errors" type="xsd:unsignedInt" use="optional"/> 208 <xsd:attribute name="missingClasses" type="xsd:unsignedInt" use="optional"/> 207 209 </xsd:complexType> 208 210 </xsd:element> … … 267 269 <xsd:attribute name='descriptor' type='xsd:string' use='required'/> 268 270 <xsd:attribute name='role' use='optional' type="xsd:string"/> 271 <xsd:attribute name='typeParameters' use='optional' type='xsd:string'/> 269 272 </xsd:complexType> 270 273 </xsd:element> … … 328 331 </xsd:element> 329 332 <xsd:element ref='PackageStats' maxOccurs='unbounded'/> 333 <xsd:element ref="FindBugsProfile" minOccurs="0" maxOccurs="1"/> 330 334 </xsd:sequence> 331 335 <xsd:attribute name='timestamp' use='required' type='xsd:string'/> 332 336 <xsd:attribute name='total_classes' use='required' type='xsd:int'/> 337 <xsd:attribute name="referenced_classes" type="xsd:unsignedInt" use="optional"/> 333 338 <xsd:attribute name='total_bugs' use='required' type='xsd:int'/> 334 339 <xsd:attribute name='total_size' use='required' type='xsd:int'/> 335 340 <xsd:attribute name='num_packages' use='required' type='xsd:int'/> 341 <xsd:attribute name="vm_version" type="xsd:string" use="optional"/> 336 342 <xsd:attribute name="cpu_seconds" type="xsd:float" use="optional" /> 337 343 <xsd:attribute name="clock_seconds" type="xsd:float" use="optional" /> … … 357 363 <xsd:attribute name='priority_2' use='optional' type='xsd:int'/> 358 364 <xsd:attribute name='priority_3' use='optional' type='xsd:int'/> 365 </xsd:complexType> 366 </xsd:element> 367 368 <xsd:element name='FindBugsProfile'> 369 <xsd:complexType> 370 <xsd:sequence> 371 <xsd:element ref="ClassProfile" minOccurs="0" maxOccurs="unbounded"/> 372 </xsd:sequence> 373 <xsd:attribute name='name' use='required' type='xsd:string'/> 374 <xsd:attribute name="totalMilliseconds" type="xsd:unsignedInt" use="required"/> 375 <xsd:attribute name="invocations" type="xsd:unsignedInt" use="required"/> 376 <xsd:attribute name="avgMicrosecondsPerInvocation" type="xsd:unsignedInt" use="required"/> 377 </xsd:complexType> 378 </xsd:element> 379 380 <xsd:element name='ClassProfile'> 381 <xsd:complexType> 382 <xsd:attribute name='name' use='required' type='xsd:string'/> 383 <xsd:attribute name="totalMilliseconds" type="xsd:unsignedInt" use="required"/> 384 <xsd:attribute name="invocations" type="xsd:unsignedInt" use="required"/> 385 <xsd:attribute name="avgMicrosecondsPerInvocation" type="xsd:unsignedInt" use="required"/> 359 386 </xsd:complexType> 360 387 </xsd:element>
