class RGen::Instantiator::NodebasedXMLInstantiator::XMLNodeDescriptor
Attributes
attributes[R]
chardata[R]
children[RW]
namespace[R]
object[RW]
parent[R]
prefix[R]
qtag[R]
tag[R]
Public Class Methods
new(ns, qtag, prefix, tag, parent, children, attributes)
click to toggle source
# File lib/rgen/instantiator/nodebased_xml_instantiator.rb, line 33 def initialize(ns, qtag, prefix, tag, parent, children, attributes) @namespace, @qtag, @prefix, @tag, @parent, @children, @attributes = ns, qtag, prefix, tag, parent, children, attributes @parent.children << self if @parent @chardata = [] end