Class: ObjList

Inherits:
Object
  • Object
show all
Defined in:
ext/ae-rad/ae-rad-inspector.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeObjList

Returns a new instance of ObjList.



851
852
853
# File 'ext/ae-rad/ae-rad-inspector.rb', line 851

def initialize
  @objects = Array.new
end

Instance Attribute Details

#objectsObject (readonly)

Returns the value of attribute objects.



850
851
852
# File 'ext/ae-rad/ae-rad-inspector.rb', line 850

def objects
  @objects
end

Instance Method Details

#append(_o) ⇒ Object



854
855
856
# File 'ext/ae-rad/ae-rad-inspector.rb', line 854

def append(_o)
  @objects << _o
end