Package proguard.classfile.util.inject
Class AccumulatedCodeInjector
- java.lang.Object
-
- proguard.classfile.util.inject.CodeInjector
-
- proguard.classfile.util.inject.AccumulatedCodeInjector
-
public class AccumulatedCodeInjector extends CodeInjector
This utility class allows for injecting multiple static method invocations in multiple target methods. It allows the repeated use of the API methods defined in theCodeInjector
class.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class proguard.classfile.util.inject.CodeInjector
CodeInjector.ClassMethodPair
-
-
Constructor Summary
Constructors Constructor Description AccumulatedCodeInjector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CodeInjector
at(InjectStrategy injectStrategy)
Specify the location in which the invoke instruction should be injected into.void
commit()
Apply the invoke instruction in accordance to the specifications provided via the `.injectInvokeStatic(...)`, `.into(...)` and `.at(...)` methods.CodeInjector
injectInvokeStatic(Clazz clazz, Method method)
Specify the static method to be invoked.CodeInjector
injectInvokeStatic(Clazz clazz, Method method, InjectedArgument... arguments)
Specify the static method to be invoked.CodeInjector
into(ProgramClass programClass, ProgramMethod programMethod)
Specify the method where a static method invocation will be injected into.-
Methods inherited from class proguard.classfile.util.inject.CodeInjector
getArguments, getContent, getInjectStrategy, getTargets, readyToCommit
-
-
-
-
Method Detail
-
injectInvokeStatic
public CodeInjector injectInvokeStatic(Clazz clazz, Method method)
Description copied from class:CodeInjector
Specify the static method to be invoked.- Overrides:
injectInvokeStatic
in classCodeInjector
- Parameters:
clazz
- The class containing the static method to be invoked.method
- The method to be invoked.
-
injectInvokeStatic
public CodeInjector injectInvokeStatic(Clazz clazz, Method method, InjectedArgument... arguments)
Description copied from class:CodeInjector
Specify the static method to be invoked.- Overrides:
injectInvokeStatic
in classCodeInjector
- Parameters:
clazz
- The class containing the static method to be invoked.method
- The method to be invoked.arguments
- A list of arguments to be passed to the method to be invoked.
-
into
public CodeInjector into(ProgramClass programClass, ProgramMethod programMethod)
Description copied from class:CodeInjector
Specify the method where a static method invocation will be injected into.- Overrides:
into
in classCodeInjector
- Parameters:
programClass
- The program class that has the method where a static method invocation will be injected into.programMethod
- The method where a static method invocation will be injected into.
-
at
public CodeInjector at(InjectStrategy injectStrategy)
Description copied from class:CodeInjector
Specify the location in which the invoke instruction should be injected into.- Overrides:
at
in classCodeInjector
- Parameters:
injectStrategy
- The implementation of the InjectStrategy interface which determines the offset to inject the invoke instruction.
-
commit
public void commit()
Description copied from class:CodeInjector
Apply the invoke instruction in accordance to the specifications provided via the `.injectInvokeStatic(...)`, `.into(...)` and `.at(...)` methods.- Overrides:
commit
in classCodeInjector
-
-