Checkstyle Results

The following document contains the results of Checkstyle 10.5.0 with sun_checks.xml ruleset. 

rss feed

Summary

Files
 Info
 Warnings
 Errors
18 0 0 715

Files

File
 I
 W
 E
org/woehlke/computer/kurzweil/mandelbrot/zoom/MandelbrotSetApplication.java 0 0 6
org/woehlke/computer/kurzweil/mandelbrot/zoom/config/Config.java 0 0 67
org/woehlke/computer/kurzweil/mandelbrot/zoom/config/ConfigProperties.java 0 0 31
org/woehlke/computer/kurzweil/mandelbrot/zoom/control/ControllerThread.java 0 0 21
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/ApplicationModel.java 0 0 34
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/common/Point.java 0 0 50
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/fractal/ComplexNumber.java 0 0 113
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/fractal/GaussianNumberPlane.java 0 0 172
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/MandelbrotTuringMachine.java 0 0 31
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringDirection.java 0 0 7
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringPhase.java 0 0 7
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringPhaseState.java 0 0 17
org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringPositions.java 0 0 43
org/woehlke/computer/kurzweil/mandelbrot/zoom/view/ApplicationCanvas.java 0 0 31
org/woehlke/computer/kurzweil/mandelbrot/zoom/view/ApplicationFrame.java 0 0 62
org/woehlke/computer/kurzweil/mandelbrot/zoom/view/panels/PanelButtons.java 0 0 15
org/woehlke/computer/kurzweil/mandelbrot/zoom/view/panels/PanelSubtitle.java 0 0 8

Rules

Category Rule Violations Severity
blocks LeftCurly 2
 Error
NeedBraces 6
 Error
RightCurly 1
 Error
coding HiddenField 14
 Error
InnerAssignment 2
 Error
MagicNumber 5
 Error
design DesignForExtension 86
 Error
FinalClass 1
 Error
InterfaceIsType 1
 Error
VisibilityModifier 1
 Error
imports AvoidStarImport 9
 Error
javadoc JavadocPackage 9
 Error
JavadocVariable 87
 Error
MissingJavadocMethod 94
 Error
misc FinalParameters 53
 Error
modifier ModifierOrder 13
 Error
naming ConstantName 6
 Error
MemberName 1
 Error
sizes LineLength
  • fileExtensions: "java"
83
 Error
whitespace OperatorWrap 32
 Error
ParenPad 19
 Error
WhitespaceAfter 45
 Error
WhitespaceAround 145
 Error

Details

org/woehlke/computer/kurzweil/mandelbrot/zoom/MandelbrotSetApplication.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 11
 Error
sizes LineLength Line is longer than 80 characters (found 92). 12
 Error
sizes LineLength Line is longer than 80 characters (found 88). 13
 Error
design FinalClass Class MandelbrotSetApplication should be declared as final. 16
 Error
misc FinalParameters Parameter args should be final. 27

org/woehlke/computer/kurzweil/mandelbrot/zoom/config/Config.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 14
 Error
sizes LineLength Line is longer than 80 characters (found 92). 15
 Error
sizes LineLength Line is longer than 80 characters (found 88). 16
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
javadoc JavadocVariable Missing a Javadoc comment. 25
 Error
javadoc JavadocVariable Missing a Javadoc comment. 26
 Error
javadoc JavadocVariable Missing a Javadoc comment. 27
 Error
javadoc JavadocVariable Missing a Javadoc comment. 28
 Error
javadoc JavadocVariable Missing a Javadoc comment. 30
 Error
javadoc JavadocVariable Missing a Javadoc comment. 31
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
javadoc JavadocVariable Missing a Javadoc comment. 33
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 46
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 47
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 48
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 49
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 50
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 53
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 54
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 55
 Error
sizes LineLength Line is longer than 80 characters (found 83). 56
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 56
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getTitle' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getTitle' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 62
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getSubtitle' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getSubtitle' static/final/abstract/empty, or adding allowed annotation for the method. 66
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 66
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getCopyright' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getCopyright' static/final/abstract/empty, or adding allowed annotation for the method. 70
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 70
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getWidth' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getWidth' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 74
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getHeight' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getHeight' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 78
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getButtonsLabel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getButtonsLabel' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 82
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getButtonsSwitch' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getButtonsSwitch' static/final/abstract/empty, or adding allowed annotation for the method. 86
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 86
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getButtonsZoom' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getButtonsZoom' static/final/abstract/empty, or adding allowed annotation for the method. 90
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 90
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'getButtonsZoomOut' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'getButtonsZoomOut' static/final/abstract/empty, or adding allowed annotation for the method. 94
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 94
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 98
 Error
