Class: LibXML::XML::Schema::Facet
| Relationships & Source Files | |
| Inherits: | Object |
| Defined in: | ext/libxml/ruby_xml_schema_facet.c |
Instance Attribute Summary
Instance Method Summary
-
#node
START FACET.
Instance Attribute Details
#kind (readonly)
[ GitHub ]#value (readonly)
[ GitHub ]Instance Method Details
#node
START FACET
# 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);
}