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
22 0 0 738

Files

File
 I
 W
 E
org/woehlke/computer/kurzweil/mandelbrot/MandelbrotSetApplication.java 0 0 4
org/woehlke/computer/kurzweil/mandelbrot/config/Config.java 0 0 65
org/woehlke/computer/kurzweil/mandelbrot/config/ConfigProperties.java 0 0 29
org/woehlke/computer/kurzweil/mandelbrot/control/ControllerThread.java 0 0 19
org/woehlke/computer/kurzweil/mandelbrot/model/ApplicationModel.java 0 0 38
org/woehlke/computer/kurzweil/mandelbrot/model/fractal/ComplexNumber.java 0 0 110
org/woehlke/computer/kurzweil/mandelbrot/model/fractal/GaussianNumberPlane.java 0 0 182
org/woehlke/computer/kurzweil/mandelbrot/model/helper/Point.java 0 0 47
org/woehlke/computer/kurzweil/mandelbrot/model/state/ApplicationState.java 0 0 5
org/woehlke/computer/kurzweil/mandelbrot/model/state/ApplicationStateMachine.java 0 0 24
org/woehlke/computer/kurzweil/mandelbrot/model/turing/MandelbrotTuringMachine.java 0 0 29
org/woehlke/computer/kurzweil/mandelbrot/model/turing/TuringDirection.java 0 0 5
org/woehlke/computer/kurzweil/mandelbrot/model/turing/TuringPhase.java 0 0 5
org/woehlke/computer/kurzweil/mandelbrot/model/turing/TuringPhaseState.java 0 0 15
org/woehlke/computer/kurzweil/mandelbrot/model/turing/TuringPositions.java 0 0 41
org/woehlke/computer/kurzweil/mandelbrot/view/ApplicationCanvas.java 0 0 28
org/woehlke/computer/kurzweil/mandelbrot/view/ApplicationFrame.java 0 0 61
org/woehlke/computer/kurzweil/mandelbrot/view/PanelButtons.java 0 0 18
org/woehlke/computer/kurzweil/mandelbrot/view/PanelCopyright.java 0 0 5
org/woehlke/computer/kurzweil/mandelbrot/view/PanelSubtitle.java 0 0 5
org/woehlke/computer/kurzweil/mandelbrot/view/RradioButtons.java 0 0 3

Rules

Category Rule Violations Severity
blocks LeftCurly 2
 Error
NeedBraces 6
 Error
RightCurly 1
 Error
coding HiddenField 15
 Error
InnerAssignment 2
 Error
MagicNumber 5
 Error
MissingSwitchDefault 6
 Error
design DesignForExtension 96
 Error
FinalClass 1
 Error
InterfaceIsType 1
 Error
VisibilityModifier 1
 Error
imports AvoidStarImport 12
 Error
javadoc JavadocPackage 9
 Error
JavadocVariable 99
 Error
MissingJavadocMethod 107
 Error
misc FinalParameters 58
 Error
modifier ModifierOrder 9
 Error
naming ConstantName 6
 Error
MemberName 1
 Error
sizes LineLength
  • fileExtensions: "java"
54
 Error
whitespace OperatorWrap 32
 Error
ParenPad 19
 Error
WhitespaceAfter 47
 Error
WhitespaceAround 149
 Error

Details

org/woehlke/computer/kurzweil/mandelbrot/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 90). 10
 Error
design FinalClass Class MandelbrotSetApplication should be declared as final. 13
 Error
misc FinalParameters Parameter args should be final. 24

org/woehlke/computer/kurzweil/mandelbrot/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 90). 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 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. 29
 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 MissingJavadocMethod Missing a Javadoc comment. 34
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 45
 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. 52
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 53
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 54
 Error
sizes LineLength Line is longer than 80 characters (found 83). 55
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 55
 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. 61
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 61
 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. 65
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 65
 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. 69
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 69
 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. 73
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 73
 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. 77
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 77
 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. 81
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 81
 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. 85
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 85
 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. 89
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 89
 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. 93
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 93
 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. 97
 Error
misc FinalParameters Parameter o should be final. 98
 Error
blocks NeedBraces 'if' construct must use '{}'s. 99
 Error
blocks NeedBraces 'if' construct must use '{}'s. 100
 Error
whitespace OperatorWrap '&&' should be on a new line. 102
 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
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. 113
 Error
