class Birt::Core::TableCellLabel
Attributes
text_properties[RW]
Public Class Methods
new(x_ele) { |self| ... }
click to toggle source
Calls superclass method
Birt::Core::BaseReport::new
# File lib/birt/core/report/table_cell_label.rb, line 5 def initialize(x_ele) self.text_properties = Array.new super(x_ele) do x_ele.get_elements(xpath="text-property").each { |tp| self.text_properties.push Birt::Core::TextProperty.new(tp) } end yield(self) if block_given? end