misc FinalParameters Parameter o should be final. 99
 Error
blocks NeedBraces 'if' construct must use '{}'s. 100
 Error
blocks NeedBraces 'if' construct must use '{}'s. 101
 Error
whitespace OperatorWrap '&&' should be on a new line. 103
 Error
whitespace OperatorWrap '&&' should be on a new line. 104
 Error
whitespace OperatorWrap '&&' should be on a new line. 105
 Error
whitespace OperatorWrap '&&' should be on a new line. 106
 Error
whitespace OperatorWrap '&&' should be on a new line. 107
 Error
whitespace OperatorWrap '&&' should be on a new line. 108
 Error
whitespace OperatorWrap '&&' should be on a new line. 109
 Error
whitespace OperatorWrap '&&' should be on a new line. 110
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 114
 Error
sizes LineLength Line is longer than 80 characters (found 174). 116
 Error
design DesignForExtension Class 'Config' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Config' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error
whitespace OperatorWrap '+' should be on a new line. 121
 Error
whitespace OperatorWrap '+' should be on a new line. 122
 Error
whitespace OperatorWrap '+' should be on a new line. 123
 Error
whitespace OperatorWrap '+' should be on a new line. 124
 Error
whitespace OperatorWrap '+' should be on a new line. 125
 Error
whitespace OperatorWrap '+' should be on a new line. 126
 Error
whitespace OperatorWrap '+' should be on a new line. 127
 Error
whitespace OperatorWrap '+' should be on a new line. 128
 Error
whitespace OperatorWrap '+' should be on a new line. 129
 Error
whitespace OperatorWrap '+' should be on a new line. 130

org/woehlke/computer/kurzweil/mandelbrot/zoom/config/ConfigProperties.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 122). 10
 Error
sizes LineLength Line is longer than 80 characters (found 92). 11
 Error
sizes LineLength Line is longer than 80 characters (found 88). 12
 Error
design InterfaceIsType interfaces should describe a type and hence have methods. 18
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 23
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 23
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 24
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 24
 Error
javadoc JavadocVariable Missing a Javadoc comment. 26
 Error
javadoc JavadocVariable Missing a Javadoc comment. 27
 Error
javadoc JavadocVariable Missing a Javadoc comment. 28
 Error
javadoc JavadocVariable Missing a Javadoc comment. 29
 Error
javadoc JavadocVariable Missing a Javadoc comment. 31
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 31
 Error
sizes LineLength Line is longer than 80 characters (found 82). 32
 Error
whitespace WhitespaceAround '+' is not followed by whitespace. 32
 Error
javadoc JavadocVariable Missing a Javadoc comment. 34
 Error
javadoc JavadocVariable Missing a Javadoc comment. 36
 Error
javadoc JavadocVariable Missing a Javadoc comment. 37
 Error
javadoc JavadocVariable Missing a Javadoc comment. 38
 Error
javadoc JavadocVariable Missing a Javadoc comment. 39
 Error
javadoc JavadocVariable Missing a Javadoc comment. 40
 Error
javadoc JavadocVariable Missing a Javadoc comment. 42
 Error
javadoc JavadocVariable Missing a Javadoc comment. 43
 Error
javadoc JavadocVariable Missing a Javadoc comment. 44
 Error
javadoc JavadocVariable Missing a Javadoc comment. 45

org/woehlke/computer/kurzweil/mandelbrot/zoom/control/ControllerThread.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 11
 Error
sizes LineLength Line is longer than 80 characters (found 92). 12
 Error
sizes LineLength Line is longer than 80 characters (found 88). 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 26
 Error
javadoc JavadocVariable Missing a Javadoc comment. 27
 Error
javadoc JavadocVariable Missing a Javadoc comment. 29
 Error
naming MemberName Name 'THREAD_SLEEP_TIME' must match pattern '^[a-z][a-zA-Z0-9]*$'. 29
 Error
javadoc JavadocVariable Missing a Javadoc comment. 31
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 Error
misc FinalParameters Parameter model should be final. 33
 Error
misc FinalParameters Parameter frame should be final. 33
 Error
coding HiddenField 'frame' hides a field. 33
 Error
design DesignForExtension Class 'ControllerThread' looks like designed for extension (can be subclassed), but the method 'run' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ControllerThread' final or making the method 'run' static/final/abstract/empty, or adding allowed annotation for the method. 39
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 45
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 45
 Error
blocks LeftCurly '{' at column 17 should have line break after. 48
 Error
blocks RightCurly '}' at column 45 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 48
 Error
design DesignForExtension Class 'ControllerThread' looks like designed for extension (can be subclassed), but the method 'exit' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ControllerThread' final or making the method 'exit' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 54

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/ApplicationModel.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 14
 Error
