Checkstyle Results

The following document contains the results of Checkstyle 6.18 with magnolia-build-resources/checkstyle.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
51 0 0 177

Files

File  I  W  E
name/fraser/neil/plaintext/diff_match_patch.java 0 0 4
org/vaadin/aceeditor/AceEditor.java 0 0 7
org/vaadin/aceeditor/AceMode.java 0 0 2
org/vaadin/aceeditor/AceTheme.java 0 0 2
org/vaadin/aceeditor/ServerSideDocDiff.java 0 0 3
org/vaadin/aceeditor/Suggester.java 0 0 3
org/vaadin/aceeditor/Suggestion.java 0 0 2
org/vaadin/aceeditor/SuggestionExtension.java 0 0 2
org/vaadin/aceeditor/TextRange.java 0 0 3
org/vaadin/aceeditor/TextUtils.java 0 0 2
org/vaadin/aceeditor/client/AceAnnotation.java 0 0 5
org/vaadin/aceeditor/client/AceDoc.java 0 0 4
org/vaadin/aceeditor/client/AceEditorClientRpc.java 0 0 3
org/vaadin/aceeditor/client/AceEditorConnector.java 0 0 6
org/vaadin/aceeditor/client/AceEditorServerRpc.java 0 0 3
org/vaadin/aceeditor/client/AceEditorState.java 0 0 3
org/vaadin/aceeditor/client/AceEditorWidget.java 0 0 11
org/vaadin/aceeditor/client/AceMarker.java 0 0 2
org/vaadin/aceeditor/client/AceRange.java 0 0 3
org/vaadin/aceeditor/client/ClientSideDocDiff.java 0 0 4
org/vaadin/aceeditor/client/DiffMatchPatchJSNI.java 0 0 3
org/vaadin/aceeditor/client/GwtTextDiff.java 0 0 5
org/vaadin/aceeditor/client/MarkerAddition.java 0 0 3
org/vaadin/aceeditor/client/MarkerDiff.java 0 0 3
org/vaadin/aceeditor/client/MarkerSetDiff.java 0 0 3
org/vaadin/aceeditor/client/RangeDiff.java 0 0 3
org/vaadin/aceeditor/client/SetDiff.java 0 0 4
org/vaadin/aceeditor/client/SuggestPopup.java 0 0 4
org/vaadin/aceeditor/client/SuggesterClientRpc.java 0 0 3
org/vaadin/aceeditor/client/SuggesterConnector.java 0 0 4
org/vaadin/aceeditor/client/SuggesterServerRpc.java 0 0 3
org/vaadin/aceeditor/client/SuggesterState.java 0 0 3
org/vaadin/aceeditor/client/SuggestionResources.java 0 0 3
org/vaadin/aceeditor/client/TransportDiff.java 0 0 9
org/vaadin/aceeditor/client/TransportDoc.java 0 0 9
org/vaadin/aceeditor/client/TransportSuggestion.java 0 0 3
org/vaadin/aceeditor/client/Util.java 0 0 3
org/vaadin/aceeditor/client/gwt/GwtAceAnnotation.java 0 0 2
org/vaadin/aceeditor/client/gwt/GwtAceChangeCursorHandler.java 0 0 2
org/vaadin/aceeditor/client/gwt/GwtAceChangeEvent.java 0 0 4
org/vaadin/aceeditor/client/gwt/GwtAceChangeHandler.java 0 0 2
org/vaadin/aceeditor/client/gwt/GwtAceChangeSelectionHandler.java 0 0 2
org/vaadin/aceeditor/client/gwt/GwtAceEditor.java 0 0 2
org/vaadin/aceeditor/client/gwt/GwtAceEvent.java 0 0 3
org/vaadin/aceeditor/client/gwt/GwtAceFocusBlurHandler.java 0 0 3
org/vaadin/aceeditor/client/gwt/GwtAceKeyboardEvent.java 0 0 3
org/vaadin/aceeditor/client/gwt/GwtAceKeyboardHandler.java 0 0 2
org/vaadin/aceeditor/client/gwt/GwtAcePosition.java 0 0 3
org/vaadin/aceeditor/client/gwt/GwtAceRange.java 0 0 3
org/vaadin/aceeditor/client/gwt/GwtAceSelection.java 0 0 3
org/vaadin/aceeditor/client/gwt/package-info.java 0 0 1

