Class RegexpSinglelineCheck
- java.lang.Object
-
- com.puppycrawl.tools.checkstyle.api.AutomaticBean
-
- com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
-
- com.puppycrawl.tools.checkstyle.api.AbstractFileSetCheck
-
- com.puppycrawl.tools.checkstyle.checks.regexp.RegexpSinglelineCheck
-
- All Implemented Interfaces:
Configurable
,Contextualizable
,FileSetCheck
public class RegexpSinglelineCheck extends AbstractFileSetCheck
Implementation of a check that looks for a single line in any file type.- Author:
- Oliver Burn
-
-
Constructor Summary
Constructors Constructor Description RegexpSinglelineCheck()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beginProcessing(String charset)
Called when about to be called to process a set of files.protected void
processFiltered(File file, List<String> lines)
Called to process a file that matches the specified file extensions.void
setFormat(String format)
Set the format of the regular expression to match.void
setIgnoreCase(boolean ignoreCase)
Set whether to ignore case when matching.void
setMaximum(int maximum)
Set the maximum number of matches required per file.void
setMessage(String message)
Set the message to report for a match.void
setMinimum(int minimum)
Set the minimum number of matches required per file.-
Methods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractFileSetCheck
destroy, finishProcessing, fireErrors, getFileExtensions, getMessageCollector, getMessageDispatcher, init, log, log, process, setFileExtensions, setMessageDispatcher
-
Methods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, log, setId, setSeverity
-
Methods inherited from class com.puppycrawl.tools.checkstyle.api.AutomaticBean
configure, contextualize, finishLocalSetup, getConfiguration, setupChild
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.puppycrawl.tools.checkstyle.api.Configurable
configure
-
Methods inherited from interface com.puppycrawl.tools.checkstyle.api.Contextualizable
contextualize
-
-
-
-
Constructor Detail
-
RegexpSinglelineCheck
public RegexpSinglelineCheck()
-
-
Method Detail
-
beginProcessing
public void beginProcessing(String charset)
Description copied from interface:FileSetCheck
Called when about to be called to process a set of files.- Specified by:
beginProcessing
in interfaceFileSetCheck
- Overrides:
beginProcessing
in classAbstractFileSetCheck
- Parameters:
charset
- the character set used to read the files.
-
processFiltered
protected void processFiltered(File file, List<String> lines)
Description copied from class:AbstractFileSetCheck
Called to process a file that matches the specified file extensions.- Specified by:
processFiltered
in classAbstractFileSetCheck
- Parameters:
file
- the file to be processedlines
- an immutable list of the contents of the file.
-
setFormat
public void setFormat(String format)
Set the format of the regular expression to match.- Parameters:
format
- the format of the regular expression to match.
-
setMessage
public void setMessage(String message)
Set the message to report for a match.- Parameters:
message
- the message to report for a match.
-
setMinimum
public void setMinimum(int minimum)
Set the minimum number of matches required per file.- Parameters:
minimum
- the minimum number of matches required per file.
-
setMaximum
public void setMaximum(int maximum)
Set the maximum number of matches required per file.- Parameters:
maximum
- the maximum number of matches required per file.
-
setIgnoreCase
public void setIgnoreCase(boolean ignoreCase)
Set whether to ignore case when matching.- Parameters:
ignoreCase
- whether to ignore case when matching.
-
-