sizes LineLength Line is longer than 80 characters (found 92). 15
 Error
sizes LineLength Line is longer than 80 characters (found 88). 16
 Error
sizes LineLength Line is longer than 80 characters (found 87). 18
 Error
sizes LineLength Line is longer than 80 characters (found 90). 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 28
 Error
javadoc JavadocVariable Missing a Javadoc comment. 29
 Error
javadoc JavadocVariable Missing a Javadoc comment. 31
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error
misc FinalParameters Parameter config should be final. 34
 Error
coding HiddenField 'config' hides a field. 34
 Error
misc FinalParameters Parameter frame should be final. 34
 Error
coding HiddenField 'frame' hides a field. 34
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'click' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'click' static/final/abstract/empty, or adding allowed annotation for the method. 41
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error
misc FinalParameters Parameter c should be final. 41
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'step' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'step' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'zoomOut' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'zoomOut' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 52
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'getCellStatusFor' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'getCellStatusFor' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error
misc FinalParameters Parameter x should be final. 56
 Error
misc FinalParameters Parameter y should be final. 56
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'getWorldDimensions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'getWorldDimensions' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 60
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'getGaussianNumberPlane' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'getGaussianNumberPlane' static/final/abstract/empty, or adding allowed annotation for the method. 66
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 66
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'getFrame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'getFrame' static/final/abstract/empty, or adding allowed annotation for the method. 70
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 70
 Error
design DesignForExtension Class 'ApplicationModel' looks like designed for extension (can be subclassed), but the method 'getConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationModel' final or making the method 'getConfig' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 74

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/common/Point.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 10
 Error
sizes LineLength Line is longer than 80 characters (found 92). 11
 Error
sizes LineLength Line is longer than 80 characters (found 88). 12
 Error
sizes LineLength Line is longer than 80 characters (found 87). 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 24
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 27
 Error
misc FinalParameters Parameter p should be final. 27
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 32
 Error
misc FinalParameters Parameter x should be final. 32
 Error
coding HiddenField 'x' hides a field. 32
 Error
misc FinalParameters Parameter y should be final. 32
 Error
coding HiddenField 'y' hides a field. 32
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'moveUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'moveUp' static/final/abstract/empty, or adding allowed annotation for the method. 37
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'moveRight' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'moveRight' static/final/abstract/empty, or adding allowed annotation for the method. 41
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'moveDown' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'moveDown' static/final/abstract/empty, or adding allowed annotation for the method. 45
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'moveLeft' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'moveLeft' static/final/abstract/empty, or adding allowed annotation for the method. 49
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 49
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'getWidth' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'getWidth' static/final/abstract/empty, or adding allowed annotation for the method. 53
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 53
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 53
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'getHeight' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'getHeight' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error
blocks LeftCurly '{' at column 28 should have line break after. 56
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'getX' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'getX' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 58
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'setX' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'setX' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 62
 Error
misc FinalParameters Parameter x should be final. 62
 Error
coding HiddenField 'x' hides a field. 62
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'getY' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'getY' static/final/abstract/empty, or adding allowed annotation for the method. 66
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 66
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'setY' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'setY' static/final/abstract/empty, or adding allowed annotation for the method. 70
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 70
 Error
misc FinalParameters Parameter y should be final. 70
 Error
coding HiddenField 'y' hides a field. 70
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error
misc FinalParameters Parameter o should be final. 75
 Error
blocks NeedBraces 'if' construct must use '{}'s. 76
 Error
blocks NeedBraces 'if' construct must use '{}'s. 77
 Error
whitespace OperatorWrap '&&' should be on a new line. 79
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error
design DesignForExtension Class 'Point' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Point' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error
whitespace OperatorWrap '+' should be on a new line. 90
 Error
whitespace OperatorWrap '+' should be on a new line. 91
 Error
whitespace OperatorWrap '+' should be on a new line. 92

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/fractal/ComplexNumber.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 122). 10
 Error
sizes LineLength Line is longer than 80 characters (found 92). 11
 Error
sizes LineLength Line is longer than 80 characters (found 88). 12
 Error
sizes LineLength Line is longer than 80 characters (found 87). 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 23
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 24
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'getReal' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'getReal' static/final/abstract/empty, or adding allowed annotation for the method. 26
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 26
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'getImg' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'getImg' static/final/abstract/empty, or adding allowed annotation for the method. 30
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 30
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 37
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 37
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 38
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 38
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 39
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 39
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 42
 Error
misc FinalParameters Parameter complexNumber should be final. 42
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 45
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 45
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 46
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 46
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 47
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 47
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 50
 Error
misc FinalParameters Parameter real should be final. 50
 Error
