Package org.jf.dexlib2.analysis
Class UnknownClassProto
- java.lang.Object
-
- org.jf.dexlib2.analysis.UnknownClassProto
-
-
Constructor Summary
Constructors Constructor Description UnknownClassProto(ClassPath classPath)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
findMethodIndexInVtable(MethodReference method)
ClassPath
getClassPath()
TypeProto
getCommonSuperclass(TypeProto other)
FieldReference
getFieldByOffset(int fieldOffset)
Method
getMethodByVtableIndex(int vtableIndex)
java.lang.String
getSuperclass()
java.lang.String
getType()
boolean
implementsInterface(java.lang.String iface)
boolean
isInterface()
java.lang.String
toString()
-
-
-
Field Detail
-
classPath
@Nonnull protected final ClassPath classPath
-
-
Constructor Detail
-
UnknownClassProto
public UnknownClassProto(@Nonnull ClassPath classPath)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getClassPath
@Nonnull public ClassPath getClassPath()
- Specified by:
getClassPath
in interfaceTypeProto
-
getSuperclass
@Nullable public java.lang.String getSuperclass()
- Specified by:
getSuperclass
in interfaceTypeProto
-
isInterface
public boolean isInterface()
- Specified by:
isInterface
in interfaceTypeProto
-
implementsInterface
public boolean implementsInterface(@Nonnull java.lang.String iface)
- Specified by:
implementsInterface
in interfaceTypeProto
-
getCommonSuperclass
@Nonnull public TypeProto getCommonSuperclass(@Nonnull TypeProto other)
- Specified by:
getCommonSuperclass
in interfaceTypeProto
-
getFieldByOffset
@Nullable public FieldReference getFieldByOffset(int fieldOffset)
- Specified by:
getFieldByOffset
in interfaceTypeProto
-
getMethodByVtableIndex
@Nullable public Method getMethodByVtableIndex(int vtableIndex)
- Specified by:
getMethodByVtableIndex
in interfaceTypeProto
-
findMethodIndexInVtable
public int findMethodIndexInVtable(@Nonnull MethodReference method)
- Specified by:
findMethodIndexInVtable
in interfaceTypeProto
-
-