sizes LineLength Line is longer than 80 characters (found 174). 115
 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. 118
 Error
whitespace OperatorWrap '+' should be on a new line. 120
 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

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

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 9
 Error
design InterfaceIsType interfaces should describe a type and hence have methods. 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16
 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
whitespace WhitespaceAround '=' is not followed by whitespace. 19
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
javadoc JavadocVariable Missing a Javadoc comment. 25
 Error
javadoc JavadocVariable Missing a Javadoc comment. 27
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 27
 Error
sizes LineLength Line is longer than 80 characters (found 82). 28
 Error
whitespace WhitespaceAround '+' is not followed by whitespace. 28
 Error
javadoc JavadocVariable Missing a Javadoc comment. 30
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
javadoc JavadocVariable Missing a Javadoc comment. 33
 Error
javadoc JavadocVariable Missing a Javadoc comment. 34
 Error
javadoc JavadocVariable Missing a Javadoc comment. 35
 Error
javadoc JavadocVariable Missing a Javadoc comment. 36
 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. 41

org/woehlke/computer/kurzweil/mandelbrot/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 90). 12
 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
naming MemberName Name 'THREAD_SLEEP_TIME' must match pattern '^[a-z][a-zA-Z0-9]*$'. 25
 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
misc FinalParameters Parameter frame should be final. 29
 Error
coding HiddenField 'frame' hides a field. 29
 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. 35
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 41
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 41
 Error
blocks LeftCurly '{' at column 17 should have line break after. 44
 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). 44
 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. 50
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 50

org/woehlke/computer/kurzweil/mandelbrot/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 90). 16
 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. 29
 Error
javadoc JavadocVariable Missing a Javadoc comment. 30
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 32
 Error
misc FinalParameters Parameter config should be final. 32
 Error
coding HiddenField 'config' hides a field. 32
 Error
misc FinalParameters Parameter frame should be final. 32
 Error
coding HiddenField 'frame' hides a field. 32
 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. 40
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 40
 Error
misc FinalParameters Parameter c should be final. 40
 Error
coding MissingSwitchDefault switch without "default" clause. 43
 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. 61
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 61
 Error
coding MissingSwitchDefault switch without "default" clause. 63
 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. 75
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 Error
misc FinalParameters Parameter x should be final. 75
 Error
misc FinalParameters Parameter y should be final. 75
 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. 79
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 79
 Error
design DesignForExtension Class 'ApplicationModel' 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 'ApplicationModel' final or making the method 'setModeSwitch' static/final/abstract/empty, or adding allowed annotation for the method. 85
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 85
 Error
design DesignForExtension Class 'ApplicationModel' 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 'ApplicationModel' final or making the method 'setModeZoom' static/final/abstract/empty, or adding allowed annotation for the method. 90
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 90
 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. 96
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 96
 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. 100
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 100
 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. 104
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 104
 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. 108
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 108
 Error
coding MissingSwitchDefault switch without "default" clause. 109

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

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 22
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 23
 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. 25
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 25
 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. 29
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 29
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 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. 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
javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error
misc FinalParameters Parameter complexNumber should be final. 41
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 44
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 44
 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
javadoc MissingJavadocMethod Missing a Javadoc comment. 49
 Error
misc FinalParameters Parameter real should be final. 49
 Error
coding HiddenField 'real' hides a field. 49
 Error
misc FinalParameters Parameter img should be final. 49
 Error
coding HiddenField 'img' hides a field. 49
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 52
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 52
 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
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. 57
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 Error
misc FinalParameters Parameter complexNumber should be final. 57
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 57
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 60
 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. 63
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 63
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 63
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 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. 66
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 66
 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. 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 WhitespaceAfter ',' is not followed by whitespace. 68
 Error
javadoc JavadocVariable Missing a Javadoc comment. 71
 Error
javadoc JavadocVariable Missing a Javadoc comment. 72
 Error
javadoc JavadocVariable Missing a Javadoc comment. 73
 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. 75
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 Error
whitespace WhitespaceAround '?' is not followed by whitespace. 83
 Error
whitespace WhitespaceAround '?' is not preceded with whitespace. 83
 Error
whitespace WhitespaceAround ':' is not followed by whitespace. 83
 Error
whitespace WhitespaceAround ':' is not preceded with whitespace. 83
 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. 87
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 87
 Error