coding HiddenField 'real' hides a field. 50
 Error
misc FinalParameters Parameter img should be final. 50
 Error
coding HiddenField 'img' hides a field. 50
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 53
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 53
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 54
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 54
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 55
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 55
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'plus' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'plus' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 58
 Error
misc FinalParameters Parameter complexNumber should be final. 58
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 58
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 61
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'square' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'square' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 64
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 64
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 65
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 65
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 66
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 66
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 67
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 67
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 67
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 67
 Error
whitespace WhitespaceAround '-' is not followed by whitespace. 67
 Error
whitespace WhitespaceAround '-' is not preceded with whitespace. 67
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 67
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 67
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 68
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 68
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 68
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 68
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 68
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 68
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 69
 Error
javadoc JavadocVariable Missing a Javadoc comment. 72
 Error
javadoc JavadocVariable Missing a Javadoc comment. 73
 Error
javadoc JavadocVariable Missing a Javadoc comment. 74
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'computeMandelbrotSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'computeMandelbrotSet' static/final/abstract/empty, or adding allowed annotation for the method. 76
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 76
 Error
whitespace WhitespaceAround '?' is not followed by whitespace. 84
 Error
whitespace WhitespaceAround '?' is not preceded with whitespace. 84
 Error
whitespace WhitespaceAround ':' is not followed by whitespace. 84
 Error
whitespace WhitespaceAround ':' is not preceded with whitespace. 84
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'computeJuliaSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'computeJuliaSet' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 88
 Error
misc FinalParameters Parameter c should be final. 88
 Error
whitespace WhitespaceAround '?' is not followed by whitespace. 96
 Error
whitespace WhitespaceAround '?' is not preceded with whitespace. 96
 Error
whitespace WhitespaceAround ':' is not followed by whitespace. 96
 Error
whitespace WhitespaceAround ':' is not preceded with whitespace. 96
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'isInMandelbrotSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'isInMandelbrotSet' static/final/abstract/empty, or adding allowed annotation for the method. 100
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 100
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'isInJuliaSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'isInJuliaSet' static/final/abstract/empty, or adding allowed annotation for the method. 104
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 104
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'isNotDivergent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'isNotDivergent' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 108
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 108
 Error
whitespace ParenPad '(' is followed by whitespace. 109
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 109
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 109
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 109
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 109
 Error
whitespace ParenPad ')' is preceded with whitespace. 109
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error
misc FinalParameters Parameter o should be final. 113
 Error
blocks NeedBraces 'if' construct must use '{}'s. 114
 Error
blocks NeedBraces 'if' construct must use '{}'s. 115
 Error
whitespace OperatorWrap '&&' should be on a new line. 117
 Error
whitespace OperatorWrap '&&' should be on a new line. 118
 Error
whitespace OperatorWrap '&&' should be on a new line. 119
 Error
whitespace OperatorWrap '&&' should be on a new line. 120
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 124
 Error
sizes LineLength Line is longer than 80 characters (found 98). 126
 Error
design DesignForExtension Class 'ComplexNumber' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ComplexNumber' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 129
 Error
whitespace OperatorWrap '+' should be on a new line. 131
 Error
whitespace OperatorWrap '+' should be on a new line. 132
 Error
whitespace OperatorWrap '+' should be on a new line. 133
 Error
whitespace OperatorWrap '+' should be on a new line. 134
 Error
whitespace OperatorWrap '+' should be on a new line. 135
 Error
whitespace OperatorWrap '+' should be on a new line. 136

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/fractal/GaussianNumberPlane.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 15
 Error
sizes LineLength Line is longer than 80 characters (found 92). 16
 Error
sizes LineLength Line is longer than 80 characters (found 88). 17
 Error
sizes LineLength Line is longer than 80 characters (found 81). 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 30
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
javadoc JavadocVariable Missing a Javadoc comment. 34
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 34
 Error
javadoc JavadocVariable Missing a Javadoc comment. 36
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 36
 Error
naming ConstantName Name 'complexWorldDimensionRealX' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 36
 Error
javadoc JavadocVariable Missing a Javadoc comment. 37
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 37
 Error
naming ConstantName Name 'complexWorldDimensionImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 37
 Error
javadoc JavadocVariable Missing a Javadoc comment. 38
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 38
 Error
naming ConstantName Name 'complexCenterForMandelbrotRealX' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 38
 Error
javadoc JavadocVariable Missing a Javadoc comment. 39
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 39
 Error
naming ConstantName Name 'complexCenterForMandelbrotImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 39
 Error
javadoc JavadocVariable Missing a Javadoc comment. 40
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 40
 Error
naming ConstantName Name 'complexCenterForJuliaRealX' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 40
 Error
