Class: Android::Dex::DexObject::IdsList
- Inherits:
-
Android::Dex::DexObject
- Object
- Android::Dex::DexObject
- Android::Dex::DexObject::IdsList
- Defined in:
- lib/android/dex/dex_object.rb
Overview
id_list
Direct Known Subclasses
Instance Attribute Summary collapse
-
#ids_size ⇒ Object
readonly
Returns the value of attribute ids_size.
Attributes inherited from Android::Dex::DexObject
Instance Method Summary collapse
-
#initialize(data, off, ids_size) ⇒ IdsList
constructor
A new instance of IdsList.
Methods inherited from Android::Dex::DexObject
Constructor Details
#initialize(data, off, ids_size) ⇒ IdsList
Returns a new instance of IdsList.
160 161 162 163 |
# File 'lib/android/dex/dex_object.rb', line 160 def initialize(data, off, ids_size) @ids_size = ids_size super(data, off) end |
Instance Attribute Details
#ids_size ⇒ Object (readonly)
Returns the value of attribute ids_size.
159 160 161 |
# File 'lib/android/dex/dex_object.rb', line 159 def ids_size @ids_size end |