Package org.jf.dexlib2.writer
Interface MethodSection<StringKey,TypeKey,ProtoRefKey extends MethodProtoReference,MethodRefKey extends MethodReference,MethodKey>
-
- All Superinterfaces:
IndexSection<MethodRefKey>
- All Known Implementing Classes:
MethodPool
public interface MethodSection<StringKey,TypeKey,ProtoRefKey extends MethodProtoReference,MethodRefKey extends MethodReference,MethodKey> extends IndexSection<MethodRefKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeKey
getDefiningClass(MethodRefKey key)
int
getMethodIndex(MethodKey key)
MethodRefKey
getMethodReference(MethodKey key)
StringKey
getName(MethodRefKey key)
ProtoRefKey
getPrototype(MethodKey key)
ProtoRefKey
getPrototype(MethodRefKey key)
-
Methods inherited from interface org.jf.dexlib2.writer.IndexSection
getItemCount, getItemIndex, getItems
-
-
-
-
Method Detail
-
getMethodReference
@Nonnull MethodRefKey getMethodReference(@Nonnull MethodKey key)
-
getDefiningClass
@Nonnull TypeKey getDefiningClass(@Nonnull MethodRefKey key)
-
getPrototype
@Nonnull ProtoRefKey getPrototype(@Nonnull MethodRefKey key)
-
getPrototype
@Nonnull ProtoRefKey getPrototype(@Nonnull MethodKey key)
-
getName
@Nonnull StringKey getName(@Nonnull MethodRefKey key)
-
getMethodIndex
int getMethodIndex(@Nonnull MethodKey key)
-
-