javadoc JavadocVariable Missing a Javadoc comment. 41
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 41
 Error
naming ConstantName Name 'complexCenterForJuliaImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 41
 Error
javadoc JavadocVariable Missing a Javadoc comment. 43
 Error
javadoc JavadocVariable Missing a Javadoc comment. 44
 Error
javadoc JavadocVariable Missing a Javadoc comment. 45
 Error
javadoc JavadocVariable Missing a Javadoc comment. 47
 Error
design VisibilityModifier Variable 'zoomLevel' must be private and have accessor methods. 47
 Error
sizes LineLength Line is longer than 80 characters (found 96). 49
 Error
javadoc JavadocVariable Missing a Javadoc comment. 49
 Error
javadoc JavadocVariable Missing a Javadoc comment. 51
 Error
sizes LineLength Line is longer than 80 characters (found 87). 53
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 55
 Error
misc FinalParameters Parameter model should be final. 55
 Error
sizes LineLength Line is longer than 80 characters (found 88). 57
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'setModeZoom' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'setModeZoom' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 73
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'start' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'start' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 78
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 78
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 80
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 80
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 80
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 81
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 81
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 81
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 81
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'getCellStatusFor' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'getCellStatusFor' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 87
 Error
misc FinalParameters Parameter x should be final. 87
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 87
 Error
misc FinalParameters Parameter y should be final. 87
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 87
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 88
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 88
 Error
whitespace WhitespaceAround '?' is not followed by whitespace. 88
 Error
whitespace WhitespaceAround '?' is not preceded with whitespace. 88
 Error
whitespace WhitespaceAround ':' is not followed by whitespace. 88
 Error
whitespace WhitespaceAround ':' is not preceded with whitespace. 88
 Error
sizes LineLength Line is longer than 80 characters (found 104). 91
 Error
misc FinalParameters Parameter turingPosition should be final. 91
 Error
sizes LineLength Line is longer than 80 characters (found 94). 93
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 93
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 93
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 93
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 93
 Error
sizes LineLength Line is longer than 80 characters (found 93). 95
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 95
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 95
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 95
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 95
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 96
 Error
sizes LineLength Line is longer than 80 characters (found 109). 99
 Error
misc FinalParameters Parameter turingPosition should be final. 99
 Error
whitespace ParenPad '(' is followed by whitespace. 102
 Error
whitespace ParenPad ')' is preceded with whitespace. 102
 Error
whitespace ParenPad '(' is followed by whitespace. 107
 Error
whitespace ParenPad ')' is preceded with whitespace. 107
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 110
 Error
sizes LineLength Line is longer than 80 characters (found 115). 113
 Error
misc FinalParameters Parameter turingPosition should be final. 113
 Error
whitespace ParenPad '(' is followed by whitespace. 115
 Error
whitespace ParenPad ')' is preceded with whitespace. 115
 Error
whitespace ParenPad '(' is followed by whitespace. 117
 Error
whitespace ParenPad ')' is preceded with whitespace. 117
 Error
whitespace ParenPad '(' is followed by whitespace. 118
 Error
whitespace ParenPad ')' is preceded with whitespace. 118
 Error
whitespace ParenPad '(' is followed by whitespace. 121
 Error
whitespace ParenPad ')' is preceded with whitespace. 121
 Error
whitespace ParenPad '(' is followed by whitespace. 123
 Error
whitespace ParenPad ')' is preceded with whitespace. 123
 Error
whitespace ParenPad '(' is followed by whitespace. 124
 Error
whitespace ParenPad ')' is preceded with whitespace. 124
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 126
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'isInZooomedMandelbrotSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'isInZooomedMandelbrotSet' static/final/abstract/empty, or adding allowed annotation for the method. 129
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 129
 Error
misc FinalParameters Parameter turingPosition should be final. 129
 Error
sizes LineLength Line is longer than 80 characters (found 107). 130
 Error
sizes LineLength Line is longer than 80 characters (found 96). 131
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'isInMandelbrotSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'isInMandelbrotSet' static/final/abstract/empty, or adding allowed annotation for the method. 135
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 135
 Error
misc FinalParameters Parameter turingPosition should be final. 135
 Error
sizes LineLength Line is longer than 80 characters (found 101). 136
 Error
sizes LineLength Line is longer than 80 characters (found 96). 137
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'fillTheOutsideWithColors' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'fillTheOutsideWithColors' static/final/abstract/empty, or adding allowed annotation for the method. 141
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 141
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 141
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 142
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 142
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 142
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 142
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 142
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 142
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 142
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 142
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 143
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 143
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 143
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 143
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 143
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 143
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 143
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 143
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 144
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 144
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'zoomIntoTheMandelbrotSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'zoomIntoTheMandelbrotSet' static/final/abstract/empty, or adding allowed annotation for the method. 151
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 151
 Error
