Package org.jf.dexlib2.analysis
Interface TypeProto
-
- All Known Implementing Classes:
ArrayProto,ClassProto,PrimitiveProto,UnknownClassProto
public interface TypeProto
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intfindMethodIndexInVtable(MethodReference method)ClassPathgetClassPath()TypeProtogetCommonSuperclass(TypeProto other)FieldReferencegetFieldByOffset(int fieldOffset)MethodgetMethodByVtableIndex(int vtableIndex)java.lang.StringgetSuperclass()java.lang.StringgetType()booleanimplementsInterface(java.lang.String iface)booleanisInterface()
-
-
-
Method Detail
-
getClassPath
@Nonnull ClassPath getClassPath()
-
getType
@Nonnull java.lang.String getType()
-
isInterface
boolean isInterface()
-
implementsInterface
boolean implementsInterface(@Nonnull java.lang.String iface)
-
getSuperclass
@Nullable java.lang.String getSuperclass()
-
getFieldByOffset
@Nullable FieldReference getFieldByOffset(int fieldOffset)
-
getMethodByVtableIndex
@Nullable Method getMethodByVtableIndex(int vtableIndex)
-
findMethodIndexInVtable
int findMethodIndexInVtable(@Nonnull MethodReference method)
-
-