Package jadx.core.clsp
Class SimpleMethodDetails
- java.lang.Object
-
- jadx.core.clsp.SimpleMethodDetails
-
- All Implemented Interfaces:
jadx.api.plugins.input.data.attributes.IJadxAttribute,IMethodDetails
public class SimpleMethodDetails extends java.lang.Object implements IMethodDetails
Method details build from MethodInfo. Note: some fields have unknown values.
-
-
Constructor Summary
Constructors Constructor Description SimpleMethodDetails(MethodInfo methodInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ArgType>getArgTypes()MethodInfogetMethodInfo()intgetRawAccessFlags()ArgTypegetReturnType()java.util.List<ArgType>getThrows()java.util.List<ArgType>getTypeParameters()booleanisVarArg()java.lang.StringtoAttrString()java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jadx.core.dex.nodes.IMethodDetails
getAttrType
-
-
-
-
Constructor Detail
-
SimpleMethodDetails
public SimpleMethodDetails(MethodInfo methodInfo)
-
-
Method Detail
-
getMethodInfo
public MethodInfo getMethodInfo()
- Specified by:
getMethodInfoin interfaceIMethodDetails
-
getReturnType
public ArgType getReturnType()
- Specified by:
getReturnTypein interfaceIMethodDetails
-
getArgTypes
public java.util.List<ArgType> getArgTypes()
- Specified by:
getArgTypesin interfaceIMethodDetails
-
getTypeParameters
public java.util.List<ArgType> getTypeParameters()
- Specified by:
getTypeParametersin interfaceIMethodDetails
-
getThrows
public java.util.List<ArgType> getThrows()
- Specified by:
getThrowsin interfaceIMethodDetails
-
isVarArg
public boolean isVarArg()
- Specified by:
isVarArgin interfaceIMethodDetails
-
getRawAccessFlags
public int getRawAccessFlags()
- Specified by:
getRawAccessFlagsin interfaceIMethodDetails
-
toAttrString
public java.lang.String toAttrString()
- Specified by:
toAttrStringin interfacejadx.api.plugins.input.data.attributes.IJadxAttribute- Specified by:
toAttrStringin interfaceIMethodDetails
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-