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
20 0 0 705

Files

File
 I
 W
 E
org/woehlke/computer/kurzweil/mandelbrot/julia/MandelbrotSetApplication.java 0 0 6
org/woehlke/computer/kurzweil/mandelbrot/julia/config/Config.java 0 0 42
org/woehlke/computer/kurzweil/mandelbrot/julia/config/ConfigProperties.java 0 0 23
org/woehlke/computer/kurzweil/mandelbrot/julia/control/ControllerThread.java 0 0 21
org/woehlke/computer/kurzweil/mandelbrot/julia/model/ApplicationModel.java 0 0 29
org/woehlke/computer/kurzweil/mandelbrot/julia/model/common/Point.java 0 0 49
org/woehlke/computer/kurzweil/mandelbrot/julia/model/fractal/ComplexNumber.java 0 0 112
org/woehlke/computer/kurzweil/mandelbrot/julia/model/fractal/GaussianNumberPlane.java 0 0 184
org/woehlke/computer/kurzweil/mandelbrot/julia/model/turing/MandelbrotTuringMachine.java 0 0 31
org/woehlke/computer/kurzweil/mandelbrot/julia/model/turing/TuringDirection.java 0 0 7
org/woehlke/computer/kurzweil/mandelbrot/julia/model/turing/TuringPhase.java 0 0 7
org/woehlke/computer/kurzweil/mandelbrot/julia/model/turing/TuringPhaseState.java 0 0 17
org/woehlke/computer/kurzweil/mandelbrot/julia/model/turing/TuringPositions.java 0 0 43
org/woehlke/computer/kurzweil/mandelbrot/julia/view/ApplicationCanvas.java 0 0 31
org/woehlke/computer/kurzweil/mandelbrot/julia/view/ApplicationFrame.java 0 0 63
org/woehlke/computer/kurzweil/mandelbrot/julia/view/labels/PanelCopyright.java 0 0 9
org/woehlke/computer/kurzweil/mandelbrot/julia/view/labels/PanelSubtitle.java 0 0 8
org/woehlke/computer/kurzweil/mandelbrot/julia/view/state/ApplicationState.java 0 0 5
org/woehlke/computer/kurzweil/mandelbrot/julia/view/state/ApplicationStateMachine.java 0 0 18

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
MissingSwitchDefault 3
 Error
design DesignForExtension 83
 Error
FinalClass 1
 Error
InterfaceIsType 1
 Error
VisibilityModifier 1
 Error
imports AvoidStarImport 10
 Error
javadoc JavadocPackage 10
 Error
JavadocStyle 1
 Error
JavadocVariable 78
 Error
MissingJavadocMethod 93
 Error
misc FinalParameters 56
 Error
modifier ModifierOrder 13
 Error
naming ConstantName 6
 Error
MemberName 1
 Error
sizes LineLength
  • fileExtensions: "java"
88
 Error
whitespace OperatorWrap 24
 Error
ParenPad 19
 Error
WhitespaceAfter 41
 Error
WhitespaceAround 146
 Error

Details

org/woehlke/computer/kurzweil/mandelbrot/julia/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). 15
 Error
sizes LineLength Line is longer than 80 characters (found 93). 16
 Error
sizes LineLength Line is longer than 80 characters (found 89). 17
 Error
design FinalClass Class MandelbrotSetApplication should be declared as final. 19
 Error
misc FinalParameters Parameter args should be final. 30

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 15
 Error
sizes LineLength Line is longer than 80 characters (found 89). 16
 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. 26
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 28
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 39
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 40
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 41
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 42
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 43
 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. 51
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 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. 55
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 55
 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. 59
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 59
 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. 63
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 63
 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. 67
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 67
 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. 71
 Error
misc FinalParameters Parameter o should be final. 72
 Error
blocks NeedBraces 'if' construct must use '{}'s. 73
 Error
blocks NeedBraces 'if' construct must use '{}'s. 74
 Error
whitespace OperatorWrap '&&' should be on a new line. 76
 Error
whitespace OperatorWrap '&&' should be on a new line. 77
 Error
whitespace OperatorWrap '&&' should be on a new line. 78
 Error
whitespace OperatorWrap '&&' should be on a new line. 79
 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. 83
 Error
