The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

package W3C::XMLSchema::Sequence;
{
  $W3C::XMLSchema::Sequence::VERSION = '0.0.3';
}
use XML::Rabbit;

# ABSTRACT: XMLSchema Sequence Definition


has_xpath_object_list 'items' => './*',
    {
        'xsd:group'   => 'W3C::XMLSchema::Group',
        'xsd:element' => 'W3C::XMLSchema::Element',
    },
;

finalize_class();
1;



=pod

=encoding utf-8

=head1 NAME

W3C::XMLSchema::Sequence - XMLSchema Sequence Definition

=head1 VERSION

version 0.0.3

=head1 DESCRIPTION

Sequence, as defined by XMLSchema definition.

See L<W3C::XMLSchema> for a more complete example.

=head1 ATTRIBUTES

=head2 items

List of items in this sequence. Instances of L<W3C::XMLSchema::Group> or
L<W3C::XMLSchema::Element>.

=head1 AUTHOR

Robin Smidsrød <robin@smidsrod.no>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Robin Smidsrød.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


__END__