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 SummaryFields inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyloader
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedprotected
- 
Method SummaryModifier 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.AbstractLoggingStrategyclassNodeMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategygetCategoryName, isLoggingMethod, wrapLoggingMethodCallMethods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategyV2addLoggerFieldToClass
- 
Constructor Details- 
AbstractLoggingStrategyV2
- 
AbstractLoggingStrategyV2protected AbstractLoggingStrategyV2()
 
- 
- 
Method Details- 
addLoggerFieldToClassDescription 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 interface- LogASTTransformation.LoggingStrategy
- Parameters:
- classNode- the class that was originally annotated with the Log transformation.
- fieldName- the name of the logger field
- categoryName- the name of the logging category
- Returns:
- the FieldNode instance that was created and added to the class
 
 
-