misc FinalParameters Parameter zoomPoint should be final. 151
 Error
sizes LineLength Line is longer than 80 characters (found 94). 152
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 154
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 154
 Error
sizes LineLength Line is longer than 80 characters (found 93). 155
 Error
sizes LineLength Line is longer than 80 characters (found 90). 157
 Error
sizes LineLength Line is longer than 80 characters (found 96). 159
 Error
sizes LineLength Line is longer than 80 characters (found 102). 163
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 164
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 164
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 165
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 165
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'zoomOutOfTheMandelbrotSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'zoomOutOfTheMandelbrotSet' static/final/abstract/empty, or adding allowed annotation for the method. 172
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 172
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 174
 Error
whitespace WhitespaceAround '>' is not followed by whitespace. 174
 Error
whitespace WhitespaceAround '>' is not preceded with whitespace. 174
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 174
 Error
sizes LineLength Line is longer than 80 characters (found 99). 178
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 179
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 179
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 180
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 180
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'getZoomLevel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'getZoomLevel' static/final/abstract/empty, or adding allowed annotation for the method. 187
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 187
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'inceaseZoomLevel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'inceaseZoomLevel' static/final/abstract/empty, or adding allowed annotation for the method. 191
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 191
 Error
coding InnerAssignment Inner assignments should be avoided. 192
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'deceaseZoomLevel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'deceaseZoomLevel' static/final/abstract/empty, or adding allowed annotation for the method. 195
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 195
 Error
coding InnerAssignment Inner assignments should be avoided. 196
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'setZoomLevel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'setZoomLevel' static/final/abstract/empty, or adding allowed annotation for the method. 199
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 199
 Error
misc FinalParameters Parameter zoomLevel should be final. 199
 Error
coding HiddenField 'zoomLevel' hides a field. 199
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'getZoomCenter' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'getZoomCenter' static/final/abstract/empty, or adding allowed annotation for the method. 203
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 203
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'setZoomCenter' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'GaussianNumberPlane' final or making the method 'setZoomCenter' static/final/abstract/empty, or adding allowed annotation for the method. 207
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 207
 Error
misc FinalParameters Parameter zoomCenter should be final. 207
 Error
coding HiddenField 'zoomCenter' hides a field. 207

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/MandelbrotTuringMachine.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 122). 11
 Error
sizes LineLength Line is longer than 80 characters (found 92). 12
 Error
sizes LineLength Line is longer than 80 characters (found 88). 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 25
 Error
javadoc JavadocVariable Missing a Javadoc comment. 26
 Error
javadoc JavadocVariable Missing a Javadoc comment. 27
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 29
 Error
misc FinalParameters Parameter model should be final. 29
 Error
design DesignForExtension Class 'MandelbrotTuringMachine' looks like designed for extension (can be subclassed), but the method 'start' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MandelbrotTuringMachine' final or making the method 'start' static/final/abstract/empty, or adding allowed annotation for the method. 36
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 Error
design DesignForExtension Class 'MandelbrotTuringMachine' looks like designed for extension (can be subclassed), but the method 'step' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MandelbrotTuringMachine' final or making the method 'step' static/final/abstract/empty, or adding allowed annotation for the method. 42
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 42
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 43
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 43
 Error
whitespace WhitespaceAfter 'switch' is not followed by whitespace. 44
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 44
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 47
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 47
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 57
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 57
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 63
 Error
sizes LineLength Line is longer than 80 characters (found 97). 64
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 64
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 64
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 72
 Error
sizes LineLength Line is longer than 80 characters (found 92). 73
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 73
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 73
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 79
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 79
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 84

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringDirection.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 122). 8
 Error
sizes LineLength Line is longer than 80 characters (found 92). 9
 Error
sizes LineLength Line is longer than 80 characters (found 88). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 17
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18
 Error
javadoc JavadocVariable Missing a Javadoc comment. 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringPhase.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 122). 8
 Error
sizes LineLength Line is longer than 80 characters (found 92). 9
 Error
sizes LineLength Line is longer than 80 characters (found 88). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 17
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18
 Error
javadoc JavadocVariable Missing a Javadoc comment. 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringPhaseState.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 122). 8
 Error
sizes LineLength Line is longer than 80 characters (found 92). 9
 Error
sizes LineLength Line is longer than 80 characters (found 88). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 20
 Error
design DesignForExtension Class 'TuringPhaseState' looks like designed for extension (can be subclassed), but the method 'start' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPhaseState' final or making the method 'start' static/final/abstract/empty, or adding allowed annotation for the method. 24
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 24
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 24
 Error