misc FinalParameters Parameter c should be final. 87
 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
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. 99
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 99
 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. 103
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 103
 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. 107
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 107
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 107
 Error
whitespace ParenPad '(' is followed by whitespace. 108
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 108
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 108
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 108
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 108
 Error
whitespace ParenPad ')' is preceded with whitespace. 108
 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. 111
 Error
misc FinalParameters Parameter o should be final. 112
 Error
blocks NeedBraces 'if' construct must use '{}'s. 113
 Error
blocks NeedBraces 'if' construct must use '{}'s. 114
 Error
whitespace OperatorWrap '&&' should be on a new line. 116
 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
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. 123
 Error
sizes LineLength Line is longer than 80 characters (found 98). 125
 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. 128
 Error
whitespace OperatorWrap '+' should be on a new line. 130
 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

org/woehlke/computer/kurzweil/mandelbrot/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 90). 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
javadoc JavadocVariable Missing a Javadoc comment. 26
 Error
javadoc JavadocVariable Missing a Javadoc comment. 28
 Error
javadoc JavadocVariable Missing a Javadoc comment. 30
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 30
 Error
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 32
 Error
naming ConstantName Name 'complexWorldDimensionRealX' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 32
 Error
javadoc JavadocVariable Missing a Javadoc comment. 33
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 33
 Error
naming ConstantName Name 'complexWorldDimensionImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 33
 Error
javadoc JavadocVariable Missing a Javadoc comment. 34
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 34
 Error
naming ConstantName Name 'complexCenterForMandelbrotRealX' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 34
 Error
javadoc JavadocVariable Missing a Javadoc comment. 35
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 35
 Error
naming ConstantName Name 'complexCenterForMandelbrotImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 35
 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 'complexCenterForJuliaRealX' 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 'complexCenterForJuliaImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 37
 Error
javadoc JavadocVariable Missing a Javadoc comment. 39
 Error
javadoc JavadocVariable Missing a Javadoc comment. 40
 Error
javadoc JavadocVariable Missing a Javadoc comment. 41
 Error
javadoc JavadocVariable Missing a Javadoc comment. 43
 Error
design VisibilityModifier Variable 'zoomLevel' must be private and have accessor methods. 43
 Error
sizes LineLength Line is longer than 80 characters (found 96). 45
 Error
javadoc JavadocVariable Missing a Javadoc comment. 45
 Error
javadoc JavadocVariable Missing a Javadoc comment. 47
 Error
sizes LineLength Line is longer than 80 characters (found 87). 50
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 52
 Error
misc FinalParameters Parameter model should be final. 52
 Error
sizes LineLength Line is longer than 80 characters (found 88). 54
 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. 70
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 70
 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. 75
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 75
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 77
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 77
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 77
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 78
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 78
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 78
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 78
 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. 84
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 84
 Error
misc FinalParameters Parameter x should be final. 84
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 84
 Error
misc FinalParameters Parameter y should be final. 84
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 84
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 85
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 85
 Error
whitespace WhitespaceAround '?' is not followed by whitespace. 85
 Error
whitespace WhitespaceAround '?' is not preceded with whitespace. 85
 Error
whitespace WhitespaceAround ':' is not followed by whitespace. 85
 Error
whitespace WhitespaceAround ':' is not preceded with whitespace. 85
 Error
sizes LineLength Line is longer than 80 characters (found 104). 88
 Error
misc FinalParameters Parameter turingPosition should be final. 88
 Error
sizes LineLength Line is longer than 80 characters (found 94). 90
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 90
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 90
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 90
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 90
 Error
sizes LineLength Line is longer than 80 characters (found 93). 92
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 92
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 92
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 92
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 92
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 93
 Error
sizes LineLength Line is longer than 80 characters (found 109). 96
 Error
misc FinalParameters Parameter turingPosition should be final. 96
 Error
whitespace ParenPad '(' is followed by whitespace. 99
 Error
whitespace ParenPad ')' is preceded with whitespace. 99
 Error
whitespace ParenPad '(' is followed by whitespace. 104
 Error
whitespace ParenPad ')' is preceded with whitespace. 104
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 107
 Error
sizes LineLength Line is longer than 80 characters (found 115). 110
 Error
misc FinalParameters Parameter turingPosition should be final. 110
 Error
whitespace ParenPad '(' is followed by whitespace. 112
 Error
whitespace ParenPad ')' is preceded with whitespace. 112
 Error
