Files
SOAP-WSDL/lib/SOAP/WSDL/XSD/AttributeGroup.pm
Scott Walters ed715a4c88 smoke testing looks pretty good, only failing on amd64-netbsd machines and one random Linux machine (I should look why but I really don't want to know), so, bump version to 3.001 and do a release.
FAIL    5.10.1  NetBSD  6.1.4   amd64-netbsd
FAIL    5.14.2  GNU/Linux       3.11.0-18-generic       x86_64-linux-thread-multi
FAIL    5.10.1  NetBSD  6.1.4   amd64-netbsd-thread-multi
2014-08-29 15:05:06 -04:00

27 lines
709 B
Perl

package SOAP::WSDL::XSD::AttributeGroup;
use strict;
use warnings;
use Class::Std::Fast::Storable constructor => 'none';
use base qw(SOAP::WSDL::Base);
use version; our $VERSION = qv('3.001');
#<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;