Class: ObjList
- Inherits:
-
Object
- Object
- ObjList
- Defined in:
- ext/ae-rad/ae-rad-inspector.rb
Instance Attribute Summary collapse
-
#objects ⇒ Object
readonly
Returns the value of attribute objects.
Instance Method Summary collapse
- #append(_o) ⇒ Object
-
#initialize ⇒ ObjList
constructor
A new instance of ObjList.
Constructor Details
#initialize ⇒ ObjList
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
#objects ⇒ Object (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 |