| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package SOAP::WSDL::XSD::Attribute; | 
| 2 | 1 |  |  | 1 |  | 12987 | use strict; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 28 |  | 
| 3 | 1 |  |  | 1 |  | 2 | use warnings; | 
|  | 1 |  |  |  |  | 1 |  | 
|  | 1 |  |  |  |  | 20 |  | 
| 4 | 1 |  |  | 1 |  | 445 | use Class::Std::Fast::Storable constructor => 'none'; | 
|  | 1 |  |  |  |  | 17469 |  | 
|  | 1 |  |  |  |  | 5 |  | 
| 5 | 1 |  |  | 1 |  | 100 | use base qw(SOAP::WSDL::Base); | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 448 |  | 
| 6 |  |  |  |  |  |  |  | 
| 7 |  |  |  |  |  |  | our $VERSION = 3.003; | 
| 8 |  |  |  |  |  |  |  | 
| 9 |  |  |  |  |  |  | # | 
| 10 |  |  |  |  |  |  | #  default = string | 
| 11 |  |  |  |  |  |  | #  fixed = string | 
| 12 |  |  |  |  |  |  | #  form = (qualified | unqualified) | 
| 13 |  |  |  |  |  |  | #  id = ID | 
| 14 |  |  |  |  |  |  | #  name = NCName | 
| 15 |  |  |  |  |  |  | #  ref = QName | 
| 16 |  |  |  |  |  |  | #  type = QName | 
| 17 |  |  |  |  |  |  | #  use = (optional | prohibited | required) : optional | 
| 18 |  |  |  |  |  |  | #  {any attributes with non-schema namespace . . .}> | 
| 19 |  |  |  |  |  |  | #  Content: (annotation?, (simpleType?)) | 
| 20 |  |  |  |  |  |  | # | 
| 21 |  |  |  |  |  |  |  | 
| 22 |  |  |  |  |  |  | # id provided by Base | 
| 23 |  |  |  |  |  |  | # name provided by Base | 
| 24 |  |  |  |  |  |  | # annotation provided by Base | 
| 25 |  |  |  |  |  |  |  | 
| 26 |  |  |  |  |  |  | my %default_of      :ATTR(:name    :default<()>); | 
| 27 |  |  |  |  |  |  | my %fixed_of        :ATTR(:name      :default<()>); | 
| 28 |  |  |  |  |  |  | my %form_of         :ATTR(:name | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  | my %type_of         :ATTR(:name       :default<()>); | 
| 31 |  |  |  |  |  |  | my %use_of          :ATTR(:name | 
| 32 |  |  |  |  |  |  | my %ref_of          :ATTR(:name [        :default<()>); ] | 
| 33 |  |  |  |  |  |  |  | 
| 34 |  |  |  |  |  |  | # may be defined as atomic simpleType | 
| 35 |  |  |  |  |  |  | my %simpleType_of   :ATTR(:name :default<()>); | 
| 36 |  |  |  |  |  |  |  | 
| 37 |  |  |  |  |  |  | 1; |