sizes LineLength Line is longer than 80 characters (found 96). 85
 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. 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
 Error
whitespace OperatorWrap '+' should be on a new line. 93
 Error
whitespace OperatorWrap '+' should be on a new line. 94
 Error
whitespace OperatorWrap '+' should be on a new line. 95

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 11
 Error
sizes LineLength Line is longer than 80 characters (found 89). 12
 Error
design InterfaceIsType interfaces should describe a type and hence have methods. 16
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18
 Error
javadoc JavadocVariable Missing a Javadoc comment. 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
javadoc JavadocVariable Missing a Javadoc comment. 21
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 21
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 21
 Error
javadoc JavadocVariable Missing a Javadoc comment. 22
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 22
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 22
 Error
javadoc JavadocVariable Missing a Javadoc comment. 24
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 24
 Error
sizes LineLength Line is longer than 80 characters (found 82). 25
 Error
whitespace WhitespaceAround '+' is not followed by whitespace. 25
 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 JavadocVariable Missing a Javadoc comment. 33

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 12
 Error
sizes LineLength Line is longer than 80 characters (found 89). 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/julia/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). 15
 Error
sizes LineLength Line is longer than 80 characters (found 93). 16
 Error
sizes LineLength Line is longer than 80 characters (found 89). 17
 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. 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
coding HiddenField 'config' hides a field. 37
 Error
misc FinalParameters Parameter frame should be final. 37
 Error
coding HiddenField 'frame' hides a field. 37
 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. 45
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error
misc FinalParameters Parameter c should be final. 45
 Error
coding MissingSwitchDefault switch without "default" clause. 48
 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. 60
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 60
 Error
coding MissingSwitchDefault switch without "default" clause. 62
 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. 72
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 72
 Error
misc FinalParameters Parameter x should be final. 72
 Error
misc FinalParameters Parameter y should be final. 72
 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. 76
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 76
 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. 82
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 82

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 11
 Error
sizes LineLength Line is longer than 80 characters (found 89). 12
 Error
javadoc JavadocVariable Missing a Javadoc comment. 19
 Error
javadoc JavadocVariable Missing a Javadoc comment. 20
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 22
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 25
 Error
misc FinalParameters Parameter p should be final. 25
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 30
 Error
misc FinalParameters Parameter x should be final. 30
 Error
coding HiddenField 'x' hides a field. 30
 Error
misc FinalParameters Parameter y should be final. 30
 Error
coding HiddenField 'y' hides a field. 30
 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. 35
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 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. 39
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 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. 43
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 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. 47
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 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. 51
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 51
 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. 54
 Error
blocks LeftCurly '{' at column 28 should have line break after. 54
 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. 56
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 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. 60
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 60
 Error
misc FinalParameters Parameter x should be final. 60
 Error
coding HiddenField 'x' hides a field. 60
 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. 64
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 64
 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. 68
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error
misc FinalParameters Parameter y should be final. 68
 Error
coding HiddenField 'y' hides a field. 68
 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. 72
 Error
misc FinalParameters Parameter o should be final. 73
 Error
blocks NeedBraces 'if' construct must use '{}'s. 74
 Error
blocks NeedBraces 'if' construct must use '{}'s. 75
 Error
whitespace OperatorWrap '&&' should be on a new line. 77
 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. 81
 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. 86
 Error
whitespace OperatorWrap '+' should be on a new line. 88
 Error
whitespace OperatorWrap '+' should be on a new line. 89
 Error
whitespace OperatorWrap '+' should be on a new line. 90

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 11
 Error
sizes LineLength Line is longer than 80 characters (found 89). 12
 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/julia/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 93). 16
 Error
sizes LineLength Line is longer than 80 characters (found 89). 17
 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
javadoc JavadocVariable Missing a Javadoc comment. 32
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 32
 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 'complexWorldDimensionRealX' 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 'complexWorldDimensionImgY' 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 'complexCenterForMandelbrotRealX' 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 'complexCenterForMandelbrotImgY' 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 'complexCenterForJuliaRealX' 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 'complexCenterForJuliaImgY' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 39
 Error
javadoc JavadocVariable Missing a Javadoc comment. 41
 Error
javadoc JavadocVariable Missing a Javadoc comment. 42
 Error
