[Java] Class MopWriter
- org.codehaus.groovy.classgen.asm.MopWriter
public class MopWriter extends Object
Nested Class Summary
| Modifiers | Name | Description |
|---|---|---|
interface | MopWriter.Factory |
Field Summary
| Modifiers | Name | Description |
|---|---|---|
static Factory | FACTORY |
Constructor Summary
| Constructor and description |
|---|
MopWriter
(WriterController controller) |
Methods Summary
| Type Params | Return Type | Name and description |
|---|---|---|
public void |
createMopMethods() | |
public static boolean |
equalParameterTypes(Parameter[] p1, Parameter[] p2) | |
protected void |
generateMopCalls(LinkedList<MethodNode> mopCalls, boolean useThis)Generates a Meta Object Protocol method, that is used to call a non public method, or to make a call to super. | |
public static String |
getMopMethodName(MethodNode method, boolean useThis)Creates a MOP method name from a method. | |
public static boolean |
isMopMethod(String methodName)Determines if a method is a MOP method. |
Inherited Methods Summary
| Methods inherited from class | Name |
|---|---|
class Object | wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail
public static final Factory FACTORY
Constructor Detail
public MopWriter(WriterController controller)
Method Detail
public void createMopMethods()
@Deprecated public static boolean equalParameterTypes(Parameter[] p1, Parameter[] p2)
protected void generateMopCalls(LinkedList<MethodNode> mopCalls, boolean useThis)
Generates a Meta Object Protocol method, that is used to call a non public method, or to make a call to super.
- Parameters:
-
mopCalls- list of methods a mop call method should be generated for -
useThis- true if "this" should be used for the naming
public static String getMopMethodName(MethodNode method, boolean useThis)
Creates a MOP method name from a method.
- Parameters:
-
method- the method to be called by the mop method -
useThis- if true, then it is a call on "this", "super" else
- Returns:
- the mop method name
public static boolean isMopMethod(String methodName)
Determines if a method is a MOP method. This is done by the method name. If the name starts with "this$" or "super$" but does not contain "$dist$", then it is an MOP method.
- Parameters:
-
methodName- name of the method to test
- Returns:
- true if the method is a MOP method
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/3.0.7/html/gapi/org/codehaus/groovy/classgen/asm/MopWriter.html