class Birt::Core::TableCellData
Attributes
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_data.rb, line 6 def initialize(x_ele) self.properties = Array.new super(x_ele) do x_ele.get_elements(xpath="property").each { |tp| self.properties.push Birt::Core::Property.new(tp) } end yield(self) if block_given? end