Rules

Category Rule Violations Severity
header RegexpHeader
  • fileExtensions: "java"
  • headerFile: "target/checkstyle-header.txt"
  • multiLines: "1"
51  Error
imports AvoidStarImport
  • allowStaticMemberImports: "true"
3  Error
UnusedImports 2  Error
javadoc JavadocStyle
  • checkFirstSentence: "true"
  • checkEmptyJavadoc: "false"
10  Error
JavadocStyle
  • checkFirstSentence: "true"
  • tokens: "INTERFACE_DEF, CLASS_DEF"
  • checkEmptyJavadoc: "true"
10  Error
JavadocType
  • scope: "package"
63  Error
whitespace FileTabCharacter 48  Error

Details

name/fraser/neil/plaintext/diff_match_patch.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocStyle First sentence should end with a period. 109
 Error javadoc JavadocStyle First sentence should end with a period. 580
 Error javadoc JavadocStyle First sentence should end with a period. 597

org/vaadin/aceeditor/AceEditor.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 47
 Error javadoc JavadocType Missing a Javadoc comment. 54
 Error javadoc JavadocType Missing a Javadoc comment. 68
 Error javadoc JavadocType Missing a Javadoc comment. 75
 Error javadoc JavadocType Missing a Javadoc comment. 89
 Error javadoc JavadocType Missing a Javadoc comment. 97

org/vaadin/aceeditor/AceMode.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10

org/vaadin/aceeditor/AceTheme.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8

org/vaadin/aceeditor/ServerSideDocDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 27
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 28

org/vaadin/aceeditor/Suggester.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 6
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 7

org/vaadin/aceeditor/Suggestion.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 12

org/vaadin/aceeditor/SuggestionExtension.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 29

org/vaadin/aceeditor/TextRange.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 6
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8

org/vaadin/aceeditor/TextUtils.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocStyle Javadoc has empty description section. 3

org/vaadin/aceeditor/client/AceAnnotation.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 14
 Error javadoc JavadocType Missing a Javadoc comment. 15
 Error javadoc JavadocType Missing a Javadoc comment. 65
 Error javadoc JavadocType Missing a Javadoc comment. 102

org/vaadin/aceeditor/client/AceDoc.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 9
 Error javadoc JavadocType Missing a Javadoc comment. 12
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 14

org/vaadin/aceeditor/client/AceEditorClientRpc.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 6

org/vaadin/aceeditor/client/AceEditorConnector.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 24
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 27
 Error javadoc JavadocType Missing a Javadoc comment. 35
 Error javadoc JavadocType Missing a Javadoc comment. 42
 Error javadoc JavadocType Missing a Javadoc comment. 78

org/vaadin/aceeditor/client/AceEditorServerRpc.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 9
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10

org/vaadin/aceeditor/client/AceEditorState.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 12

org/vaadin/aceeditor/client/AceEditorWidget.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error imports UnusedImports Unused import - com.vaadin.client.VConsole. 7
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.vaadin.aceeditor.client.gwt.*. 13
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 16
 Error javadoc JavadocStyle First sentence should end with a period. 19
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 24
 Error javadoc JavadocType Missing a Javadoc comment. 27
 Error javadoc JavadocType Missing a Javadoc comment. 30
 Error javadoc JavadocType Missing a Javadoc comment. 34
 Error javadoc JavadocType Missing a Javadoc comment. 59
 Error javadoc JavadocType Missing a Javadoc comment. 68

org/vaadin/aceeditor/client/AceMarker.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 14

org/vaadin/aceeditor/client/AceRange.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocStyle Javadoc has empty description section. 6
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11

org/vaadin/aceeditor/client/ClientSideDocDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 18
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 20
 Error javadoc JavadocType Missing a Javadoc comment. 124

org/vaadin/aceeditor/client/DiffMatchPatchJSNI.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 12