whitespace ParenPad '(' is followed by whitespace. 114
 Error
whitespace ParenPad ')' is preceded with whitespace. 114
 Error
whitespace ParenPad '(' is followed by whitespace. 115
 Error
whitespace ParenPad ')' is preceded with whitespace. 115
 Error
whitespace ParenPad '(' is followed by whitespace. 118
 Error
whitespace ParenPad ')' is preceded with whitespace. 118
 Error
whitespace ParenPad '(' is followed by whitespace. 120
 Error
whitespace ParenPad ')' is preceded with whitespace. 120
 Error
whitespace ParenPad '(' is followed by whitespace. 121
 Error
whitespace ParenPad ')' is preceded with whitespace. 121
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 123
 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. 126
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 126
 Error
misc FinalParameters Parameter turingPosition should be final. 126
 Error
sizes LineLength Line is longer than 80 characters (found 107). 127
 Error
sizes LineLength Line is longer than 80 characters (found 96). 128
 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. 132
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 132
 Error
misc FinalParameters Parameter turingPosition should be final. 132
 Error
sizes LineLength Line is longer than 80 characters (found 101). 133
 Error
sizes LineLength Line is longer than 80 characters (found 96). 134
 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. 138
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 138
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 138
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 139
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 139
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 139
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 139
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 139
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 139
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 139
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 139
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 140
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 140
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 140
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 140
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 140
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 140
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 140
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 140
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 141
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 141
 Error
misc FinalParameters Parameter c should be final. 148
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 149
 Error
sizes LineLength Line is longer than 80 characters (found 89). 152
 Error
sizes LineLength Line is longer than 80 characters (found 82). 158
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'computeTheJuliaSetFor' 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 'computeTheJuliaSetFor' static/final/abstract/empty, or adding allowed annotation for the method. 158
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 158
 Error
misc FinalParameters Parameter pointFromMandelbrotSet should be final. 158
 Error
sizes LineLength Line is longer than 80 characters (found 97). 159
 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. 164
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 164
 Error
misc FinalParameters Parameter zoomPoint should be final. 164
 Error
sizes LineLength Line is longer than 80 characters (found 94). 165
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 167
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 167
 Error
sizes LineLength Line is longer than 80 characters (found 93). 168
 Error
sizes LineLength Line is longer than 80 characters (found 90). 170
 Error
sizes LineLength Line is longer than 80 characters (found 96). 172
 Error
sizes LineLength Line is longer than 80 characters (found 102). 176
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 177
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 177
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 178
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 178
 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. 185
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 185
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 187
 Error
whitespace WhitespaceAround '>' is not followed by whitespace. 187
 Error
whitespace WhitespaceAround '>' is not preceded with whitespace. 187
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 187
 Error
sizes LineLength Line is longer than 80 characters (found 99). 191
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 192
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 192
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 193
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 193
 Error
design DesignForExtension Class 'GaussianNumberPlane' looks like designed for extension (can be subclassed), but the method 'zoomIntoTheJuliaSetFor' 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 'zoomIntoTheJuliaSetFor' static/final/abstract/empty, or adding allowed annotation for the method. 200
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 200
 Error
misc FinalParameters Parameter zoomPoint should be final. 200
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 205
 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. 208
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 208
 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. 212
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 212
 Error
coding InnerAssignment Inner assignments should be avoided. 213
 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. 216
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 216
 Error
coding InnerAssignment Inner assignments should be avoided. 217
 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. 220
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 220
 Error
misc FinalParameters Parameter zoomLevel should be final. 220
 Error
coding HiddenField 'zoomLevel' hides a field. 220
 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. 224
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 224
 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. 228
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 228
 Error
misc FinalParameters Parameter zoomCenter should be final. 228
 Error
coding HiddenField 'zoomCenter' hides a field. 228

org/woehlke/computer/kurzweil/mandelbrot/model/helper/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 90). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 23
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 26
 Error
misc FinalParameters Parameter p should be final. 26
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 31
 Error
misc FinalParameters Parameter x should be final. 31
 Error
coding HiddenField 'x' hides a field. 31
 Error
misc FinalParameters Parameter y should be final. 31
 Error
coding HiddenField 'y' hides a field. 31
 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. 36
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 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. 40
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 40
 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. 44
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 44
 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. 48
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 48
 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. 52
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 52
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 52
 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. 55
 Error
