Class: Bio::PhyloXML::Other
- Inherits:
-
Object
- Object
- Bio::PhyloXML::Other
- Defined in:
- lib/bio/phyloxml/elements.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
Returns the value of attribute attributes.
-
#children ⇒ Object
Returns the value of attribute children.
-
#element_name ⇒ Object
Returns the value of attribute element_name.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize ⇒ Other
constructor
A new instance of Other.
-
#to_xml ⇒ Object
Converts elements to xml representation.
Constructor Details
#initialize ⇒ Other
Returns a new instance of Other.
1143 1144 1145 1146 |
# File 'lib/bio/phyloxml/elements.rb', line 1143 def initialize @children = [] @attributes = Hash.new end |
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes.
1141 1142 1143 |
# File 'lib/bio/phyloxml/elements.rb', line 1141 def attributes @attributes end |
#children ⇒ Object
Returns the value of attribute children.
1141 1142 1143 |
# File 'lib/bio/phyloxml/elements.rb', line 1141 def children @children end |
#element_name ⇒ Object
Returns the value of attribute element_name.
1141 1142 1143 |
# File 'lib/bio/phyloxml/elements.rb', line 1141 def element_name @element_name end |
#value ⇒ Object
Returns the value of attribute value.
1141 1142 1143 |
# File 'lib/bio/phyloxml/elements.rb', line 1141 def value @value end |
Instance Method Details
#to_xml ⇒ Object
Converts elements to xml representation. Called by PhyloXML::Writer class.
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 |
# File 'lib/bio/phyloxml/elements.rb', line 1149 def to_xml o = LibXML::XML::Node.new(@element_name) @attributes.each do |key, value| o[key] = value end o << value if value != nil children.each do |child_node| o << child_node.to_xml end return o end |