Class: XcodeProject::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/xcodeproject/node.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(root, uuid, data) ⇒ Node

Returns a new instance of Node.



28
29
30
31
# File 'lib/xcodeproject/node.rb', line 28

def initialize (root, uuid, data)
	@root, @uuid, @data = root, uuid, data
	@isa = data['isa']
end

Instance Attribute Details

#isaObject (readonly)

Returns the value of attribute isa.



26
27
28
# File 'lib/xcodeproject/node.rb', line 26

def isa
  @isa
end

#uuidObject (readonly)

Returns the value of attribute uuid.



25
26
27
# File 'lib/xcodeproject/node.rb', line 25

def uuid
  @uuid
end