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 TypeKeygetDefiningClass(MethodRefKey key)intgetMethodIndex(MethodKey key)MethodRefKeygetMethodReference(MethodKey key)StringKeygetName(MethodRefKey key)ProtoRefKeygetPrototype(MethodKey key)ProtoRefKeygetPrototype(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)
-
-