Package sootup.core.model
Class SootMethod
- All Implemented Interfaces:
HasPosition
,Method
- Direct Known Subclasses:
JavaSootMethod
Soot's counterpart of the source language's method concept. Soot representation of a Java method.
Can be declared to belong to a SootClass. Does not contain the actual code, which belongs to a
Body.
- Author:
- Linghui Luo, Jan Martin Persch
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
static interface
static interface
static interface
static class
Defines aSootMethod
builder that provides a fluent API.static interface
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final @NonNull BodySource
Tells this method how to find out where its body lives.protected final @NonNull com.google.common.collect.ImmutableList<ClassType>
Declared exceptions thrown by this method. -
Constructor Summary
ConstructorsConstructorDescriptionSootMethod
(@NonNull BodySource source, @NonNull MethodSignature methodSignature, @NonNull Iterable<MethodModifier> modifiers, @NonNull Iterable<ClassType> thrownExceptions, @NonNull Position position) Constructs a SootMethod object with the given attributes. -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull SootMethod.MethodSourceStep
builder()
Creates a builder forSootMethod
s.boolean
int
Returns a hash code for this method consistent with structural equality.@NonNull Body
getBody()
Retrieves the active body for this method.@NonNull BodySource
@NonNull ClassType
@NonNull Set<MethodModifier>
Gets the modifiers of this class member in an immutable set.@NonNull String
getName()
int
Returns the number of parameters taken by this method.@NonNull Type
getParameterType
(int n) @NonNull Type
@NonNull MethodSubSignature
boolean
hasBody()
Returns true if this method has a body.int
hashCode()
boolean
Convenience method returning true if this method is abstract.boolean
Returns true if this method is not abstract or native, i.e. this method can have a body.boolean
isConstructor
(@NonNull IdentifierFactory idf) boolean
isDefaultConstructor
(@NonNull IdentifierFactory idf) boolean
isFinal()
Convenience method returning true if this field is final.boolean
isMain
(@NonNull IdentifierFactory idf) boolean
isNative()
Convenience method returning true if this method is native.boolean
Convenience method returning true if this class member is private.boolean
Convenience method returning true if this class member is protected.boolean
isPublic()
Convenience method returning true if this class member is public.boolean
isStatic()
Convenience method returning true if this class member is static.boolean
Convenience method returning true if this method is synchronized.void
toString
(@NonNull StmtPrinter printer) Returns the declaration of this method, as used at the top of textual body representations (before the {}'s containing the code for representation.)@NonNull SootMethod
@NonNull SootMethod
withModifiers
(Iterable<MethodModifier> modifiers) @NonNull SootMethod
Creates a new SootMethod based on a newOverridingBodySource
.@NonNull SootMethod
withSource
(BodySource source) @NonNull SootMethod
withThrownExceptions
(Iterable<ClassType> thrownExceptions) Methods inherited from class sootup.core.model.SootClassMember
getDeclaringClassType, getPosition, getSignature, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface sootup.core.model.Method
getSignature
-
Field Details
-
exceptions
Declared exceptions thrown by this method. Created upon demand. -
bodySource
Tells this method how to find out where its body lives.
-
-
Constructor Details
-
SootMethod
public SootMethod(@NonNull BodySource source, @NonNull MethodSignature methodSignature, @NonNull Iterable<MethodModifier> modifiers, @NonNull Iterable<ClassType> thrownExceptions, @NonNull Position position) Constructs a SootMethod object with the given attributes.
-
-
Method Details
-
isProtected
public boolean isProtected()Description copied from class:SootClassMember
Convenience method returning true if this class member is protected.- Specified by:
isProtected
in classSootClassMember<MethodSignature>
-
isPrivate
public boolean isPrivate()Description copied from class:SootClassMember
Convenience method returning true if this class member is private.- Specified by:
isPrivate
in classSootClassMember<MethodSignature>
-
isPublic
public boolean isPublic()Description copied from class:SootClassMember
Convenience method returning true if this class member is public.- Specified by:
isPublic
in classSootClassMember<MethodSignature>
-
isStatic
public boolean isStatic()Description copied from class:SootClassMember
Convenience method returning true if this class member is static.- Specified by:
isStatic
in classSootClassMember<MethodSignature>
-
isFinal
public boolean isFinal()Description copied from class:SootClassMember
Convenience method returning true if this field is final.- Specified by:
isFinal
in classSootClassMember<MethodSignature>
-
getModifiers
Gets the modifiers of this class member in an immutable set.- See Also:
-
equivHashCode
public int equivHashCode()Description copied from class:SootClassMember
Returns a hash code for this method consistent with structural equality.- Specified by:
equivHashCode
in classSootClassMember<MethodSignature>
-
isConcrete
public boolean isConcrete()Returns true if this method is not abstract or native, i.e. this method can have a body. -
getReturnType
-
getParameterCount
public int getParameterCount()Returns the number of parameters taken by this method. -
getParameterType
-
getSubSignature
-
getParameterTypes
-
getDeclClassType
-
getName
- Overrides:
getName
in classSootClassMember<MethodSignature>
-
getBody
Retrieves the active body for this method. -
hasBody
public boolean hasBody()Returns true if this method has a body. -
getBodySource
-
getExceptionSignatures
-
isAbstract
public boolean isAbstract()Convenience method returning true if this method is abstract. -
isNative
public boolean isNative()Convenience method returning true if this method is native. -
isSynchronized
public boolean isSynchronized()Convenience method returning true if this method is synchronized. -
isMain
- Returns:
- yes if this is the main method
-
isConstructor
- Returns:
- true if the method is a constructor
-
isDefaultConstructor
- Returns:
- true if the method is the default constructor
-
toString
Returns the declaration of this method, as used at the top of textual body representations (before the {}'s containing the code for representation.) -
withOverridingMethodSource
public @NonNull SootMethod withOverridingMethodSource(Function<OverridingBodySource, OverridingBodySource> overrider) Creates a new SootMethod based on a newOverridingBodySource
. This is useful to change selected parts of aSootMethod
without recreating aBodySource
completely.OverridingBodySource
allows for replacing the body of a method. -
withSource
-
withModifiers
-
withThrownExceptions
-
withBody
-
builder
Creates a builder forSootMethod
s.- Returns:
- A
SootMethod.SootMethodBuilder
.
-
hashCode
public int hashCode() -
equals
-