Class: MPXJ::Container
- Inherits:
-
Object
- Object
- MPXJ::Container
- Defined in:
- lib/mpxj/container.rb
Overview
Base class from which all project entities are derived
Direct Known Subclasses
Instance Attribute Summary collapse
-
#attribute_values ⇒ Object
readonly
Returns the value of attribute attribute_values.
-
#parent_project ⇒ Object
readonly
Returns the value of attribute parent_project.
Instance Method Summary collapse
-
#initialize(parent_project, attribute_values) ⇒ Container
constructor
A new instance of Container.
Constructor Details
#initialize(parent_project, attribute_values) ⇒ Container
Returns a new instance of Container.
7 8 9 10 |
# File 'lib/mpxj/container.rb', line 7 def initialize(parent_project, attribute_values) @parent_project = parent_project @attribute_values = attribute_values end |
Instance Attribute Details
#attribute_values ⇒ Object (readonly)
Returns the value of attribute attribute_values.
12 13 14 |
# File 'lib/mpxj/container.rb', line 12 def attribute_values @attribute_values end |
#parent_project ⇒ Object (readonly)
Returns the value of attribute parent_project.
6 7 8 |
# File 'lib/mpxj/container.rb', line 6 def parent_project @parent_project end |