Class AppenderAction
java.lang.Object
ch.qos.logback.core.spi.ContextAwareBase
ch.qos.logback.core.joran.action.Action
ch.qos.logback.core.joran.action.BaseModelAction
ch.qos.logback.core.joran.action.AppenderAction
- All Implemented Interfaces:
ContextAware
-
Field Summary
Fields inherited from class Action
ACTION_CLASS_ATTRIBUTE, CLASS_ATTRIBUTE, FILE_ATTRIBUTE, KEY_ATTRIBUTE, NAME_ATTRIBUTE, PATTERN_ATTRIBUTE, SCOPE_ATTRIBUTE, VALUE_ATTRIBUTEFields inherited from class ContextAwareBase
context -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ModelbuildCurrentModel(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes) Builds and returns a Model instance for the current XML element being processed.protected booleanvalidPreconditions(SaxEventInterpretationContext ic, String name, Attributes attributes) Validate preconditions of this action.Methods inherited from class BaseModelAction
begin, body, endMethods inherited from class Action
atLine, getColumnNumber, getLineColStr, getLineNumber, nearLine, toStringMethods inherited from class ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
-
Constructor Details
-
AppenderAction
public AppenderAction()
-
-
Method Details
-
validPreconditions
protected boolean validPreconditions(SaxEventInterpretationContext ic, String name, Attributes attributes) Description copied from class:BaseModelActionValidate preconditions of this action. By default, true is returned. Subclasses should override appropriately.- Overrides:
validPreconditionsin classBaseModelAction- Parameters:
ic-name-attributes-- Returns:
-
buildCurrentModel
protected Model buildCurrentModel(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes) Description copied from class:BaseModelActionBuilds and returns a Model instance for the current XML element being processed.This method is called during the begin phase of XML processing to create a Model object that represents the current element. The returned model will be configured with the element's tag name, line number, and will be pushed onto the model stack.
- Specified by:
buildCurrentModelin classBaseModelAction- Parameters:
interpretationContext- the context for interpreting SAX events, providing access to the model stack and other interpretation statename- the name of the XML element being processedattributes- the attributes of the XML element- Returns:
- a new Model instance representing the current XML element
-