| XML-Schema documentation | view source | Contained in the XML-Schema distribution. |
XML::Schema::Type - base class for XML Schema datatypes
package XML::Schema::Type::MyType;
use base qw( XML::Schema::Type );
package main;
my $type = XML::Schema::Type::MyType->new(
name => 'MyTypeName',
namespace => 'http://my.namespace.com/xyz',
);
print $type->name(), ", ", $type->namespace(), "\n";
The XML::Schema::Type module is a base class for objects that represent XML Schema types.
Andy Wardley <abw@kfs.org>
This is version $Revision: 1.1.1.1 $ of the XML::Schema::Type module, distributed with version 0.1 of the XML::Schema module set.
Copyright (C) 2001 Canon Research Centre Europe Ltd. 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 XML::Schema.
| XML-Schema documentation | view source | Contained in the XML-Schema distribution. |