Package groovy.util.logging
Class Commons.CommonsLoggingStrategy
java.lang.Object
org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategy
org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyV2
groovy.util.logging.Commons.CommonsLoggingStrategy
- All Implemented Interfaces:
- LogASTTransformation.LoggingStrategy,- LogASTTransformation.LoggingStrategyV2
- Enclosing class:
- Commons
public static class Commons.CommonsLoggingStrategy
extends LogASTTransformation.AbstractLoggingStrategyV2
- 
Field SummaryFields inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyloader
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionaddLoggerFieldToClass(ClassNode classNode, String logFieldName, String categoryName, int fieldModifiers) 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.booleanisLoggingMethod(String methodName) wrapLoggingMethodCall(Expression logVariable, String methodName, Expression originalExpression) Methods inherited from class org.codehaus.groovy.transform.LogASTTransformation.AbstractLoggingStrategyV2addLoggerFieldToClassMethods 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
- 
Constructor Details- 
CommonsLoggingStrategy
 
- 
- 
Method Details- 
addLoggerFieldToClasspublic FieldNode addLoggerFieldToClass(ClassNode classNode, String logFieldName, String categoryName, int fieldModifiers) Description copied from interface:LogASTTransformation.LoggingStrategyV2In 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.- Parameters:
- classNode- the class that was originally annotated with the Log transformation.
- logFieldName- the name of the logger field
- categoryName- the name of the logging category
- fieldModifiers- the modifiers (private, final, et. al.) of the logger field
- Returns:
- the FieldNode instance that was created and added to the class
 
- 
isLoggingMethod
- 
wrapLoggingMethodCallpublic Expression wrapLoggingMethodCall(Expression logVariable, String methodName, Expression originalExpression) 
 
-