design DesignForExtension Class 'TuringPhaseState' looks like designed for extension (can be subclassed), but the method 'finishSearchTheSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPhaseState' final or making the method 'finishSearchTheSet' static/final/abstract/empty, or adding allowed annotation for the method. 28
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 28
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 28
 Error
design DesignForExtension Class 'TuringPhaseState' looks like designed for extension (can be subclassed), but the method 'finishWalkAround' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPhaseState' final or making the method 'finishWalkAround' static/final/abstract/empty, or adding allowed annotation for the method. 32
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 32
 Error
design DesignForExtension Class 'TuringPhaseState' looks like designed for extension (can be subclassed), but the method 'finishFillTheOutsideWithColors' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPhaseState' final or making the method 'finishFillTheOutsideWithColors' static/final/abstract/empty, or adding allowed annotation for the method. 36
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 Error
design DesignForExtension Class 'TuringPhaseState' looks like designed for extension (can be subclassed), but the method 'getTuringTuringPhase' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPhaseState' final or making the method 'getTuringTuringPhase' static/final/abstract/empty, or adding allowed annotation for the method. 40
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 40

org/woehlke/computer/kurzweil/mandelbrot/zoom/model/turing/TuringPositions.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
sizes LineLength Line is longer than 80 characters (found 122). 10
 Error
sizes LineLength Line is longer than 80 characters (found 92). 11
 Error
sizes LineLength Line is longer than 80 characters (found 88). 12
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
javadoc JavadocVariable Missing a Javadoc comment. 25
 Error
javadoc JavadocVariable Missing a Javadoc comment. 27
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 29
 Error
misc FinalParameters Parameter worldDimensions should be final. 29
 Error
coding HiddenField 'worldDimensions' hides a field. 29
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'start' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'start' static/final/abstract/empty, or adding allowed annotation for the method. 34
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error
sizes LineLength Line is longer than 80 characters (found 98). 36
 Error
whitespace WhitespaceAround '-' is not followed by whitespace. 36
 Error
whitespace WhitespaceAround '-' is not preceded with whitespace. 36
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 36
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 36
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 36
 Error
whitespace WhitespaceAround '+' is not followed by whitespace. 36
 Error
whitespace WhitespaceAround '+' is not preceded with whitespace. 36
 Error
coding MagicNumber '11' is a magic number. 36
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'markFirstSetPosition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'markFirstSetPosition' static/final/abstract/empty, or adding allowed annotation for the method. 40
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 40
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 40
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'getTuringPosition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'getTuringPosition' static/final/abstract/empty, or adding allowed annotation for the method. 45
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'goForward' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'goForward' static/final/abstract/empty, or adding allowed annotation for the method. 49
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 49
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 51
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'turnRight' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'turnRight' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 69
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 71
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'turnLeft' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'turnLeft' static/final/abstract/empty, or adding allowed annotation for the method. 81
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 81
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 83
 Error
design DesignForExtension Class 'TuringPositions' looks like designed for extension (can be subclassed), but the method 'isFinishedWalkAround' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TuringPositions' final or making the method 'isFinishedWalkAround' static/final/abstract/empty, or adding allowed annotation for the method. 93
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 93
 Error
sizes LineLength Line is longer than 80 characters (found 87). 94
 Error
whitespace WhitespaceAround '>' is not followed by whitespace. 94
 Error
whitespace WhitespaceAround '>' is not preceded with whitespace. 94
 Error
coding MagicNumber '100' is a magic number. 94

org/woehlke/computer/kurzweil/mandelbrot/zoom/view/ApplicationCanvas.java

Severity Category Rule Message Line
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - javax.swing.*. 5
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.*. 6
 Error
sizes LineLength Line is longer than 80 characters (found 122). 14
 Error
sizes LineLength Line is longer than 80 characters (found 92). 15
 Error
sizes LineLength Line is longer than 80 characters (found 88). 16
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 29
 Error
javadoc JavadocVariable Missing a Javadoc comment. 31
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error
misc FinalParameters Parameter app should be final. 34
 Error
coding HiddenField 'app' hides a field. 34
 Error
design DesignForExtension Class 'ApplicationCanvas' looks like designed for extension (can be subclassed), but the method 'paint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationCanvas' final or making the method 'paint' static/final/abstract/empty, or adding allowed annotation for the method. 43
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error
misc FinalParameters Parameter g should be final. 43
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 50
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 50
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 51
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 51
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 52
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 52
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 52
 Error
coding MagicNumber '4' is a magic number. 52
 Error
whitespace WhitespaceAround '%' is not followed by whitespace. 52
 Error
