Package com.puppycrawl.tools.checkstyle
Class XpathFileGeneratorAuditListener
java.lang.Object
com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
com.puppycrawl.tools.checkstyle.XpathFileGeneratorAuditListener
- All Implemented Interfaces:
AuditListener,Configurable,Contextualizable,EventListener
Generates suppressions.xml file, based on violations occurred.
See issue #102
-
Nested Class Summary
Nested classes/interfaces inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
AbstractAutomaticBean.OutputStreamOptions -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanClose output stream in auditFinished.private booleanDetermines if xml header is printed.private static final StringThe " quote character.private final PrintWriterHelper writer that allows easy encoding and printing. -
Constructor Summary
ConstructorsConstructorDescriptionXpathFileGeneratorAuditListener(OutputStream out, AbstractAutomaticBean.OutputStreamOptions outputStreamOptions) Creates a newSuppressionFileGeneratorinstance. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddError(AuditEvent event) Notify that an audit error was discovered on a specific file.voidaddException(AuditEvent event, Throwable throwable) Notify that an exception happened while performing audit.voidauditFinished(AuditEvent event) Notify that the audit is finished.voidauditStarted(AuditEvent event) Notify that the audit is about to start.voidfileFinished(AuditEvent event) Notify that audit is finished on a specific file.voidfileStarted(AuditEvent event) Notify that audit is about to start on a specific file.protected voidProvides a hook to finish the part of this component's setup that was not handled by the bean introspection.private voidPrints XML header if only it was not printed before.Methods inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
configure, contextualize, getConfiguration, setupChild
-
Field Details
-
QUOTE_CHAR
The " quote character.- See Also:
-
writer
Helper writer that allows easy encoding and printing. -
closeStream
Close output stream in auditFinished. -
isXmlHeaderPrinted
Determines if xml header is printed.
-
-
Constructor Details
-
XpathFileGeneratorAuditListener
public XpathFileGeneratorAuditListener(OutputStream out, AbstractAutomaticBean.OutputStreamOptions outputStreamOptions) Creates a newSuppressionFileGeneratorinstance. Sets the output to a defined stream.- Parameters:
out- the output streamoutputStreamOptions- ifCLOSEstream should be closed in auditFinished()
-
-
Method Details
-
auditStarted
Description copied from interface:AuditListenerNotify that the audit is about to start.- Specified by:
auditStartedin interfaceAuditListener- Parameters:
event- the event details
-
auditFinished
Description copied from interface:AuditListenerNotify that the audit is finished.- Specified by:
auditFinishedin interfaceAuditListener- Parameters:
event- the event details
-
fileStarted
Description copied from interface:AuditListenerNotify that audit is about to start on a specific file.- Specified by:
fileStartedin interfaceAuditListener- Parameters:
event- the event details
-
fileFinished
Description copied from interface:AuditListenerNotify that audit is finished on a specific file.- Specified by:
fileFinishedin interfaceAuditListener- Parameters:
event- the event details
-
addError
Description copied from interface:AuditListenerNotify that an audit error was discovered on a specific file.- Specified by:
addErrorin interfaceAuditListener- Parameters:
event- the event details
-
addException
Description copied from interface:AuditListenerNotify that an exception happened while performing audit.- Specified by:
addExceptionin interfaceAuditListener- Parameters:
event- the event detailsthrowable- details of the exception
-
printXmlHeader
Prints XML header if only it was not printed before. -
finishLocalSetup
Description copied from class:AbstractAutomaticBeanProvides a hook to finish the part of this component's setup that was not handled by the bean introspection.The default implementation does nothing.
- Specified by:
finishLocalSetupin classAbstractAutomaticBean
-