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

call-seq:

   XML::RelaxNG.string("relaxng_data") -> "value"

Create a new relaxng using the specified string.

Methods

document   from_string   new  

Public Class methods

Create a new relaxng from the specified document.

[Source]

/*
 * call-seq:
 *    XML::RelaxNG.document(document) -> relaxng
 * 
 * Create a new relaxng from the specified document.
 */
VALUE
ruby_xml_relaxng_init_from_document(VALUE class, VALUE document) {

Create a new relaxng using the specified string.

[Source]

/*
 * call-seq:
 *    XML::RelaxNG.string("relaxng_data") -> "value"
 * 
 * Create a new relaxng using the specified string.
 */
VALUE
ruby_xml_relaxng_init_from_string(VALUE self, VALUE relaxng_str) {

Create a new relaxng from the specified URI.

[Source]

/*
 * call-seq:
 *    XML::Relaxng.new(relaxng_uri) -> relaxng
 * 
 * Create a new relaxng from the specified URI.
 */
VALUE
ruby_xml_relaxng_init_from_uri(VALUE class, VALUE uri) {

[Validate]