whitespace WhitespaceAround '%' is not preceded with whitespace. 52
 Error
coding MagicNumber '256' is a magic number. 52
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 55
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 55
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 55
 Error
design DesignForExtension Class 'ApplicationCanvas' looks like designed for extension (can be subclassed), but the method 'update' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationCanvas' final or making the method 'update' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 60
 Error
misc FinalParameters Parameter g should be final. 60

org/woehlke/computer/kurzweil/mandelbrot/zoom/view/ApplicationFrame.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - javax.swing.*. 11
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.*. 12
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.event.*. 13
 Error
sizes LineLength Line is longer than 80 characters (found 122). 22
 Error
sizes LineLength Line is longer than 80 characters (found 92). 23
 Error
sizes LineLength Line is longer than 80 characters (found 88). 24
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 47
 Error
javadoc JavadocVariable Missing a Javadoc comment. 49
 Error
javadoc JavadocVariable Missing a Javadoc comment. 50
 Error
javadoc JavadocVariable Missing a Javadoc comment. 51
 Error
javadoc JavadocVariable Missing a Javadoc comment. 53
 Error
javadoc JavadocVariable Missing a Javadoc comment. 54
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error
misc FinalParameters Parameter config should be final. 56
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 58
 Error
whitespace ParenPad '(' is followed by whitespace. 69
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'windowOpened' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'windowOpened' static/final/abstract/empty, or adding allowed annotation for the method. 75
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 Error
misc FinalParameters Parameter e should be final. 75
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'windowClosing' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'windowClosing' static/final/abstract/empty, or adding allowed annotation for the method. 79
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 79
 Error
misc FinalParameters Parameter e should be final. 79
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'windowClosed' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'windowClosed' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 83
 Error
misc FinalParameters Parameter e should be final. 83
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 87
 Error
misc FinalParameters Parameter e should be final. 87
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 87
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 87
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'windowDeiconified' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'windowDeiconified' static/final/abstract/empty, or adding allowed annotation for the method. 89
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 89
 Error
misc FinalParameters Parameter e should be final. 89
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'windowActivated' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'windowActivated' static/final/abstract/empty, or adding allowed annotation for the method. 93
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 93
 Error
misc FinalParameters Parameter e should be final. 93
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 97
 Error
misc FinalParameters Parameter e should be final. 97
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 97
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 97
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'mouseClicked' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'mouseClicked' static/final/abstract/empty, or adding allowed annotation for the method. 100
 Error
misc FinalParameters Parameter e should be final. 101
 Error
misc FinalParameters Parameter e should be final. 108
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 108
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 108
 Error
misc FinalParameters Parameter e should be final. 111
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 111
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 111
 Error
misc FinalParameters Parameter e should be final. 114
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 114
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 114
 Error
misc FinalParameters Parameter e should be final. 117
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 117
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 117
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'showMeInit' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'showMeInit' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 119
 Error
coding MagicNumber '180' is a magic number. 123
 Error
sizes LineLength Line is longer than 80 characters (found 84). 130
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'setModeSwitch' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'setModeSwitch' static/final/abstract/empty, or adding allowed annotation for the method. 152
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 152
 Error
design DesignForExtension Class 'ApplicationFrame' looks like designed for extension (can be subclassed), but the method 'getCanvas' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationFrame' final or making the method 'getCanvas' static/final/abstract/empty, or adding allowed annotation for the method. 156
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 156

org/woehlke/computer/kurzweil/mandelbrot/zoom/view/panels/PanelButtons.java

Severity Category Rule Message Line
 Error
javadoc JavadocPackage Missing package-info.java file. 1
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - javax.swing.*. 5
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.*. 6
 Error
sizes LineLength Line is longer than 80 characters (found 122). 16
 Error
sizes LineLength Line is longer than 80 characters (found 92). 17
 Error
sizes LineLength Line is longer than 80 characters (found 88). 18
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 29
 Error
javadoc JavadocVariable Missing a Javadoc comment. 31
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error
misc FinalParameters Parameter model should be final. 34
 Error
coding HiddenField 'model' hides a field. 34
 Error
misc FinalParameters Parameter ae should be final. 48
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 49
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 49

org/woehlke/computer/kurzweil/mandelbrot/zoom/view/panels/PanelSubtitle.java

Severity Category Rule Message Line
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - javax.swing.*. 3
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.*. 4
 Error
sizes LineLength Line is longer than 80 characters (found 122). 11
 Error
sizes LineLength Line is longer than 80 characters (found 92). 12
 Error
sizes LineLength Line is longer than 80 characters (found 88). 13
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 19
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 21
 Error
misc FinalParameters Parameter subtitle should be final. 21