File: AttributeGroup.pm

package info (click to toggle)
libsoap-wsdl-perl 3.004-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,600 kB
  • sloc: perl: 8,433; xml: 1,769; java: 19; makefile: 15
file content (27 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package SOAP::WSDL::XSD::AttributeGroup;
use strict;
use warnings;
use Class::Std::Fast::Storable constructor => 'none';
use base qw(SOAP::WSDL::Base);

our $VERSION = 3.004;

#<attributeGroup
#  id = ID
#  name = NCName
#  ref = QName
#  {any attributes with non-schema namespace . . .}>
#  Content: (annotation?, ((attribute | attributeGroup)*, anyAttribute?))
#</attributeGroup>

# id provided by Base
# name provided by Base
# annotation provided by Base

my %ref_of          :ATTR(:name<ref>        :default<()>);

# may be defined as atomic simpleType
my %attribute_of        :ATTR(:name<attribute> :default<()>);
my %attributeGroup_of   :ATTR(:name<attributeGroup> :default<()>);

1;