Class: RDocF95::RI::ClassDescription
- Inherits:
-
ModuleDescription
- Object
- Description
- ModuleDescription
- RDocF95::RI::ClassDescription
- Defined in:
- lib/rdoc-f95/ri/descriptions.rb
Instance Attribute Summary collapse
-
#superclass ⇒ Object
Returns the value of attribute superclass.
Attributes inherited from ModuleDescription
#attributes, #class_methods, #constants, #includes, #instance_methods
Attributes inherited from Description
Instance Method Summary collapse
Methods inherited from ModuleDescription
Methods inherited from Description
Instance Attribute Details
#superclass ⇒ Object
Returns the value of attribute superclass.
121 122 123 |
# File 'lib/rdoc-f95/ri/descriptions.rb', line 121 def superclass @superclass end |
Instance Method Details
#display_name ⇒ Object
123 124 125 |
# File 'lib/rdoc-f95/ri/descriptions.rb', line 123 def display_name "Class" end |
#superclass_string ⇒ Object
127 128 129 130 131 132 133 |
# File 'lib/rdoc-f95/ri/descriptions.rb', line 127 def superclass_string if @superclass && @superclass != "Object" @superclass else nil end end |