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.
11 12 13 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 11 def initialize(gtype) @g_type = gtype end |
Instance Attribute Details
#g_type ⇒ Object (readonly)
Returns the value of attribute g_type.
9 10 11 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 9 def g_type @g_type end |
Instance Method Details
#fields ⇒ Object
29 30 31 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 29 def fields [] end |
#info_type ⇒ Object
15 16 17 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 15 def info_type :unintrospectable_boxed end |
#namespace ⇒ Object
25 26 27 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 25 def namespace DEFAULT_BOXED_NAMESPACE end |
#safe_name ⇒ Object
19 20 21 |
# File 'lib/gir_ffi/unintrospectable_boxed_info.rb', line 19 def safe_name GObject.type_name g_type end |