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

NAME

XML::Pastor::Schema::NamespaceInfo - Class that represents the META information about a target namespace within a W3C schema.

WARNING

This module is used internally by XML::Pastor. You do not normally know much about this module to actually use XML::Pastor. It is documented here for completeness and for XML::Pastor developers. Do not count on the interface of this module. It may change in any of the subsequent releases. You have been warned.

ISA

This class descends from Class::Accessor.

DESCRIPTION

XML::Pastor::Schema::NameSpaceInfo is a class that is used internally to represent a target namespace of a given schema.

METHODS

CONSTRUCTORS

new()

  $class->new(%fields)

CONSTRUCTOR, inherited.

The new() constructor method instantiates a new object. It is inheritable.

Any -named- fields that are passed as parameters are initialized to those values within the newly created object.

.

ACCESSORS

Accessors defined here

uri()

  my $uri = $object->uri();     # GET
  $object->uri($uri);       # SET

The namespace URI associated.

nsPrefix()

  my $pfx = $object->nsPrefix();        # GET
  $object->nsPrefix($pfx);       # SET

The namespace prefix associated with this URI.

classPrefix()

  my $pfx = $object->classPrefix();     # GET
  $object->classPrefix($pfx);       # SET

The class prefix that will be used in conjunction with this target namespace.

id()

  my $id = $object->id();       # GET
  $object->id($id);       # SET

An identifier, local to the schema model, of this namespace.

.

BUGS & CAVEATS

There no known bugs at this time, but this doesn't mean there are aren't any. Note that, although some testing was done prior to releasing the module, this should still be considered alpha code. So use it at your own risk.

Note that there may be other bugs or limitations that the author is not aware of.

AUTHOR

Ayhan Ulusoy <dev(at)ulusoy(dot)name>

COPYRIGHT

  Copyright (C) 2006-2008 Ayhan Ulusoy. All Rights Reserved.

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

SEE ALSO

See also XML::Pastor, XML::Pastor::Schema::Model