class GirFFI::SetterArgumentInfo

Class to represent argument info for the argument of a setter method. Implements the necessary parts of IArgumentInfo's interface.

Attributes

argument_type[R]
name[R]

Public Class Methods

new(name, type) click to toggle source
# File lib/gir_ffi/setter_argument_info.rb, line 7
def initialize name, type
  @name = name
  @argument_type = type
end

Public Instance Methods

direction() click to toggle source
# File lib/gir_ffi/setter_argument_info.rb, line 12
def direction
  :in
end
skip?() click to toggle source
# File lib/gir_ffi/setter_argument_info.rb, line 16
def skip?
  false
end