Represents the allowed content in an Element Declaration inside a DTD:
<?xml version="1.0"?><?TEST-STYLE PIDATA?> <!DOCTYPE staff SYSTEM "staff.dtd" [ <!ELEMENT div1 (head, (p | list | note)*, div2*)> ]> </root>
ElementContent represents the tree inside the <!ELEMENT> tag shown above that lists the possible content for the div1 tag.
Possible content occurrences
Possible definitions of type
Get the children of this ElementContent node
# File lib/nokogiri/xml/element_content.rb, line 31 def children [c1, c2].compact end
Get the require element name
static VALUE get_name(VALUE self)
{
xmlElementContentPtr elem;
Data_Get_Struct(self, xmlElementContent, elem);
if(!elem->name) return Qnil;
return NOKOGIRI_STR_NEW2(elem->name);
} Get the element content namespace prefix.
static VALUE get_prefix(VALUE self)
{
xmlElementContentPtr elem;
Data_Get_Struct(self, xmlElementContent, elem);
if(!elem->prefix) return Qnil;
return NOKOGIRI_STR_NEW2(elem->prefix);
}
© 2008–2016 Aaron Patterson, Mike Dalessio, Charles Nutter, Sergio Arbeo
Patrick Mahoney, Yoko Harada, Akinori Musha, John Shahid
Licensed under the MIT License.