Class: Android::Dex::DexObject::IdsList

Inherits:
Android::Dex::DexObject show all
Defined in:
lib/android/dex/dex_object.rb

Overview

id_list

Direct Known Subclasses

StringIdItem, TypeIdItem

Instance Attribute Summary collapse

Attributes inherited from Android::Dex::DexObject

#size

Instance Method Summary collapse

Methods inherited from Android::Dex::DexObject

#[], #inspect, #symbols

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_sizeObject (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