Package org.codehaus.groovy.transform
Class LogASTTransformation.AbstractLoggingStrategyV2
- java.lang.Object
 - 
- org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
 - 
- org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyV2
 
 
 
- 
- All Implemented Interfaces:
 LogASTTransformation.LoggingStrategy,LogASTTransformation.LoggingStrategyV2
- Direct Known Subclasses:
 Commons.CommonsLoggingStrategy,Log.JavaUtilLoggingStrategy,Log4j.Log4jLoggingStrategy,Log4j2.Log4j2LoggingStrategy,Slf4j.Slf4jLoggingStrategy
- Enclosing class:
 - LogASTTransformation
 
public abstract static class LogASTTransformation.AbstractLoggingStrategyV2 extends LogASTTransformation.AbstractLoggingStrategy implements LogASTTransformation.LoggingStrategyV2
 
- 
- 
Field Summary
- 
Fields inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
loader 
 - 
 
- 
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractLoggingStrategyV2()protectedAbstractLoggingStrategyV2(GroovyClassLoader loader) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldNodeaddLoggerFieldToClass(ClassNode classNode, String fieldName, String categoryName)In this method, you are given a ClassNode, a field name and a category name, and you must add a new Field onto the class.- 
Methods inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
classNode, getCategoryName 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategy
getCategoryName, isLoggingMethod, wrapLoggingMethodCall 
- 
Methods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategyV2
addLoggerFieldToClass 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
AbstractLoggingStrategyV2
protected AbstractLoggingStrategyV2(GroovyClassLoader loader)
 
- 
AbstractLoggingStrategyV2
protected AbstractLoggingStrategyV2()
 
 - 
 
- 
Method Detail
- 
addLoggerFieldToClass
public FieldNode addLoggerFieldToClass(ClassNode classNode, String fieldName, String categoryName)
Description copied from interface:LogASTTransformation.LoggingStrategyIn this method, you are given a ClassNode, a field name and a category name, and you must add a new Field onto the class. Return the result of the ClassNode.addField operations.- Specified by:
 addLoggerFieldToClassin interfaceLogASTTransformation.LoggingStrategy- Parameters:
 classNode- the class that was originally annotated with the Log transformation.fieldName- the name of the logger fieldcategoryName- the name of the logging category- Returns:
 - the FieldNode instance that was created and added to the class
 
 
 - 
 
 -