javadoc JavadocVariable Missing a Javadoc comment. 43
 Error
javadoc JavadocVariable Missing a Javadoc comment. 45
 Error
design VisibilityModifier Variable 'zoomLevel' must be private and have accessor methods. 46
 Error
javadoc JavadocVariable Missing a Javadoc comment. 48
 Error
sizes LineLength Line is longer than 80 characters (found 96). 49
 Error
javadoc JavadocVariable Missing a Javadoc comment. 51
 Error
sizes LineLength Line is longer than 80 characters (found 87). 55
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 Error
misc FinalParameters Parameter model should be final. 57
 Error
sizes LineLength Line is longer than 80 characters (found 88). 59
 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. 75
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 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. 81
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 81
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 81
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 83
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 83
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 83
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 84
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 84
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 84
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 84
 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. 90
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 90
 Error
misc FinalParameters Parameter x should be final. 90
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 90
 Error
misc FinalParameters Parameter y should be final. 90
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 90
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 91
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 91
 Error
whitespace WhitespaceAround '?' is not followed by whitespace. 91
 Error
whitespace WhitespaceAround '?' is not preceded with whitespace. 91
 Error
whitespace WhitespaceAround ':' is not followed by whitespace. 91
 Error
whitespace WhitespaceAround ':' is not preceded with whitespace. 91
 Error
sizes LineLength Line is longer than 80 characters (found 104). 94
 Error
misc FinalParameters Parameter turingPosition should be final. 94
 Error
sizes LineLength Line is longer than 80 characters (found 94). 96
 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
sizes LineLength Line is longer than 80 characters (found 93). 98
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 98
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 98
 Error
whitespace WhitespaceAround '/' is not followed by whitespace. 98
 Error
whitespace WhitespaceAround '/' is not preceded with whitespace. 98
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 99
 Error
sizes LineLength Line is longer than 80 characters (found 109). 102
 Error
misc FinalParameters Parameter turingPosition should be final. 102
 Error
whitespace ParenPad '(' is followed by whitespace. 105
 Error
whitespace ParenPad ')' is preceded with whitespace. 105
 Error
whitespace ParenPad '(' is followed by whitespace. 110
 Error
whitespace ParenPad ')' is preceded with whitespace. 110
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 113
 Error
sizes LineLength Line is longer than 80 characters (found 115). 117
 Error
misc FinalParameters Parameter turingPosition should be final. 117
 Error
whitespace ParenPad '(' is followed by whitespace. 119
 Error
whitespace ParenPad ')' is preceded with whitespace. 119
 Error
whitespace ParenPad '(' is followed by whitespace. 121
 Error
whitespace ParenPad ')' is preceded with whitespace. 121
 Error
whitespace ParenPad '(' is followed by whitespace. 122
 Error
whitespace ParenPad ')' is preceded with whitespace. 122
 Error
whitespace ParenPad '(' is followed by whitespace. 125
 Error
whitespace ParenPad ')' is preceded with whitespace. 125
 Error
whitespace ParenPad '(' is followed by whitespace. 127
 Error
whitespace ParenPad ')' is preceded with whitespace. 127
 Error
whitespace ParenPad '(' is followed by whitespace. 128
 Error
whitespace ParenPad ')' is preceded with whitespace. 128
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 130
 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. 133
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 133
 Error
misc FinalParameters Parameter turingPosition should be final. 134
 Error
sizes LineLength Line is longer than 80 characters (found 107). 135
 Error
sizes LineLength Line is longer than 80 characters (found 96). 136
 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. 140
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 140
 Error
misc FinalParameters Parameter turingPosition should be final. 140
 Error
sizes LineLength Line is longer than 80 characters (found 101). 141
 Error
sizes LineLength Line is longer than 80 characters (found 96). 142
 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. 146
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 146
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 146
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 147
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 147
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 147
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 147
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 147
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 147
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 147
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 147
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 148
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 148
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 148
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 148
 Error
whitespace WhitespaceAround '<' is not followed by whitespace. 148
 Error
whitespace WhitespaceAround '<' is not preceded with whitespace. 148
 Error
whitespace WhitespaceAfter ';' is not followed by whitespace. 148
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 148
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 149
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 149
 Error
misc FinalParameters Parameter c should be final. 156
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 157
 Error
