Class: Duby::JVM::Types::DubyMember
- Inherits:
-
Object
- Object
- Duby::JVM::Types::DubyMember
- Defined in:
- lib/duby/jvm/types/methods.rb
Instance Attribute Summary collapse
-
#argument_types ⇒ Object
readonly
Returns the value of attribute argument_types.
-
#declaring_class ⇒ Object
readonly
Returns the value of attribute declaring_class.
-
#exception_types ⇒ Object
readonly
Returns the value of attribute exception_types.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#return_type ⇒ Object
readonly
Returns the value of attribute return_type.
Instance Method Summary collapse
- #abstract? ⇒ Boolean
-
#initialize(klass, name, args, return_type, static, exceptions) ⇒ DubyMember
constructor
A new instance of DubyMember.
- #static? ⇒ Boolean
Constructor Details
#initialize(klass, name, args, return_type, static, exceptions) ⇒ DubyMember
Returns a new instance of DubyMember.
365 366 367 368 369 370 371 372 373 374 375 |
# File 'lib/duby/jvm/types/methods.rb', line 365 def initialize(klass, name, args, return_type, static, exceptions) if return_type == Void return_type = nil end @declaring_class = klass @name = name @argument_types = args @return_type = return_type @static = static @exception_types = exceptions || [] end |
Instance Attribute Details
#argument_types ⇒ Object (readonly)
Returns the value of attribute argument_types.
362 363 364 |
# File 'lib/duby/jvm/types/methods.rb', line 362 def argument_types @argument_types end |
#declaring_class ⇒ Object (readonly)
Returns the value of attribute declaring_class.
362 363 364 |
# File 'lib/duby/jvm/types/methods.rb', line 362 def declaring_class @declaring_class end |
#exception_types ⇒ Object (readonly)
Returns the value of attribute exception_types.
363 364 365 |
# File 'lib/duby/jvm/types/methods.rb', line 363 def exception_types @exception_types end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
362 363 364 |
# File 'lib/duby/jvm/types/methods.rb', line 362 def name @name end |
#return_type ⇒ Object (readonly)
Returns the value of attribute return_type.
362 363 364 |
# File 'lib/duby/jvm/types/methods.rb', line 362 def return_type @return_type end |