org/vaadin/aceeditor/client/GwtTextDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 9
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10
 Error javadoc JavadocType Missing a Javadoc comment. 15
 Error javadoc JavadocType Missing a Javadoc comment. 39

org/vaadin/aceeditor/client/MarkerAddition.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 6

org/vaadin/aceeditor/client/MarkerDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 12
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 13

org/vaadin/aceeditor/client/MarkerSetDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 15
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 17

org/vaadin/aceeditor/client/RangeDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 6

org/vaadin/aceeditor/client/SetDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 15
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 16
 Error javadoc JavadocType Missing a Javadoc comment. 30

org/vaadin/aceeditor/client/SuggestPopup.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 20
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 21
 Error javadoc JavadocType Missing a Javadoc comment. 26

org/vaadin/aceeditor/client/SuggesterClientRpc.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8

org/vaadin/aceeditor/client/SuggesterConnector.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error imports UnusedImports Unused import - java.util.logging.Logger. 17
 Error javadoc JavadocType Missing a Javadoc comment. 19
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 22

org/vaadin/aceeditor/client/SuggesterServerRpc.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 9

org/vaadin/aceeditor/client/SuggesterState.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 7

org/vaadin/aceeditor/client/SuggestionResources.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 9

org/vaadin/aceeditor/client/TransportDiff.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 21
 Error javadoc JavadocType Missing a Javadoc comment. 22
 Error javadoc JavadocType Missing a Javadoc comment. 34
 Error javadoc JavadocType Missing a Javadoc comment. 46
 Error javadoc JavadocType Missing a Javadoc comment. 58
 Error javadoc JavadocType Missing a Javadoc comment. 76
 Error javadoc JavadocType Missing a Javadoc comment. 91
 Error javadoc JavadocType Missing a Javadoc comment. 106

org/vaadin/aceeditor/client/TransportDoc.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 20
 Error javadoc JavadocType Missing a Javadoc comment. 21
 Error javadoc JavadocType Missing a Javadoc comment. 25
 Error javadoc JavadocType Missing a Javadoc comment. 29
 Error javadoc JavadocType Missing a Javadoc comment. 55
 Error javadoc JavadocType Missing a Javadoc comment. 73
 Error javadoc JavadocType Missing a Javadoc comment. 83
 Error javadoc JavadocType Missing a Javadoc comment. 97

org/vaadin/aceeditor/client/TransportSuggestion.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 7

org/vaadin/aceeditor/client/Util.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 9

org/vaadin/aceeditor/client/gwt/GwtAceAnnotation.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11

org/vaadin/aceeditor/client/gwt/GwtAceChangeCursorHandler.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8

org/vaadin/aceeditor/client/gwt/GwtAceChangeEvent.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocType Missing a Javadoc comment. 21

org/vaadin/aceeditor/client/gwt/GwtAceChangeHandler.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8

org/vaadin/aceeditor/client/gwt/GwtAceChangeSelectionHandler.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8

org/vaadin/aceeditor/client/gwt/GwtAceEditor.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 17

org/vaadin/aceeditor/client/gwt/GwtAceEvent.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 13
 Error javadoc JavadocType Missing a Javadoc comment. 16

org/vaadin/aceeditor/client/gwt/GwtAceFocusBlurHandler.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocStyle Javadoc has empty description section. 3
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 7

org/vaadin/aceeditor/client/gwt/GwtAceKeyboardEvent.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 4
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 5

org/vaadin/aceeditor/client/gwt/GwtAceKeyboardHandler.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^ \* This file Copyright \(c\) (20[0-9]{2}\-)?20[0-9]{2} Magnolia International\s*$'. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10

org/vaadin/aceeditor/client/gwt/GwtAcePosition.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocStyle First sentence should end with a period. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11

org/vaadin/aceeditor/client/gwt/GwtAceRange.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocStyle First sentence should end with a period. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11

org/vaadin/aceeditor/client/gwt/GwtAceSelection.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1
 Error javadoc JavadocStyle First sentence should end with a period. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11

org/vaadin/aceeditor/client/gwt/package-info.java

Severity Category Rule Message Line
 Error header RegexpHeader Missing a header - not enough lines in file. 1