blocks LeftCurly '{' at column 28 should have line break after. 55
 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. 57
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 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. 61
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 61
 Error
misc FinalParameters Parameter x should be final. 61
 Error
coding HiddenField 'x' hides a field. 61
 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. 65
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 65
 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. 69
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 69
 Error
misc FinalParameters Parameter y should be final. 69
 Error
coding HiddenField 'y' hides a field. 69
 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. 73
 Error
misc FinalParameters Parameter o should be final. 74
 Error
blocks NeedBraces 'if' construct must use '{}'s. 75
 Error
blocks NeedBraces 'if' construct must use '{}'s. 76
 Error
whitespace OperatorWrap '&&' should be on a new line. 78
 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. 82
 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. 87
 Error
whitespace OperatorWrap '+' should be on a new line. 89
 Error
whitespace OperatorWrap '+' should be on a new line. 90
 Error
whitespace OperatorWrap '+' should be on a new line. 91

org/woehlke/computer/kurzweil/mandelbrot/model/state/ApplicationState.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 7
 Error
javadoc JavadocVariable Missing a Javadoc comment. 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16

org/woehlke/computer/kurzweil/mandelbrot/model/state/ApplicationStateMachine.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 - org.woehlke.computer.kurzweil.mandelbrot.model.state.ApplicationState.*. 5
 Error
sizes LineLength Line is longer than 80 characters (found 90). 12
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 23
 Error
design DesignForExtension Class 'ApplicationStateMachine' 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 'ApplicationStateMachine' final or making the method 'click' static/final/abstract/empty, or adding allowed annotation for the method. 27
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 27
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 27
 Error
coding MissingSwitchDefault switch without "default" clause. 29
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 29
 Error
design DesignForExtension Class 'ApplicationStateMachine' 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 'ApplicationStateMachine' final or making the method 'setModeSwitch' static/final/abstract/empty, or adding allowed annotation for the method. 46
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 46
 Error
coding MissingSwitchDefault switch without "default" clause. 48
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 48
 Error
design DesignForExtension Class 'ApplicationStateMachine' 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 'ApplicationStateMachine' final or making the method 'setModeZoom' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 62
 Error
coding MissingSwitchDefault switch without "default" clause. 64
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 64
 Error
design DesignForExtension Class 'ApplicationStateMachine' looks like designed for extension (can be subclassed), but the method 'getApplicationState' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationStateMachine' final or making the method 'getApplicationState' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 78
 Error
design DesignForExtension Class 'ApplicationStateMachine' looks like designed for extension (can be subclassed), but the method 'setApplicationState' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationStateMachine' final or making the method 'setApplicationState' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 82
 Error
misc FinalParameters Parameter applicationState should be final. 82
 Error
coding HiddenField 'applicationState' hides a field. 82

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

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 12
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 26
 Error
misc FinalParameters Parameter model should be final. 26
 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. 33
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 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. 39
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 40
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 40
 Error
whitespace WhitespaceAfter 'switch' is not followed by whitespace. 41
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 41
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 44
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 44
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 54
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 54
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 60
 Error
sizes LineLength Line is longer than 80 characters (found 97). 61
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 61
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 61
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 69
 Error
sizes LineLength Line is longer than 80 characters (found 92). 70
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 70
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 70
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 76
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 76
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 81

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

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 7
 Error
javadoc JavadocVariable Missing a Javadoc comment. 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16

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

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 7
 Error
javadoc JavadocVariable Missing a Javadoc comment. 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 14
 Error
javadoc JavadocVariable Missing a Javadoc comment. 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16

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

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 9
 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/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 90). 11
 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. 24
 Error
javadoc JavadocVariable Missing a Javadoc comment. 26
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 28
 Error
misc FinalParameters Parameter worldDimensions should be final. 28
 Error
coding HiddenField 'worldDimensions' hides a field. 28
 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. 33
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 Error
sizes LineLength Line is longer than 80 characters (found 98). 35
 Error
whitespace WhitespaceAround '-' is not followed by whitespace. 35
 Error
whitespace WhitespaceAround '-' is not preceded with whitespace. 35
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 35
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 35
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 35
 Error
whitespace WhitespaceAround '+' is not followed by whitespace. 35
 Error
whitespace WhitespaceAround '+' is not preceded with whitespace. 35
 Error
