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.
44 45 46 47 |
# File 'lib/rets/metadata/containers.rb', line 44 def initialize(doc) super self.rows = Parser::Compact.parse_document(doc) end |
Instance Attribute Details
#rows ⇒ Object
Returns the value of attribute rows.
42 43 44 |
# File 'lib/rets/metadata/containers.rb', line 42 def rows @rows end |