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,PlatformLog.JavaUtilLoggingStrategy,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
ConstructorsModifierConstructorDescriptionprotectedprotected - 
Method Summary
Modifier and TypeMethodDescriptionaddLoggerFieldToClass(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, getCategoryNameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategy
getCategoryName, isLoggingMethod, wrapLoggingMethodCallMethods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategyV2
addLoggerFieldToClass 
- 
Constructor Details
- 
AbstractLoggingStrategyV2
 - 
AbstractLoggingStrategyV2
protected AbstractLoggingStrategyV2() 
 - 
 - 
Method Details
- 
addLoggerFieldToClass
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
 
 
 -