sizes LineLength Line is longer than 80 characters (found 89). 160
 Error
sizes LineLength Line is longer than 80 characters (found 82). 166
 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. 166
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 166
 Error
misc FinalParameters Parameter pointFromMandelbrotSet should be final. 166
 Error
sizes LineLength Line is longer than 80 characters (found 97). 167
 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. 172
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 172
 Error
misc FinalParameters Parameter zoomPoint should be final. 173
 Error
sizes LineLength Line is longer than 80 characters (found 94). 174
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 176
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 176
 Error
sizes LineLength Line is longer than 80 characters (found 93). 177
 Error
sizes LineLength Line is longer than 80 characters (found 90). 179
 Error
sizes LineLength Line is longer than 80 characters (found 96). 181
 Error
sizes LineLength Line is longer than 80 characters (found 102). 185
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 186
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 186
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 187
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 187
 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. 194
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 194
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 197
 Error
whitespace WhitespaceAround '>' is not followed by whitespace. 197
 Error
whitespace WhitespaceAround '>' is not preceded with whitespace. 197
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 197
 Error
sizes LineLength Line is longer than 80 characters (found 99). 201
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 202
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 202
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 203
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 203
 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. 210
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 210
 Error
misc FinalParameters Parameter zoomPoint should be final. 211
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 216
 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. 220
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 220
 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. 225
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 225
 Error
coding InnerAssignment Inner assignments should be avoided. 227
 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. 230
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 230
 Error
coding InnerAssignment Inner assignments should be avoided. 232
 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. 235
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 235
 Error
misc FinalParameters Parameter zoomLevel should be final. 236
 Error
coding HiddenField 'zoomLevel' hides a field. 236
 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. 240
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 240
 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. 245
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 245
 Error
misc FinalParameters Parameter zoomCenter should be final. 246
 Error
coding HiddenField 'zoomCenter' hides a field. 246

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 12
 Error
sizes LineLength Line is longer than 80 characters (found 89). 13
 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 MissingJavadocMethod Missing a Javadoc comment. 28
 Error
misc FinalParameters Parameter model should be final. 28
 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. 35
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 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. 41
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 42
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 42
 Error
whitespace WhitespaceAfter 'switch' is not followed by whitespace. 43
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 43
 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. 56
 Error
whitespace WhitespaceAround '=' is not preceded with whitespace. 56
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 62
 Error
sizes LineLength Line is longer than 80 characters (found 97). 63
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 63
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 63
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 71
 Error
sizes LineLength Line is longer than 80 characters (found 92). 72
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 72
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 72
 Error
whitespace WhitespaceAfter 'if' is not followed by whitespace. 78
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 78
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 83

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 9
 Error
sizes LineLength Line is longer than 80 characters (found 89). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16
 Error
javadoc JavadocVariable Missing a Javadoc comment. 17
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 9
 Error
sizes LineLength Line is longer than 80 characters (found 89). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16
 Error
javadoc JavadocVariable Missing a Javadoc comment. 17
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 9
 Error
sizes LineLength Line is longer than 80 characters (found 89). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 18
 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. 22
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 22
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 22
 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. 26
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 26
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 26
 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. 30
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 30
 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. 34
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 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. 38
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 38

org/woehlke/computer/kurzweil/mandelbrot/julia/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 93). 11
 Error
sizes LineLength Line is longer than 80 characters (found 89). 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/julia/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). 15
 Error
sizes LineLength Line is longer than 80 characters (found 93). 16
 Error
sizes LineLength Line is longer than 80 characters (found 89). 17
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 31
 Error
javadoc JavadocVariable Missing a Javadoc comment. 33
 Error
javadoc JavadocVariable Missing a Javadoc comment. 34
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 Error
misc FinalParameters Parameter app should be final. 36
 Error
coding HiddenField 'app' hides a field. 36
 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. 45
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error
misc FinalParameters Parameter g should be final. 45
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 52
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 52
 Error
whitespace WhitespaceAfter 'for' is not followed by whitespace. 53
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 53
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 54
 Error
whitespace WhitespaceAround '*' is not followed by whitespace. 54
 Error
whitespace WhitespaceAround '*' is not preceded with whitespace. 54
 Error
coding MagicNumber '4' is a magic number. 54
 Error
