Uses of Class
ch.qos.logback.core.joran.spi.InterpretationContext

Packages that use InterpretationContext
ch.qos.logback.core.db The ch.qos.logback.core.db package provides bases classes to append objects into various databases. 
ch.qos.logback.core.joran Contains Joran configuration classes. 
ch.qos.logback.core.joran.action   
ch.qos.logback.core.joran.conditional   
ch.qos.logback.core.joran.spi   
 

Uses of InterpretationContext in ch.qos.logback.core.db
 

Methods in ch.qos.logback.core.db with parameters of type InterpretationContext
 void BindDataSourceToJNDIAction.begin(InterpretationContext ec, String localName, Attributes attributes)
          Instantiates an a data source and bind it to JNDI Most of the required parameters are placed in the ec.substitutionProperties
 void BindDataSourceToJNDIAction.end(InterpretationContext ec, String name)
           
 

Uses of InterpretationContext in ch.qos.logback.core.joran
 

Methods in ch.qos.logback.core.joran that return InterpretationContext
 InterpretationContext JoranConfiguratorBase.getExecutionContext()
           
 

Uses of InterpretationContext in ch.qos.logback.core.joran.action
 

Methods in ch.qos.logback.core.joran.action with parameters of type InterpretationContext
 void TimestampAction.begin(InterpretationContext ec, String name, Attributes attributes)
           
 void StatusListenerAction.begin(InterpretationContext ec, String name, Attributes attributes)
           
 void PropertyAction.begin(InterpretationContext ec, String localName, Attributes attributes)
          Set a new property for the execution context by name, value pair, or adds all the properties found in the given file.
 void ParamAction.begin(InterpretationContext ec, String localName, Attributes attributes)
           
 void NOPAction.begin(InterpretationContext ec, String name, Attributes attributes)
           
 void NewRuleAction.begin(InterpretationContext ec, String localName, Attributes attributes)
          Instantiates an layout of the given class and sets its name.
 void NestedComplexPropertyIA.begin(InterpretationContext ec, String localName, Attributes attributes)
           
 void NestedBasicPropertyIA.begin(InterpretationContext ec, String localName, Attributes attributes)
           
 void IncludeAction.begin(InterpretationContext ec, String name, Attributes attributes)
           
 void DefinePropertyAction.begin(InterpretationContext ec, String localName, Attributes attributes)
           
 void ConversionRuleAction.begin(InterpretationContext ec, String localName, Attributes attributes)
          Instantiates an layout of the given class and sets its name.
 void ContextPropertyAction.begin(InterpretationContext ec, String name, Attributes attributes)
           
 void AppenderRefAction.begin(InterpretationContext ec, String tagName, Attributes attributes)
           
 void AppenderAction.begin(InterpretationContext ec, String localName, Attributes attributes)
          Instantiates an appender of the given class and sets its name.
abstract  void Action.begin(InterpretationContext ic, String name, Attributes attributes)
          Called when the parser encounters an element matching a Pattern.
 void AbstractEventEvaluatorAction.begin(InterpretationContext ec, String name, Attributes attributes)
          Instantiates an evaluator of the given class and sets its name.
 void NestedBasicPropertyIA.body(InterpretationContext ec, String body)
           
 void Action.body(InterpretationContext ic, String body)
          Called to pass the body (as text) contained within an element.
 void TimestampAction.end(InterpretationContext ec, String name)
           
 void StatusListenerAction.end(InterpretationContext ec, String e)
           
 void PropertyAction.end(InterpretationContext ec, String name)
           
 void ParamAction.end(InterpretationContext ec, String localName)
           
 void NOPAction.end(InterpretationContext ec, String name)
           
 void NewRuleAction.end(InterpretationContext ec, String n)
          Once the children elements are also parsed, now is the time to activate the appender options.
 void NestedComplexPropertyIA.end(InterpretationContext ec, String tagName)
           
 void NestedBasicPropertyIA.end(InterpretationContext ec, String tagName)
           
 void IncludeAction.end(InterpretationContext ec, String name)
           
 void DefinePropertyAction.end(InterpretationContext ec, String name)
          Now property definer is initialized by all properties and we can put property value to context
 void ConversionRuleAction.end(InterpretationContext ec, String n)
          Once the children elements are also parsed, now is the time to activate the appender options.
 void ContextPropertyAction.end(InterpretationContext ec, String name)
           
 void AppenderRefAction.end(InterpretationContext ec, String n)
           
 void AppenderAction.end(InterpretationContext ec, String name)
          Once the children elements are also parsed, now is the time to activate the appender options.
abstract  void Action.end(InterpretationContext ic, String name)
           
 void AbstractEventEvaluatorAction.end(InterpretationContext ec, String e)
          Once the children elements are also parsed, now is the time to activate the evaluator options.
 void StatusListenerAction.finish(InterpretationContext ec)
           
 void PropertyAction.finish(InterpretationContext ec)
           
 void ParamAction.finish(InterpretationContext ec)
           
 void NewRuleAction.finish(InterpretationContext ec)
           
 void ConversionRuleAction.finish(InterpretationContext ec)
           
 void AbstractEventEvaluatorAction.finish(InterpretationContext ec)
           
protected  int Action.getColumnNumber(InterpretationContext ic)
           
protected  String Action.getLineColStr(InterpretationContext ic)
           
protected  int Action.getLineNumber(InterpretationContext ic)
           
 boolean NestedComplexPropertyIA.isApplicable(Pattern pattern, Attributes attributes, InterpretationContext ic)
           
 boolean NestedBasicPropertyIA.isApplicable(Pattern pattern, Attributes attributes, InterpretationContext ec)
           
abstract  boolean ImplicitAction.isApplicable(Pattern currentPattern, Attributes attributes, InterpretationContext ec)
          Check whether this implicit action is appropriate in the current context.
 void PropertyAction.setProperties(InterpretationContext ec, Properties props)
          Add all the properties found in the argument named 'props' to an InterpretationContext.
 void PropertyAction.setProperty(InterpretationContext ec, String key, String value)
           
 

Uses of InterpretationContext in ch.qos.logback.core.joran.conditional
 

Methods in ch.qos.logback.core.joran.conditional with parameters of type InterpretationContext
 void ThenOrElseActionBase.begin(InterpretationContext ic, String name, Attributes attributes)
           
 void IfAction.begin(InterpretationContext ic, String name, Attributes attributes)
           
 void ThenOrElseActionBase.end(InterpretationContext ic, String name)
           
 void IfAction.end(InterpretationContext ic, String name)
           
 

Uses of InterpretationContext in ch.qos.logback.core.joran.spi
 

Methods in ch.qos.logback.core.joran.spi that return InterpretationContext
 InterpretationContext Interpreter.getExecutionContext()
          Deprecated. replaced by Interpreter.getInterpretationContext()
 InterpretationContext Interpreter.getInterpretationContext()
           
 



Copyright © 2005-2011 QOS.ch. All Rights Reserved.