Class: PortfolioManager::Xml::PropertyUse
- Inherits:
-
Object
- Object
- PortfolioManager::Xml::PropertyUse
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}propertyUse
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(name = nil) ⇒ PropertyUse
constructor
A new instance of PropertyUse.
Constructor Details
#initialize(name = nil) ⇒ PropertyUse
Returns a new instance of PropertyUse.
9433 9434 9435 |
# File 'lib/portfolio_manager/xml.rb', line 9433 def initialize(name = nil) @name = name end |
Instance Attribute Details
#name ⇒ Object
9430 9431 9432 9433 9434 9435 9436 |
# File 'lib/portfolio_manager/xml.rb', line 9430 class PropertyUse attr_accessor :name def initialize(name = nil) @name = name end end |