Class: LibXML::XML::Schema::Facet

Inherits:
Object
  • Object
show all
Defined in:
ext/libxml/ruby_xml_schema_facet.c

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#kindObject (readonly)

#valueObject (readonly)

Instance Method Details

#nodeObject

START FACET



34
35
36
37
38
39
40
41
# File 'ext/libxml/ruby_xml_schema_facet.c', line 34

static VALUE rxml_schema_facet_node(VALUE self)
{
  xmlSchemaFacetPtr facet;

  Data_Get_Struct(self, xmlSchemaFacet, facet);

  return rxml_node_wrap(facet->node);
}