Class: Panda::ProjectItem

Inherits:
Object
  • Object
show all
Defined in:
lib/panda/project_item.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/panda/project_item.rb', line 6

def name
  @name
end

#projectIdObject

Returns the value of attribute projectId.



6
7
8
# File 'lib/panda/project_item.rb', line 6

def projectId
  @projectId
end

#relativePathObject

Returns the value of attribute relativePath.



6
7
8
# File 'lib/panda/project_item.rb', line 6

def relativePath
  @relativePath
end