Class: GirFFI::UnintrospectableBoxedInfo
- Inherits:
-
Object
- Object
- GirFFI::UnintrospectableBoxedInfo
- Defined in:
- lib/gir_ffi/unintrospectable_boxed_info.rb
Overview
Represents a boxed type not found in the GIR, conforming, as needed, to the interface of GObjectIntrospection::IUnionInfo and GObjectIntrospection::IStructInfo.
Constant Summary collapse
- DEFAULT_BOXED_NAMESPACE =
'GLib'
Instance Attribute Summary collapse
-
#g_type ⇒ Object
readonly
Returns the value of attribute g_type.
Instance Method Summary collapse
- #fields ⇒ Object
- #info_type ⇒ Object
-
#initialize(gtype) ⇒ UnintrospectableBoxedInfo
constructor
A new instance of UnintrospectableBoxedInfo.
- #namespace ⇒ Object
- #safe_name ⇒ Object
Constructor Details
#initialize(gtype) ⇒ UnintrospectableBoxedInfo
Returns a new instance of UnintrospectableBoxedInfo.
9 10 11 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 9 def initialize(gtype) @g_type = gtype end |
Instance Attribute Details
#g_type ⇒ Object (readonly)
Returns the value of attribute g_type.
7 8 9 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 7 def g_type @g_type end |
Instance Method Details
#fields ⇒ Object
27 28 29 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 27 def fields [] end |
#info_type ⇒ Object
13 14 15 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 13 def info_type :unintrospectable_boxed end |
#namespace ⇒ Object
23 24 25 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 23 def namespace DEFAULT_BOXED_NAMESPACE end |
#safe_name ⇒ Object
17 18 19 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 17 def safe_name GObject.type_name g_type end |