whitespace WhitespaceAround '%' is not followed by whitespace. 54
 Error
whitespace WhitespaceAround '%' is not preceded with whitespace. 54
 Error
coding MagicNumber '256' is a magic number. 54
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 57
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 57
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 57
 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. 62
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 62
 Error
misc FinalParameters Parameter g should be final. 62

org/woehlke/computer/kurzweil/mandelbrot/julia/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 82). 19
 Error
sizes LineLength Line is longer than 80 characters (found 122). 34
 Error
sizes LineLength Line is longer than 80 characters (found 93). 35
 Error
sizes LineLength Line is longer than 80 characters (found 89). 36
 Error
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 49
 Error
javadoc JavadocVariable Missing a Javadoc comment. 51
 Error
javadoc JavadocVariable Missing a Javadoc comment. 52
 Error
javadoc JavadocVariable Missing a Javadoc comment. 53
 Error
javadoc JavadocVariable Missing a Javadoc comment. 54
 Error
javadoc JavadocVariable Missing a Javadoc comment. 55
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 Error
misc FinalParameters Parameter config should be final. 57
 Error
whitespace WhitespaceAfter ',' is not followed by whitespace. 59
 Error
sizes LineLength Line is longer than 80 characters (found 82). 64
 Error
whitespace ParenPad '(' is followed by whitespace. 70
 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. 76
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 76
 Error
misc FinalParameters Parameter e should be final. 76
 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. 80
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 80
 Error
misc FinalParameters Parameter e should be final. 80
 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. 84
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 84
 Error
misc FinalParameters Parameter e should be final. 84
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 88
 Error
misc FinalParameters Parameter e should be final. 88
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 88
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 88
 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. 90
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 90
 Error
misc FinalParameters Parameter e should be final. 90
 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. 94
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 94
 Error
misc FinalParameters Parameter e should be final. 94
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 98
 Error
misc FinalParameters Parameter e should be final. 98
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 98
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 98
 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. 101
 Error
misc FinalParameters Parameter e should be final. 102
 Error
misc FinalParameters Parameter e should be final. 109
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 109
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 109
 Error
misc FinalParameters Parameter e should be final. 112
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 112
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 112
 Error
misc FinalParameters Parameter e should be final. 115
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 115
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 115
 Error
misc FinalParameters Parameter e should be final. 118
 Error
whitespace WhitespaceAround '{' is not followed by whitespace. 118
 Error
whitespace WhitespaceAround '}' is not preceded with whitespace. 118
 Error
javadoc JavadocStyle First sentence should end with a period. 120
 Error
coding MagicNumber '180' is a magic number. 127
 Error
sizes LineLength Line is longer than 80 characters (found 84). 134
 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. 156
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 156
 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. 160
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 160

org/woehlke/computer/kurzweil/mandelbrot/julia/view/labels/PanelCopyright.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.*. 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 93). 12
 Error
sizes LineLength Line is longer than 80 characters (found 89). 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

org/woehlke/computer/kurzweil/mandelbrot/julia/view/labels/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 93). 12
 Error
sizes LineLength Line is longer than 80 characters (found 89). 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

org/woehlke/computer/kurzweil/mandelbrot/julia/view/state/ApplicationState.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 93). 9
 Error
sizes LineLength Line is longer than 80 characters (found 89). 10
 Error
javadoc JavadocVariable Missing a Javadoc comment. 15
 Error
javadoc JavadocVariable Missing a Javadoc comment. 16

org/woehlke/computer/kurzweil/mandelbrot/julia/view/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.julia.view.state.ApplicationState.*. 3
 Error
sizes LineLength Line is longer than 80 characters (found 122). 10
 Error
sizes LineLength Line is longer than 80 characters (found 93). 11
 Error
sizes LineLength Line is longer than 80 characters (found 89). 12
 Error
javadoc JavadocVariable Missing a Javadoc comment. 18
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 20
 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. 24
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 24
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 24
 Error
coding MissingSwitchDefault switch without "default" clause. 26
 Error
whitespace WhitespaceAround '{' is not preceded with whitespace. 26
 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. 37
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 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. 41
 Error
javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error
misc FinalParameters Parameter applicationState should be final. 41
 Error
coding HiddenField 'applicationState' hides a field. 41