Class: Panda::ProjectItem
- Inherits:
-
Object
- Object
- Panda::ProjectItem
- Defined in:
- lib/panda/project_item.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#projectId ⇒ Object
Returns the value of attribute projectId.
-
#relativePath ⇒ Object
Returns the value of attribute relativePath.
Instance Method Summary collapse
-
#initialize(projectId, name, relativePath) ⇒ ProjectItem
constructor
A new instance of ProjectItem.
Constructor Details
#initialize(projectId, name, relativePath) ⇒ ProjectItem
Returns a new instance of ProjectItem.
8 9 10 11 12 |
# File 'lib/panda/project_item.rb', line 8 def initialize(projectId, name, relativePath) @projectId = projectId @name = name @relativePath = relativePath end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/panda/project_item.rb', line 6 def name @name end |
#projectId ⇒ Object
Returns the value of attribute projectId.
6 7 8 |
# File 'lib/panda/project_item.rb', line 6 def projectId @projectId end |
#relativePath ⇒ Object
Returns the value of attribute relativePath.
6 7 8 |
# File 'lib/panda/project_item.rb', line 6 def relativePath @relativePath end |