| org.quilt.cl.MethodXformer
All known Subclasses: org.quilt.cover.stmt.MethodAction,
MethodXformer | public interface MethodXformer (Code) | | Process a MethodGen method before and after graph creation and
manipulation. A QuiltClassLoader can have any number of such
pre/post-processors. The preprocessors will be applied in order
before graph generation and then the postprocessors will be
applied in reverse order after graph manipulation is complete.
If any fatal errors occur, transformers must issue a warning
message on System.err and either undo any changes or set method
to null.
author: Jim Dixon |
Method Summary | |
public String | getName() Get the report name for method processor. | public void | postGraph(ClassGen clazz, MethodGen method) Process method after graph generation and manipulation is
complete. | public void | preGraph(ClassGen clazz, MethodGen method) Apply processing to method before graph is generated. | public void | setName(String name) Assign a name to the method processor. |
getName | public String getName()(Code) | | Get the report name for method processor.
|
postGraph | public void postGraph(ClassGen clazz, MethodGen method)(Code) | | Process method after graph generation and manipulation is
complete.
|
preGraph | public void preGraph(ClassGen clazz, MethodGen method)(Code) | | Apply processing to method before graph is generated.
|
setName | public void setName(String name)(Code) | | Assign a name to the method processor.
|
|
|