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.AbstractLoggingStrategyloader
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedAbstractLoggingStrategyV2()protectedAbstractLoggingStrategyV2(GroovyClassLoader loader)
 - 
Method SummaryAll 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.AbstractLoggingStrategyclassNode, getCategoryName
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategygetCategoryName, isLoggingMethod, wrapLoggingMethodCall
 - 
Methods inherited from interface org.codehaus.groovy.transform.LogASTTransformation.LoggingStrategyV2addLoggerFieldToClass
 
- 
 
- 
- 
- 
Constructor Detail- 
AbstractLoggingStrategyV2protected AbstractLoggingStrategyV2(GroovyClassLoader loader) 
 - 
AbstractLoggingStrategyV2protected AbstractLoggingStrategyV2() 
 
- 
 - 
Method Detail- 
addLoggerFieldToClasspublic 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 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
 
 
- 
 
-