Class: EaseEngine::Data::Hary::Info

Inherits:
Object
  • Object
show all
Defined in:
lib/ease_engine/data.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, index, data) ⇒ Info

Returns a new instance of Info.



7
8
9
10
11
# File 'lib/ease_engine/data.rb', line 7

def initialize( id, index, data )
  @id = id
  @index = index
  @data = data
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



5
6
7
# File 'lib/ease_engine/data.rb', line 5

def data
  @data
end

#idObject

Returns the value of attribute id.



5
6
7
# File 'lib/ease_engine/data.rb', line 5

def id
  @id
end

#indexObject

Returns the value of attribute index.



5
6
7
# File 'lib/ease_engine/data.rb', line 5

def index
  @index
end