Class LibXML::XML::Schema
In: ext/libxml/libxml.c
Parent: Object

Methods

document   from_string   new  

Public Class methods

Create a new schema from the specified URI.

[Source]

/*
 * call-seq:
 *    XML::Schema.document(document) -> schema
 * 
 * Create a new schema from the specified URI.
 */
VALUE
ruby_xml_schema_init_from_document(VALUE class, VALUE document) {

Create a new schema using the specified string.

[Source]

/*
 * call-seq:
 *    XML::Schema.string("schema_data") -> "value"
 * 
 * Create a new schema using the specified string.
 */
VALUE
ruby_xml_schema_init_from_string(VALUE self, VALUE schema_str) {

Create a new schema from the specified URI.

[Source]

/*
 * call-seq:
 *    XML::Schema.new(schema_uri) -> schema
 * 
 * Create a new schema from the specified URI.
 */
VALUE
ruby_xml_schema_init_from_uri(VALUE class, VALUE uri) {

[Validate]