coding MagicNumber '11' is a magic number. 35
 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. 39
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 39
 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. 44
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 44
 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. 48
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 48
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 50
 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. 68
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 70
 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. 80
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 80
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 82
 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. 92
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 92
 Error
sizes LineLength Line is longer than 80 characters (found 87). 93
 Error
whitespace WhitespaceAround '>' is not followed by whitespace. 93
 Error
whitespace WhitespaceAround '>' is not preceded with whitespace. 93
 Error
coding MagicNumber '100' is a magic number. 93

org/woehlke/computer/kurzweil/mandelbrot/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 90). 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 23
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 26
 Error
misc FinalParameters Parameter app should be final. 26
 Error
coding HiddenField 'app' hides a field. 26
 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. 35
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 Error
misc FinalParameters Parameter g should be final. 35
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 42
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 42
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 43
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 43
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 44
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 44
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 44
 Error
coding MagicNumber '4' is a magic number. 44
 Error
whitespace WhitespaceAround '%' is not followed by whitespace. 44
 Error
whitespace WhitespaceAround '%' is not preceded with whitespace. 44
 Error
coding MagicNumber '256' is a magic number. 44
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 47
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 47
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 47
 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. 52
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 52
 Error
misc FinalParameters Parameter g should be final. 52

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

Severity Category Rule Message Line
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - javax.swing.*. 9
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.*. 10
 Error
imports AvoidStarImport Using the '.*' form of import should be avoided - java.awt.event.*. 11
 Error
sizes LineLength Line is longer than 80 characters (found 90). 17
 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 JavadocVariable Missing a Javadoc comment. 34
 Error
javadoc JavadocVariable Missing a Javadoc comment. 35
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 Error
misc FinalParameters Parameter config should be final. 37
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 39
 Error
sizes LineLength Line is longer than 80 characters (found 82). 45
 Error
whitespace ParenPad '(' is followed by whitespace. 54
 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. 60
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 60
 Error
misc FinalParameters Parameter e should be final. 60
 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. 64
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 64
 Error
misc FinalParameters Parameter e should be final. 64
 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. 68
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error
misc FinalParameters Parameter e should be final. 68
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 72
 Error
misc FinalParameters Parameter e should be final. 72
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 72
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 72
 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. 74
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 74
 Error
misc FinalParameters Parameter e should be final. 74
 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. 78
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 78
 Error
misc FinalParameters Parameter e should be final. 78
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 82
 Error
misc FinalParameters Parameter e should be final. 82
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 82
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 82
 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. 85
 Error
misc FinalParameters Parameter e should be final. 86
 Error
misc FinalParameters Parameter e should be final. 93
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 93
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 93
 Error
misc FinalParameters Parameter e should be final. 96
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 96
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 96
 Error
misc FinalParameters Parameter e should be final. 99
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 99
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 99
 Error
misc FinalParameters Parameter e should be final. 102
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 102
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 102
 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. 104
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 104
 Error
coding MagicNumber '180' is a magic number. 108
 Error
sizes LineLength Line is longer than 80 characters (found 84). 115
 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. 137
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 137
 Error
design DesignForExtension Class 'ApplicationFrame' 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 'ApplicationFrame' final or making the method 'setModeZoom' static/final/abstract/empty, or adding allowed annotation for the method. 141
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 141
 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. 145
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 145

org/woehlke/computer/kurzweil/mandelbrot/view/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 90). 18
 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. 30
 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
coding HiddenField 'model' hides a field. 33
 Error
sizes LineLength Line is longer than 80 characters (found 89). 36
 Error
sizes LineLength Line is longer than 80 characters (found 85). 40
 Error
misc FinalParameters Parameter ae should be final. 60
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 63
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 65
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 65

org/woehlke/computer/kurzweil/mandelbrot/view/PanelCopyright.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 90). 10
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 19
 Error
misc FinalParameters Parameter subtitle should be final. 19

org/woehlke/computer/kurzweil/mandelbrot/view/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 90). 10
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 19
 Error
misc FinalParameters Parameter subtitle should be final. 19

org/woehlke/computer/kurzweil/mandelbrot/view/RradioButtons.java

Severity Category Rule Message Line
 Error
sizes LineLength Line is longer than 80 characters (found 90). 7
 Error
javadoc JavadocVariable Missing a Javadoc comment. 13
 Error
javadoc JavadocVariable Missing a Javadoc comment. 14