Package | Description |
---|---|
com.puppycrawl.tools.checkstyle |
Contains the implementation of the Checkstyle framework.
|
com.puppycrawl.tools.checkstyle.api |
Contains the core API to be used to implement checks.
|
Modifier and Type | Method and Description |
---|---|
private java.util.SortedSet<LocalizedMessage> |
Checker.processFile(java.io.File file)
Processes a file with all FileSetChecks.
|
Modifier and Type | Method and Description |
---|---|
void |
Checker.fireErrors(java.lang.String fileName,
java.util.SortedSet<LocalizedMessage> errors)
Notify all listeners about the errors in a file.
|
Modifier and Type | Field and Description |
---|---|
private LocalizedMessage |
AuditEvent.localizedMessage
Message associated with the event.
|
Modifier and Type | Field and Description |
---|---|
private java.util.Set<LocalizedMessage> |
LocalizedMessages.messages
Contains the messages logged.
|
Modifier and Type | Method and Description |
---|---|
LocalizedMessage |
AuditEvent.getLocalizedMessage()
Gets the localized message.
|
Modifier and Type | Method and Description |
---|---|
java.util.SortedSet<LocalizedMessage> |
LocalizedMessages.getMessages()
Gets the logged messages.
|
java.util.SortedSet<LocalizedMessage> |
AbstractFileSetCheck.process(java.io.File file,
java.util.List<java.lang.String> lines) |
java.util.SortedSet<LocalizedMessage> |
FileSetCheck.process(java.io.File file,
java.util.List<java.lang.String> lines)
Request to process a file.
|
Modifier and Type | Method and Description |
---|---|
void |
LocalizedMessages.add(LocalizedMessage message)
Logs a message to be reported.
|
int |
LocalizedMessage.compareTo(LocalizedMessage other) |
Modifier and Type | Method and Description |
---|---|
void |
MessageDispatcher.fireErrors(java.lang.String fileName,
java.util.SortedSet<LocalizedMessage> errors)
Notify all listeners about the errors in a file.
|
Constructor and Description |
---|
AuditEvent(java.lang.Object src,
java.lang.String fileName,
LocalizedMessage localizedMessage)
Creates a new
AuditEvent instance. |