Package org.jf.dexlib2.writer.pool
Class PoolMethodProto
- java.lang.Object
-
- org.jf.dexlib2.base.reference.BaseReference
-
- org.jf.dexlib2.base.reference.BaseMethodProtoReference
-
- org.jf.dexlib2.writer.pool.PoolMethodProto
-
- All Implemented Interfaces:
java.lang.Comparable<MethodProtoReference>
,MethodProtoReference
,Reference
public class PoolMethodProto extends BaseMethodProtoReference implements MethodProtoReference
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jf.dexlib2.iface.reference.Reference
Reference.InvalidReferenceException
-
-
Constructor Summary
Constructors Constructor Description PoolMethodProto(MethodReference methodReference)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<? extends java.lang.CharSequence>
getParameterTypes()
Gets a list of the types of the parameters of this method prototype.java.lang.String
getReturnType()
Gets the return type of the referenced method prototype.-
Methods inherited from class org.jf.dexlib2.base.reference.BaseMethodProtoReference
compareTo, equals, hashCode, toString
-
Methods inherited from class org.jf.dexlib2.base.reference.BaseReference
validateReference
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.jf.dexlib2.iface.reference.MethodProtoReference
compareTo, equals, hashCode
-
Methods inherited from interface org.jf.dexlib2.iface.reference.Reference
validateReference
-
-
-
-
Constructor Detail
-
PoolMethodProto
public PoolMethodProto(MethodReference methodReference)
-
-
Method Detail
-
getParameterTypes
public java.util.List<? extends java.lang.CharSequence> getParameterTypes()
Description copied from interface:MethodProtoReference
Gets a list of the types of the parameters of this method prototype.- Specified by:
getParameterTypes
in interfaceMethodProtoReference
- Returns:
- A list of the parameter types of this method prototype, as strings.
-
getReturnType
public java.lang.String getReturnType()
Description copied from interface:MethodProtoReference
Gets the return type of the referenced method prototype.- Specified by:
getReturnType
in interfaceMethodProtoReference
- Returns:
- The return type of the referenced method prototype.
-
-