Class: GirFFI::FieldArgumentInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/gir_ffi/field_argument_info.rb

Overview

Class to represent argument info for the argument of a setter method. Implements the necessary parts of IArgInfo’s interface. TODO: Rename and add direction argument or subclass

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, type) ⇒ FieldArgumentInfo

Returns a new instance of FieldArgumentInfo.



10
11
12
13
# File 'lib/gir_ffi/field_argument_info.rb', line 10

def initialize(name, type)
  @name = name
  @argument_type = type
end

Instance Attribute Details

#argument_typeObject (readonly)

Returns the value of attribute argument_type.



8
9
10
# File 'lib/gir_ffi/field_argument_info.rb', line 8

def argument_type
  @argument_type
end

#nameObject (readonly)

Returns the value of attribute name.



8
9
10
# File 'lib/gir_ffi/field_argument_info.rb', line 8

def name
  @name
end

Instance Method Details

#directionObject



15
16
17
# File 'lib/gir_ffi/field_argument_info.rb', line 15

def direction
  :in
end

#ownership_transferObject



19
20
21
# File 'lib/gir_ffi/field_argument_info.rb', line 19

def ownership_transfer
  :everything
end

#skip?Boolean

Returns:



23
24
25
# File 'lib/gir_ffi/field_argument_info.rb', line 23

def skip?
  false
end