| org.quilt.cl.ClassXformer
All known Subclasses: org.quilt.cover.stmt.ClassAction,
ClassXformer | public interface ClassXformer (Code) | | Application-specific pre- and post-processors for Quilt classes.
There may be any number of these.
If pre/post-processors encounter fatal errors, they must issue
a warning message to System.err and either undo or set clazz to null.
author: < a href="jddixon@users.sourceforge.net">Jim Dixon |
getName | public String getName()(Code) | | Get the preprocessor's report name.
|
postMethods | public void postMethods(ClassGen clazz)(Code) | | Postprocessor applied to the class after looking at methods.
These will be applied in reverse order after completion of
method processing.
|
preMethods | public void preMethods(ClassGen clazz)(Code) | | Preprocessor applied to the class before looking at methods.
Any such preprocessors will be applied in the order of
the ClassXformer vector.
|
setName | public void setName(String name)(Code) | | Set the preprocessor's name for reports.
|
|
|