class Metasm::DEX::AnnotationDirectoryItem

Attributes

field[RW]
method[RW]
parameter[RW]

Public Instance Methods

decode(exe) click to toggle source
Calls superclass method Metasm::SerialStruct#decode
# File metasm/exe_format/dex.rb, line 272
def decode(exe)
        super(exe)
        @field = (1..@fieldssz).map { FieldAnnotationItem.decode(exe) }
        @method = (1..@methodssz).map { MethodAnnotationItem.decode(exe) }
        @parameter = (1..@parameterssz).map { ParameterAnnotationItem.decode(exe) }
end