Class: Rets::Metadata::Containers::RowContainer
- Defined in:
- lib/rets/metadata/containers.rb
Direct Known Subclasses
ClassContainer, LookupContainer, LookupTypeContainer, ObjectContainer, ResourceContainer, TableContainer
Instance Attribute Summary collapse
-
#rows ⇒ Object
Returns the value of attribute rows.
Attributes inherited from Container
Instance Method Summary collapse
-
#initialize(doc) ⇒ RowContainer
constructor
A new instance of RowContainer.
Methods inherited from Container
Constructor Details
#initialize(doc) ⇒ RowContainer
Returns a new instance of RowContainer.
39 40 41 42 |
# File 'lib/rets/metadata/containers.rb', line 39 def initialize(doc) super self.rows = Parser::Compact.parse_document(doc) end |
Instance Attribute Details
#rows ⇒ Object
Returns the value of attribute rows.
37 38 39 |
# File 'lib/rets/metadata/containers.rb', line 37 def rows @rows end |