Checkstyle Results

The following document contains the results of Checkstyle 8.35 with development/dsol-checks.xml ruleset. 

rss feed

Summary

Files
 Info
 Warnings
 Errors
58 14 768 0

Files

File
 I
 W
 E
org/opentrafficsim/road/network/factory/vissim/BezierTag.java 0 1 0
org/opentrafficsim/road/network/factory/vissim/ConnectorTag.java 0 4 0
org/opentrafficsim/road/network/factory/vissim/CrossSectionElementTag.java 0 1 0
org/opentrafficsim/road/network/factory/vissim/Customer.java 0 15 0
org/opentrafficsim/road/network/factory/vissim/GTUTYPE.java 0 6 0
org/opentrafficsim/road/network/factory/vissim/GeneratorTag.java 1 1 0
org/opentrafficsim/road/network/factory/vissim/LinkTag.java 0 43 0
org/opentrafficsim/road/network/factory/vissim/Links.java 0 5 0
org/opentrafficsim/road/network/factory/vissim/LocatePoint.java 0 12 0
org/opentrafficsim/road/network/factory/vissim/NodeTag.java 0 4 0
org/opentrafficsim/road/network/factory/vissim/PolyLineTag.java 0 1 0
org/opentrafficsim/road/network/factory/vissim/SensorTag.java 0 4 0
org/opentrafficsim/road/network/factory/vissim/SignalHeadTag.java 0 8 0
org/opentrafficsim/road/network/factory/vissim/StraightTag.java 0 3 0
org/opentrafficsim/road/network/factory/vissim/SubstringLine.java 0 1 0
org/opentrafficsim/road/network/factory/vissim/VissimNetworkLaneParser.java 0 76 0
org/opentrafficsim/road/network/factory/vissim/XMLNetworkWriter.java 0 21 0
org/opentrafficsim/road/network/factory/vissim/xsd/DEFINITIONS.java 0 6 0
org/opentrafficsim/road/network/factory/vissim/xsd/FallbackType.java 0 3 0
org/opentrafficsim/road/network/factory/vissim/xsd/GLOBAL.java 3 27 0
org/opentrafficsim/road/network/factory/vissim/xsd/GTU.java 0 18 0
org/opentrafficsim/road/network/factory/vissim/xsd/GTUMIX.java 0 17 0
org/opentrafficsim/road/network/factory/vissim/xsd/GTUTYPE.java 0 6 0
org/opentrafficsim/road/network/factory/vissim/xsd/IncludeType.java 0 22 0
org/opentrafficsim/road/network/factory/vissim/xsd/LANETYPE.java 0 20 0
org/opentrafficsim/road/network/factory/vissim/xsd/LINK.java 10 220 0
org/opentrafficsim/road/network/factory/vissim/xsd/NETWORK.java 0 5 0
org/opentrafficsim/road/network/factory/vissim/xsd/NODE.java 0 16 0
org/opentrafficsim/road/network/factory/vissim/xsd/ObjectFactory.java 0 10 0
org/opentrafficsim/road/network/factory/vissim/xsd/ParseType.java 0 5 0
org/opentrafficsim/road/network/factory/vissim/xsd/ROADLAYOUT.java 0 99 0
org/opentrafficsim/road/network/factory/vissim/xsd/ROADTYPE.java 0 24 0
org/opentrafficsim/road/network/factory/vissim/xsd/ROUTE.java 0 9 0
org/opentrafficsim/road/network/factory/vissim/xsd/ROUTEMIX.java 0 17 0
org/opentrafficsim/road/network/factory/vissim/xsd/SHORTESTROUTE.java 0 21 0
org/opentrafficsim/road/network/factory/vissim/xsd/SHORTESTROUTEMIX.java 0 17 0

Rules

Category Rule Violations Severity
blocks EmptyBlock 1
 Warning
coding HiddenField
  • ignoreConstructorParameter: "true"
  • ignoreSetter: "true"
1
 Warning
design DesignForExtension 53
 Warning
HideUtilityClassConstructor 2
 Warning
VisibilityModifier 201
 Warning
javadoc JavadocMethod 19
 Warning
JavadocVariable 206
 Warning
misc FinalParameters 266
 Warning
TodoComment 4
 Warning
modifier ModifierOrder 2
 Warning
RedundantModifier 8
 Warning
naming ConstantName 2
 Warning
MemberName 2
 Warning
sizes FileLength 1
 Warning
LineLength
  • max: "128"
13
 Info
MethodLength 1
 Info

Details

org/opentrafficsim/road/network/factory/vissim/BezierTag.java

Severity Category Rule Message Line
 Warning
design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 16

org/opentrafficsim/road/network/factory/vissim/ConnectorTag.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 43
 Warning
design VisibilityModifier Variable 'toNodeName' must be private and have accessor methods. 43
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 45
 Warning
design VisibilityModifier Variable 'fromNodeName' must be private and have accessor methods. 45

org/opentrafficsim/road/network/factory/vissim/CrossSectionElementTag.java

Severity Category Rule Message Line
 Warning
blocks EmptyBlock Must have at least one statement. 300

org/opentrafficsim/road/network/factory/vissim/Customer.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 17
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 17
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 19
 Warning
design VisibilityModifier Variable 'age' must be private and have accessor methods. 19
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 21
 Warning
design VisibilityModifier Variable 'id' must be private and have accessor methods. 21
 Warning
design DesignForExtension Class 'Customer' looks like designed for extension (can be subclassed), but the method 'getName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Customer' final or making the method 'getName' static/final/abstract/empty, or adding allowed annotation for the method. 23
 Warning
design DesignForExtension Class 'Customer' looks like designed for extension (can be subclassed), but the method 'setName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Customer' final or making the method 'setName' static/final/abstract/empty, or adding allowed annotation for the method. 28
 Warning
misc FinalParameters Parameter name should be final. 29
 Warning
design DesignForExtension Class 'Customer' looks like designed for extension (can be subclassed), but the method 'getAge' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Customer' final or making the method 'getAge' static/final/abstract/empty, or adding allowed annotation for the method. 34
 Warning
design DesignForExtension Class 'Customer' looks like designed for extension (can be subclassed), but the method 'setAge' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Customer' final or making the method 'setAge' static/final/abstract/empty, or adding allowed annotation for the method. 39
 Warning
misc FinalParameters Parameter age should be final. 40
 Warning
design DesignForExtension Class 'Customer' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Customer' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 45
 Warning
design DesignForExtension Class 'Customer' looks like designed for extension (can be subclassed), but the method 'setId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Customer' final or making the method 'setId' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Warning
misc FinalParameters Parameter id should be final. 51

org/opentrafficsim/road/network/factory/vissim/GTUTYPE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 41
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 42
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 44
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 46
 Warning
misc FinalParameters Parameter value should be final. 61
 Warning
misc FinalParameters Parameter value should be final. 79

org/opentrafficsim/road/network/factory/vissim/GeneratorTag.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'gtuDirection' must be private and have accessor methods. 72
 Info
sizes MethodLength Method length is 184 lines (max allowed is 150). 134

org/opentrafficsim/road/network/factory/vissim/LinkTag.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'connectorTag' must be private and have accessor methods. 120
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 130
 Warning
design VisibilityModifier Variable 'signalHeads' must be private and have accessor methods. 130
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 132
 Warning
design VisibilityModifier Variable 'sensors' must be private and have accessor methods. 132
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 134
 Warning
design VisibilityModifier Variable 'signalHeadsToRemove' must be private and have accessor methods. 134
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 136
 Warning
design VisibilityModifier Variable 'sensorTagsToRemove' must be private and have accessor methods. 136
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 139
 Warning
design VisibilityModifier Variable 'connector' must be private and have accessor methods. 139
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 141
 Warning
design VisibilityModifier Variable 'arcTag' must be private and have accessor methods. 141
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 143
 Warning
design VisibilityModifier Variable 'bezierTag' must be private and have accessor methods. 143
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 145
 Warning
design VisibilityModifier Variable 'roadLayoutTag' must be private and have accessor methods. 145
 Warning
modifier RedundantModifier Redundant 'public' modifier. 150
 Warning
misc FinalParameters Parameter linkTag should be final. 150
 Warning
modifier RedundantModifier Redundant 'public' modifier. 173
 Warning
misc TodoComment Comment matches to-do format 'TODO:'. 199
 Warning
misc FinalParameters Parameter linkTag should be final. 254
 Warning
misc FinalParameters Parameter connectorToNode should be final. 254
 Warning
misc FinalParameters Parameter linkTag should be final. 277
 Warning
misc FinalParameters Parameter connectorFromNode should be final. 277
 Warning
misc FinalParameters Parameter linkTag should be final. 301
 Warning
misc FinalParameters Parameter laneNodes should be final. 301
 Warning
misc FinalParameters Parameter linkTag should be final. 327
 Warning
misc FinalParameters Parameter nodeCoords should be final. 327
 Warning
misc FinalParameters Parameter node should be final. 343
 Warning
misc FinalParameters Parameter linkTag should be final. 343
 Warning
misc FinalParameters Parameter linkTag should be final. 476
 Warning
misc FinalParameters Parameter designLine should be final. 476
 Warning
misc FinalParameters Parameter nodeTag should be final. 476
 Warning
misc FinalParameters Parameter linkTag should be final. 521
 Warning
misc FinalParameters Parameter designLine should be final. 521
 Warning
misc FinalParameters Parameter nodeTag should be final. 521
 Warning
misc FinalParameters Parameter linkTag should be final. 557
 Warning
misc FinalParameters Parameter designLine should be final. 557
 Warning
misc FinalParameters Parameter linkTag should be final. 592
 Warning
misc FinalParameters Parameter parser should be final. 689
 Warning
misc FinalParameters Parameter parser should be final. 700
 Warning
misc FinalParameters Parameter parser should be final. 714

org/opentrafficsim/road/network/factory/vissim/Links.java

Severity Category Rule Message Line
 Warning
misc TodoComment Comment matches to-do format 'TODO:'. 296
 Warning
misc TodoComment Comment matches to-do format 'TODO:'. 398
 Warning
misc FinalParameters Parameter realLinkTag should be final. 411
 Warning
misc FinalParameters Parameter vissimNetworkLaneParser should be final. 411
 Warning
misc FinalParameters Parameter simulator should be final. 412

org/opentrafficsim/road/network/factory/vissim/LocatePoint.java

Severity Category Rule Message Line
 Warning
misc FinalParameters Parameter p0 should be final. 15
 Warning
misc FinalParameters Parameter p1 should be final. 15
 Warning
misc FinalParameters Parameter distance should be final. 15
 Warning
misc FinalParameters Parameter line should be final. 33
 Warning
misc FinalParameters Parameter distance should be final. 33
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 39
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 41
 Warning
misc FinalParameters Parameter line should be final. 43
 Warning
misc FinalParameters Parameter distance should be final. 43
 Warning
misc FinalParameters Parameter line should be final. 48
 Warning
misc FinalParameters Parameter distance should be final. 48
 Warning
design DesignForExtension Class 'LocatePoint' looks like designed for extension (can be subclassed), but the method 'getPoint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'LocatePoint' final or making the method 'getPoint' static/final/abstract/empty, or adding allowed annotation for the method. 71

org/opentrafficsim/road/network/factory/vissim/NodeTag.java

Severity Category Rule Message Line
 Warning
misc TodoComment Comment matches to-do format 'TODO:'. 46
 Warning
misc FinalParameters Parameter fromNode should be final. 62
 Warning
misc FinalParameters Parameter toNode should be final. 62
 Warning
misc FinalParameters Parameter points should be final. 62

org/opentrafficsim/road/network/factory/vissim/PolyLineTag.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'vertices' must be private and have accessor methods. 30

org/opentrafficsim/road/network/factory/vissim/SensorTag.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'activeOnThisLink' must be private and have accessor methods. 71
 Warning
modifier RedundantModifier Redundant 'public' modifier. 76
 Warning
misc FinalParameters Parameter sensorTag should be final. 76
 Warning
modifier RedundantModifier Redundant 'public' modifier. 94

org/opentrafficsim/road/network/factory/vissim/SignalHeadTag.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'activeOnThisLink' must be private and have accessor methods. 34
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 54
 Warning
design VisibilityModifier Variable 'linkName' must be private and have accessor methods. 54
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
design VisibilityModifier Variable 'laneName' must be private and have accessor methods. 56
 Warning
modifier RedundantModifier Redundant 'public' modifier. 61
 Warning
misc FinalParameters Parameter signalHeadTag should be final. 61
 Warning
modifier RedundantModifier Redundant 'public' modifier. 76

org/opentrafficsim/road/network/factory/vissim/StraightTag.java

Severity Category Rule Message Line
 Warning
modifier RedundantModifier Redundant 'public' modifier. 46
 Warning
modifier RedundantModifier Redundant 'public' modifier. 54
 Warning
misc FinalParameters Parameter straightTag should be final. 54

org/opentrafficsim/road/network/factory/vissim/SubstringLine.java

Severity Category Rule Message Line
 Warning
misc FinalParameters Parameter startDistance should be final. 57

org/opentrafficsim/road/network/factory/vissim/VissimNetworkLaneParser.java

Severity Category Rule Message Line
 Warning
coding HiddenField 'network' hides a field. 144
 Warning
misc FinalParameters Parameter removeConnectorTags should be final. 268
 Warning
misc FinalParameters Parameter inputLinkTags should be final. 368
 Warning
misc FinalParameters Parameter margin should be final. 368
 Warning
misc FinalParameters Parameter splitMetersAfterSignalHead should be final. 369
 Warning
misc FinalParameters Parameter margin should be final. 378
 Warning
misc FinalParameters Parameter splitMetersAfterSignalHead should be final. 378
 Warning
misc FinalParameters Parameter inputLinkTags should be final. 378
 Warning
misc FinalParameters Parameter newLinkTags should be final. 379
 Warning
misc FinalParameters Parameter margin should be final. 413
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getGlobalTag' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getGlobalTag' static/final/abstract/empty, or adding allowed annotation for the method. 579
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setGlobalTag' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setGlobalTag' static/final/abstract/empty, or adding allowed annotation for the method. 584
 Warning
misc FinalParameters Parameter globalTag should be final. 584
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getNodeTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getNodeTags' static/final/abstract/empty, or adding allowed annotation for the method. 589
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setNodeTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setNodeTags' static/final/abstract/empty, or adding allowed annotation for the method. 594
 Warning
misc FinalParameters Parameter nodeTags should be final. 594
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getLinkTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getLinkTags' static/final/abstract/empty, or adding allowed annotation for the method. 599
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setLinkTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setLinkTags' static/final/abstract/empty, or adding allowed annotation for the method. 604
 Warning
misc FinalParameters Parameter linkTags should be final. 604
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getConnectorTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getConnectorTags' static/final/abstract/empty, or adding allowed annotation for the method. 609
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setConnectorTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setConnectorTags' static/final/abstract/empty, or adding allowed annotation for the method. 614
 Warning
misc FinalParameters Parameter connectorTags should be final. 614
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getRealLinkTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getRealLinkTags' static/final/abstract/empty, or adding allowed annotation for the method. 619
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setRealLinkTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setRealLinkTags' static/final/abstract/empty, or adding allowed annotation for the method. 624
 Warning
misc FinalParameters Parameter realLinkTags should be final. 624
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getSignalHeadTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getSignalHeadTags' static/final/abstract/empty, or adding allowed annotation for the method. 629
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setSignalHeadTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setSignalHeadTags' static/final/abstract/empty, or adding allowed annotation for the method. 634
 Warning
misc FinalParameters Parameter signalHeadTags should be final. 634
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getSensorTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getSensorTags' static/final/abstract/empty, or adding allowed annotation for the method. 639
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setSensorTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setSensorTags' static/final/abstract/empty, or adding allowed annotation for the method. 644
 Warning
misc FinalParameters Parameter sensorTags should be final. 644
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getGtuTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getGtuTags' static/final/abstract/empty, or adding allowed annotation for the method. 649
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setGtuTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setGtuTags' static/final/abstract/empty, or adding allowed annotation for the method. 654
 Warning
misc FinalParameters Parameter gtuTags should be final. 654
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getGtuMixTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getGtuMixTags' static/final/abstract/empty, or adding allowed annotation for the method. 659
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setGtuMixTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setGtuMixTags' static/final/abstract/empty, or adding allowed annotation for the method. 664
 Warning
misc FinalParameters Parameter gtuMixTags should be final. 664
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getRoadTypeTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getRoadTypeTags' static/final/abstract/empty, or adding allowed annotation for the method. 669
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setRoadTypeTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setRoadTypeTags' static/final/abstract/empty, or adding allowed annotation for the method. 674
 Warning
misc FinalParameters Parameter roadTypeTags should be final. 674
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getGtuTypes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getGtuTypes' static/final/abstract/empty, or adding allowed annotation for the method. 679
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setGtuTypes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setGtuTypes' static/final/abstract/empty, or adding allowed annotation for the method. 684
 Warning
misc FinalParameters Parameter gtuTypes should be final. 684
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getLaneTypeTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getLaneTypeTags' static/final/abstract/empty, or adding allowed annotation for the method. 689
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setLaneTypeTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setLaneTypeTags' static/final/abstract/empty, or adding allowed annotation for the method. 694
 Warning
misc FinalParameters Parameter laneTypeTags should be final. 694
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getRoadLayoutTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getRoadLayoutTags' static/final/abstract/empty, or adding allowed annotation for the method. 699
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setRoadLayoutTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setRoadLayoutTags' static/final/abstract/empty, or adding allowed annotation for the method. 704
 Warning
misc FinalParameters Parameter roadLayoutTags should be final. 704
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getRouteMixTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getRouteMixTags' static/final/abstract/empty, or adding allowed annotation for the method. 709
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setRouteMixTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setRouteMixTags' static/final/abstract/empty, or adding allowed annotation for the method. 714
 Warning
misc FinalParameters Parameter routeMixTags should be final. 714
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getShortestRouteMixTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getShortestRouteMixTags' static/final/abstract/empty, or adding allowed annotation for the method. 719
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setShortestRouteMixTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setShortestRouteMixTags' static/final/abstract/empty, or adding allowed annotation for the method. 724
 Warning
misc FinalParameters Parameter shortestRouteMixTags should be final. 724
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getShortestRouteTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getShortestRouteTags' static/final/abstract/empty, or adding allowed annotation for the method. 729
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setShortestRouteTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setShortestRouteTags' static/final/abstract/empty, or adding allowed annotation for the method. 734
 Warning
misc FinalParameters Parameter shortestRouteTags should be final. 734
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getRouteTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getRouteTags' static/final/abstract/empty, or adding allowed annotation for the method. 739
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setRouteTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setRouteTags' static/final/abstract/empty, or adding allowed annotation for the method. 744
 Warning
misc FinalParameters Parameter routeTags should be final. 744
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getLaneTypes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getLaneTypes' static/final/abstract/empty, or adding allowed annotation for the method. 749
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setLaneTypes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setLaneTypes' static/final/abstract/empty, or adding allowed annotation for the method. 754
 Warning
misc FinalParameters Parameter laneTypes should be final. 754
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getSimulator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getSimulator' static/final/abstract/empty, or adding allowed annotation for the method. 759
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setSimulator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setSimulator' static/final/abstract/empty, or adding allowed annotation for the method. 764
 Warning
misc FinalParameters Parameter simulator should be final. 764
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getNetwork' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getNetwork' static/final/abstract/empty, or adding allowed annotation for the method. 769
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setNetwork' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setNetwork' static/final/abstract/empty, or adding allowed annotation for the method. 774
 Warning
misc FinalParameters Parameter network should be final. 774
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getUpperNodeNr' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getUpperNodeNr' static/final/abstract/empty, or adding allowed annotation for the method. 779
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setUpperNodeNr' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setUpperNodeNr' static/final/abstract/empty, or adding allowed annotation for the method. 784
 Warning
misc FinalParameters Parameter upperNodeNr should be final. 784
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'getUpperLinkNr' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'getUpperLinkNr' static/final/abstract/empty, or adding allowed annotation for the method. 789
 Warning
design DesignForExtension Class 'VissimNetworkLaneParser' looks like designed for extension (can be subclassed), but the method 'setUpperLinkNr' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VissimNetworkLaneParser' final or making the method 'setUpperLinkNr' static/final/abstract/empty, or adding allowed annotation for the method. 794
 Warning
misc FinalParameters Parameter upperLinkNr should be final. 794

org/opentrafficsim/road/network/factory/vissim/XMLNetworkWriter.java

Severity Category Rule Message Line
 Warning
design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 41
 Warning
misc FinalParameters Parameter file should be final. 44
 Warning
misc FinalParameters Parameter linkTags should be final. 44
 Warning
misc FinalParameters Parameter nodeTags should be final. 44
 Warning
misc FinalParameters Parameter sinkKillClassName should be final. 44
 Warning
misc FinalParameters Parameter sensorClassName should be final. 45
 Warning
misc FinalParameters Parameter trafficLightName should be final. 45
 Warning
misc FinalParameters Parameter definitions should be final. 80
 Warning
misc FinalParameters Parameter definitions should be final. 89
 Warning
misc FinalParameters Parameter file should be final. 118
 Warning
misc FinalParameters Parameter definitions should be final. 118
 Warning
misc FinalParameters Parameter nodes should be final. 118
 Warning
misc FinalParameters Parameter links should be final. 118
 Warning
misc FinalParameters Parameter links should be final. 132
 Warning
misc FinalParameters Parameter roadLayouts should be final. 132
 Warning
misc FinalParameters Parameter linkTags should be final. 132
 Warning
misc FinalParameters Parameter sinkKillClassName should be final. 133
 Warning
misc FinalParameters Parameter sensorClassName should be final. 133
 Warning
misc FinalParameters Parameter trafficLightName should be final. 133
 Warning
misc FinalParameters Parameter nodes should be final. 273
 Warning
misc FinalParameters Parameter nodeTags should be final. 273

org/opentrafficsim/road/network/factory/vissim/xsd/DEFINITIONS.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 60
 Warning
design VisibilityModifier Variable 'content' must be private and have accessor methods. 77
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 79
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 81
 Warning
javadoc JavadocMethod Expected @return tag. 100
 Warning
misc FinalParameters Parameter value should be final. 122

org/opentrafficsim/road/network/factory/vissim/xsd/FallbackType.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 51
 Warning
design VisibilityModifier Variable 'content' must be private and have accessor methods. 54
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56

org/opentrafficsim/road/network/factory/vissim/xsd/GLOBAL.java

Severity Category Rule Message Line
 Info
sizes LineLength Line is longer than 128 characters (found 132). 42
 Info
sizes LineLength Line is longer than 128 characters (found 132). 43
 Info
sizes LineLength Line is longer than 128 characters (found 132). 52
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 71
 Warning
design VisibilityModifier Variable 'speedgtucolorer' must be private and have accessor methods. 72
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 74
 Warning
design VisibilityModifier Variable 'accelerationgtucolorer' must be private and have accessor methods. 75
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 77
 Warning
design VisibilityModifier Variable 'lanechangeurgegtucolorer' must be private and have accessor methods. 78
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 80
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 82
 Warning
misc FinalParameters Parameter value should be final. 97
 Warning
misc FinalParameters Parameter value should be final. 115
 Warning
misc FinalParameters Parameter value should be final. 133
 Warning
misc FinalParameters Parameter value should be final. 151
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 178
 Warning
design VisibilityModifier Variable 'maxdeceleration' must be private and have accessor methods. 179
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 181
 Warning
design VisibilityModifier Variable 'maxacceleration' must be private and have accessor methods. 182
 Warning
misc FinalParameters Parameter value should be final. 197
 Warning
misc FinalParameters Parameter value should be final. 215
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 244
 Warning
design VisibilityModifier Variable 'minlanechangedistance' must be private and have accessor methods. 245
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 247
 Warning
design VisibilityModifier Variable 'horizon' must be private and have accessor methods. 248
 Warning
misc FinalParameters Parameter value should be final. 263
 Warning
misc FinalParameters Parameter value should be final. 281
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 309
 Warning
design VisibilityModifier Variable 'maxspeed' must be private and have accessor methods. 310
 Warning
misc FinalParameters Parameter value should be final. 325

org/opentrafficsim/road/network/factory/vissim/xsd/GTU.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 44
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 45
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 47
 Warning
design VisibilityModifier Variable 'gtutype' must be private and have accessor methods. 48
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 50
 Warning
design VisibilityModifier Variable 'length' must be private and have accessor methods. 51
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 53
 Warning
design VisibilityModifier Variable 'width' must be private and have accessor methods. 54
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
design VisibilityModifier Variable 'maxspeed' must be private and have accessor methods. 57
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 59
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 61
 Warning
misc FinalParameters Parameter value should be final. 76
 Warning
misc FinalParameters Parameter value should be final. 94
 Warning
misc FinalParameters Parameter value should be final. 112
 Warning
misc FinalParameters Parameter value should be final. 130
 Warning
misc FinalParameters Parameter value should be final. 148
 Warning
misc FinalParameters Parameter value should be final. 166

org/opentrafficsim/road/network/factory/vissim/xsd/GTUMIX.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
design VisibilityModifier Variable 'gtu' must be private and have accessor methods. 57
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 59
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 60
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 62
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 64
 Warning
javadoc JavadocMethod Expected @return tag. 81
 Warning
misc FinalParameters Parameter value should be final. 103
 Warning
misc FinalParameters Parameter value should be final. 121
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 148
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 149
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 151
 Warning
design VisibilityModifier Variable 'weight' must be private and have accessor methods. 152
 Warning
misc FinalParameters Parameter value should be final. 167
 Warning
javadoc JavadocMethod Expected @return tag. 175
 Warning
misc FinalParameters Parameter value should be final. 183
 Warning
javadoc JavadocMethod Expected @param tag for 'value'. 183

org/opentrafficsim/road/network/factory/vissim/xsd/GTUTYPE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 44
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 45
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 47
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 49
 Warning
misc FinalParameters Parameter value should be final. 64
 Warning
misc FinalParameters Parameter value should be final. 82

org/opentrafficsim/road/network/factory/vissim/xsd/IncludeType.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 61
 Warning
design VisibilityModifier Variable 'content' must be private and have accessor methods. 64
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 66
 Warning
design VisibilityModifier Variable 'href' must be private and have accessor methods. 68
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 70
 Warning
design VisibilityModifier Variable 'parse' must be private and have accessor methods. 71
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 73
 Warning
design VisibilityModifier Variable 'xpointer' must be private and have accessor methods. 74
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 76
 Warning
design VisibilityModifier Variable 'encoding' must be private and have accessor methods. 77
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 79
 Warning
design VisibilityModifier Variable 'accept' must be private and have accessor methods. 80
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 82
 Warning
design VisibilityModifier Variable 'acceptLanguage' must be private and have accessor methods. 83
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 85
 Warning
javadoc JavadocMethod Expected @return tag. 104
 Warning
misc FinalParameters Parameter value should be final. 126
 Warning
misc FinalParameters Parameter value should be final. 151
 Warning
misc FinalParameters Parameter value should be final. 169
 Warning
misc FinalParameters Parameter value should be final. 187
 Warning
misc FinalParameters Parameter value should be final. 205
 Warning
misc FinalParameters Parameter value should be final. 223

org/opentrafficsim/road/network/factory/vissim/xsd/LANETYPE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 58
 Warning
design VisibilityModifier Variable 'speedlimit' must be private and have accessor methods. 59
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 61
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 62
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 64
 Warning
design VisibilityModifier Variable 'defaultlanewidth' must be private and have accessor methods. 65
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 67
 Warning
design VisibilityModifier Variable 'defaultlanekeeping' must be private and have accessor methods. 68
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 70
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 72
 Warning
misc FinalParameters Parameter value should be final. 114
 Warning
misc FinalParameters Parameter value should be final. 132
 Warning
misc FinalParameters Parameter value should be final. 150
 Warning
misc FinalParameters Parameter value should be final. 168
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 195
 Warning
design VisibilityModifier Variable 'gtutype' must be private and have accessor methods. 196
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 198
 Warning
design VisibilityModifier Variable 'legalspeedlimit' must be private and have accessor methods. 199
 Warning
misc FinalParameters Parameter value should be final. 214
 Warning
misc FinalParameters Parameter value should be final. 232

org/opentrafficsim/road/network/factory/vissim/xsd/LINK.java

Severity Category Rule Message Line
 Warning
sizes FileLength File length is 2,111 lines (max allowed is 2,000). 1
 Info
sizes LineLength Line is longer than 128 characters (found 130). 41
 Info
sizes LineLength Line is longer than 128 characters (found 130). 106
 Info
sizes LineLength Line is longer than 128 characters (found 129). 111
 Info
sizes LineLength Line is longer than 128 characters (found 130). 125
 Info
sizes LineLength Line is longer than 128 characters (found 129). 127
 Info
sizes LineLength Line is longer than 128 characters (found 130). 140
 Info
sizes LineLength Line is longer than 128 characters (found 131). 152
 Info
sizes LineLength Line is longer than 128 characters (found 131). 163
 Info
sizes LineLength Line is longer than 128 characters (found 131). 176
 Info
sizes LineLength Line is longer than 128 characters (found 131). 187
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 217
 Warning
design VisibilityModifier Variable 'bezier' must be private and have accessor methods. 218
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 220
 Warning
design VisibilityModifier Variable 'clothoid' must be private and have accessor methods. 221
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 223
 Warning
design VisibilityModifier Variable 'straight' must be private and have accessor methods. 224
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 226
 Warning
design VisibilityModifier Variable 'arc' must be private and have accessor methods. 227
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 229
 Warning
design VisibilityModifier Variable 'polyline' must be private and have accessor methods. 230
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 232
 Warning
design VisibilityModifier Variable 'roadlayout' must be private and have accessor methods. 233
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 235
 Warning
design VisibilityModifier Variable 'laneoverrideOrGENERATOROrLISTGENERATOR' must be private and have accessor methods. 242
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 244
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 245
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 247
 Warning
design VisibilityModifier Variable 'nodestart' must be private and have accessor methods. 248
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 250
 Warning
design VisibilityModifier Variable 'nodeEnd' must be private and have accessor methods. 254
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 256
 Warning
design VisibilityModifier Variable 'roadlayoutAttribute' must be private and have accessor methods. 257
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 259
 Warning
design VisibilityModifier Variable 'offsetstart' must be private and have accessor methods. 260
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 262
 Warning
design VisibilityModifier Variable 'offsetend' must be private and have accessor methods. 263
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 265
 Warning
design VisibilityModifier Variable 'rotationstart' must be private and have accessor methods. 266
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 268
 Warning
design VisibilityModifier Variable 'rotationend' must be private and have accessor methods. 269
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 271
 Warning
design VisibilityModifier Variable 'lanekeeping' must be private and have accessor methods. 272
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 274
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 276
 Warning
misc FinalParameters Parameter value should be final. 291
 Warning
misc FinalParameters Parameter value should be final. 309
 Warning
misc FinalParameters Parameter value should be final. 327
 Warning
misc FinalParameters Parameter value should be final. 345
 Warning
misc FinalParameters Parameter value should be final. 363
 Warning
misc FinalParameters Parameter value should be final. 381
 Warning
misc FinalParameters Parameter value should be final. 428
 Warning
misc FinalParameters Parameter value should be final. 446
 Warning
misc FinalParameters Parameter value should be final. 464
 Warning
misc FinalParameters Parameter value should be final. 482
 Warning
misc FinalParameters Parameter value should be final. 500
 Warning
misc FinalParameters Parameter value should be final. 518
 Warning
misc FinalParameters Parameter value should be final. 536
 Warning
misc FinalParameters Parameter value should be final. 554
 Warning
misc FinalParameters Parameter value should be final. 572
 Warning
misc FinalParameters Parameter value should be final. 590
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 618
 Warning
design VisibilityModifier Variable 'radius' must be private and have accessor methods. 619
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 621
 Warning
design VisibilityModifier Variable 'angle' must be private and have accessor methods. 622
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 624
 Warning
design VisibilityModifier Variable 'direction' must be private and have accessor methods. 625
 Warning
misc FinalParameters Parameter value should be final. 640
 Warning
misc FinalParameters Parameter value should be final. 658
 Warning
misc FinalParameters Parameter value should be final. 676
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 705
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 706
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 708
 Warning
design VisibilityModifier Variable 'position' must be private and have accessor methods. 709
 Warning
misc FinalParameters Parameter value should be final. 724
 Warning
misc FinalParameters Parameter value should be final. 742
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 775
 Warning
design VisibilityModifier Variable 'startangle' must be private and have accessor methods. 776
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 778
 Warning
design VisibilityModifier Variable 'startcurvature' must be private and have accessor methods. 779
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 781
 Warning
design VisibilityModifier Variable 'endcurvature' must be private and have accessor methods. 782
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 784
 Warning
design VisibilityModifier Variable 'length' must be private and have accessor methods. 785
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 787
 Warning
design VisibilityModifier Variable 'endelevation' must be private and have accessor methods. 788
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 790
 Warning
design VisibilityModifier Variable 'numsegments' must be private and have accessor methods. 791
 Warning
misc FinalParameters Parameter value should be final. 806
 Warning
misc FinalParameters Parameter value should be final. 824
 Warning
misc FinalParameters Parameter value should be final. 842
 Warning
misc FinalParameters Parameter value should be final. 860
 Warning
misc FinalParameters Parameter value should be final. 878
 Warning
misc FinalParameters Parameter value should be final. 896
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 940
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 941
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 943
 Warning
design VisibilityModifier Variable 'gtu' must be private and have accessor methods. 944
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 946
 Warning
design VisibilityModifier Variable 'gtumix' must be private and have accessor methods. 947
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 949
 Warning
design VisibilityModifier Variable 'distance' must be private and have accessor methods. 950
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 952
 Warning
design VisibilityModifier Variable 'initialspeed' must be private and have accessor methods. 953
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 955
 Warning
design VisibilityModifier Variable 'maxgtu' must be private and have accessor methods. 956
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 958
 Warning
design VisibilityModifier Variable 'route' must be private and have accessor methods. 959
 Warning
misc FinalParameters Parameter value should be final. 974
 Warning
misc FinalParameters Parameter value should be final. 992
 Warning
misc FinalParameters Parameter value should be final. 1010
 Warning
misc FinalParameters Parameter value should be final. 1028
 Warning
misc FinalParameters Parameter value should be final. 1046
 Warning
misc FinalParameters Parameter value should be final. 1064
 Warning
misc FinalParameters Parameter value should be final. 1082
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1120
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 1121
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1123
 Warning
design VisibilityModifier Variable 'position' must be private and have accessor methods. 1124
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1126
 Warning
design VisibilityModifier Variable 'gtu' must be private and have accessor methods. 1127
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1129
 Warning
design VisibilityModifier Variable 'gtumix' must be private and have accessor methods. 1130
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1132
 Warning
design VisibilityModifier Variable 'iat' must be private and have accessor methods. 1133
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1135
 Warning
design VisibilityModifier Variable 'initialspeed' must be private and have accessor methods. 1136
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1138
 Warning
design VisibilityModifier Variable 'maxgtu' must be private and have accessor methods. 1139
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1141
 Warning
design VisibilityModifier Variable 'starttime' must be private and have accessor methods. 1142
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1144
 Warning
design VisibilityModifier Variable 'endtime' must be private and have accessor methods. 1145
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1147
 Warning
design VisibilityModifier Variable 'route' must be private and have accessor methods. 1148
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1150
 Warning
design VisibilityModifier Variable 'gtucolorer' must be private and have accessor methods. 1151
 Warning
misc FinalParameters Parameter value should be final. 1166
 Warning
misc FinalParameters Parameter value should be final. 1184
 Warning
misc FinalParameters Parameter value should be final. 1202
 Warning
misc FinalParameters Parameter value should be final. 1220
 Warning
misc FinalParameters Parameter value should be final. 1238
 Warning
misc FinalParameters Parameter value should be final. 1256
 Warning
misc FinalParameters Parameter value should be final. 1274
 Warning
misc FinalParameters Parameter value should be final. 1292
 Warning
misc FinalParameters Parameter value should be final. 1310
 Warning
misc FinalParameters Parameter value should be final. 1328
 Warning
misc FinalParameters Parameter value should be final. 1346
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1378
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 1379
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1381
 Warning
design VisibilityModifier Variable 'legalspeedlimit' must be private and have accessor methods. 1382
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1384
 Warning
design VisibilityModifier Variable 'direction' must be private and have accessor methods. 1385
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1387
 Warning
design VisibilityModifier Variable 'color' must be private and have accessor methods. 1388
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1390
 Warning
design VisibilityModifier Variable 'overtaking' must be private and have accessor methods. 1391
 Warning
misc FinalParameters Parameter value should be final. 1406
 Warning
misc FinalParameters Parameter value should be final. 1424
 Warning
misc FinalParameters Parameter value should be final. 1442
 Warning
misc FinalParameters Parameter value should be final. 1460
 Warning
misc FinalParameters Parameter value should be final. 1478
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1513
 Warning
design VisibilityModifier Variable 'uri' must be private and have accessor methods. 1515
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1517
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 1518
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1520
 Warning
design VisibilityModifier Variable 'position' must be private and have accessor methods. 1521
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1523
 Warning
design VisibilityModifier Variable 'gtu' must be private and have accessor methods. 1524
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1526
 Warning
design VisibilityModifier Variable 'gtumix' must be private and have accessor methods. 1527
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1529
 Warning
design VisibilityModifier Variable 'initialspeed' must be private and have accessor methods. 1530
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1532
 Warning
design VisibilityModifier Variable 'route' must be private and have accessor methods. 1533
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1535
 Warning
design VisibilityModifier Variable 'gtucolorer' must be private and have accessor methods. 1536
 Warning
misc FinalParameters Parameter value should be final. 1551
 Warning
misc FinalParameters Parameter value should be final. 1569
 Warning
misc FinalParameters Parameter value should be final. 1587
 Warning
misc FinalParameters Parameter value should be final. 1605
 Warning
misc FinalParameters Parameter value should be final. 1623
 Warning
misc FinalParameters Parameter value should be final. 1641
 Warning
misc FinalParameters Parameter value should be final. 1659
 Warning
misc FinalParameters Parameter value should be final. 1677
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1706
 Warning
design VisibilityModifier Variable 'length' must be private and have accessor methods. 1707
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1709
 Warning
design VisibilityModifier Variable 'intermediatepoints' must be private and have accessor methods. 1710
 Warning
misc FinalParameters Parameter value should be final. 1725
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1784
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 1785
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1787
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 1788
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1790
 Warning
design VisibilityModifier Variable 'position' must be private and have accessor methods. 1791
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1793
 Warning
naming MemberName Name '_class' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1794
 Warning
design VisibilityModifier Variable '_class' must be private and have accessor methods. 1794
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1796
 Warning
design VisibilityModifier Variable 'trigger' must be private and have accessor methods. 1797
 Warning
misc FinalParameters Parameter value should be final. 1812
 Warning
misc FinalParameters Parameter value should be final. 1830
 Warning
misc FinalParameters Parameter value should be final. 1848
 Warning
misc FinalParameters Parameter value should be final. 1866
 Warning
misc FinalParameters Parameter value should be final. 1884
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1913
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 1914
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1916
 Warning
design VisibilityModifier Variable 'position' must be private and have accessor methods. 1917
 Warning
misc FinalParameters Parameter value should be final. 1932
 Warning
misc FinalParameters Parameter value should be final. 1950
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 1978
 Warning
design VisibilityModifier Variable 'length' must be private and have accessor methods. 1979
 Warning
misc FinalParameters Parameter value should be final. 1994
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 2025
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 2026
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 2028
 Warning
design VisibilityModifier Variable 'lane' must be private and have accessor methods. 2029
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 2031
 Warning
design VisibilityModifier Variable 'position' must be private and have accessor methods. 2032
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 2034
 Warning
naming MemberName Name '_class' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2035
 Warning
design VisibilityModifier Variable '_class' must be private and have accessor methods. 2035
 Warning
misc FinalParameters Parameter value should be final. 2050
 Warning
misc FinalParameters Parameter value should be final. 2068
 Warning
misc FinalParameters Parameter value should be final. 2086
 Warning
misc FinalParameters Parameter value should be final. 2104

org/opentrafficsim/road/network/factory/vissim/xsd/NETWORK.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
design VisibilityModifier Variable 'definitionsOrIncludeOrNODE' must be private and have accessor methods. 62
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 64
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 66
 Warning
misc FinalParameters Parameter value should be final. 109

org/opentrafficsim/road/network/factory/vissim/xsd/NODE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 46
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 50
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 52
 Warning
design VisibilityModifier Variable 'coordinate' must be private and have accessor methods. 53
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 55
 Warning
design VisibilityModifier Variable 'angle' must be private and have accessor methods. 56
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 58
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 61
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 63
 Warning
misc FinalParameters Parameter value should be final. 78
 Warning
misc FinalParameters Parameter value should be final. 96
 Warning
misc FinalParameters Parameter value should be final. 114
 Warning
misc FinalParameters Parameter value should be final. 132
 Warning
design DesignForExtension Class 'NODE' looks like designed for extension (can be subclassed), but the method 'getRefId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'NODE' final or making the method 'getRefId' static/final/abstract/empty, or adding allowed annotation for the method. 137
 Warning
design DesignForExtension Class 'NODE' looks like designed for extension (can be subclassed), but the method 'setRefId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'NODE' final or making the method 'setRefId' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Warning
misc FinalParameters Parameter refId should be final. 142

org/opentrafficsim/road/network/factory/vissim/xsd/ObjectFactory.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 29
 Warning
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 29
 Warning
naming ConstantName Name '_Fallback_QNAME' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 29
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 31
 Warning
modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 31
 Warning
naming ConstantName Name '_Include_QNAME' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 31
 Warning
misc FinalParameters Parameter value should be final. 433
 Warning
javadoc JavadocMethod Expected @param tag for 'value'. 433
 Warning
misc FinalParameters Parameter value should be final. 443
 Warning
javadoc JavadocMethod Expected @param tag for 'value'. 443

org/opentrafficsim/road/network/factory/vissim/xsd/ParseType.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 34
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 36
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 38
 Warning
misc FinalParameters Parameter v should be final. 40
 Warning
misc FinalParameters Parameter v should be final. 54

org/opentrafficsim/road/network/factory/vissim/xsd/ROADLAYOUT.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 127
 Warning
design VisibilityModifier Variable 'speedlimit' must be private and have accessor methods. 128
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 130
 Warning
design VisibilityModifier Variable 'laneOrNOTRAFFICLANEOrSHOULDER' must be private and have accessor methods. 134
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 136
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 137
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 139
 Warning
design VisibilityModifier Variable 'roadtype' must be private and have accessor methods. 140
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 142
 Warning
design VisibilityModifier Variable 'width' must be private and have accessor methods. 143
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 145
 Warning
design VisibilityModifier Variable 'lanekeeping' must be private and have accessor methods. 146
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 148
 Warning
design VisibilityModifier Variable 'overtaking' must be private and have accessor methods. 149
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 151
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 153
 Warning
javadoc JavadocMethod Expected @return tag. 170
 Warning
javadoc JavadocMethod Expected @return tag. 195
 Warning
misc FinalParameters Parameter value should be final. 217
 Warning
misc FinalParameters Parameter value should be final. 235
 Warning
misc FinalParameters Parameter value should be final. 253
 Warning
misc FinalParameters Parameter value should be final. 271
 Warning
misc FinalParameters Parameter value should be final. 289
 Warning
misc FinalParameters Parameter value should be final. 307
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 351
 Warning
design VisibilityModifier Variable 'speedlimit' must be private and have accessor methods. 352
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 354
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 355
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 357
 Warning
design VisibilityModifier Variable 'lanetype' must be private and have accessor methods. 358
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 360
 Warning
design VisibilityModifier Variable 'offset' must be private and have accessor methods. 361
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 363
 Warning
design VisibilityModifier Variable 'width' must be private and have accessor methods. 364
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 366
 Warning
design VisibilityModifier Variable 'direction' must be private and have accessor methods. 367
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 369
 Warning
design VisibilityModifier Variable 'color' must be private and have accessor methods. 370
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 372
 Warning
design VisibilityModifier Variable 'overtaking' must be private and have accessor methods. 373
 Warning
javadoc JavadocMethod Expected @return tag. 390
 Warning
misc FinalParameters Parameter value should be final. 412
 Warning
misc FinalParameters Parameter value should be final. 430
 Warning
misc FinalParameters Parameter value should be final. 448
 Warning
misc FinalParameters Parameter value should be final. 466
 Warning
misc FinalParameters Parameter value should be final. 484
 Warning
misc FinalParameters Parameter value should be final. 502
 Warning
misc FinalParameters Parameter value should be final. 520
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 547
 Warning
design VisibilityModifier Variable 'gtutype' must be private and have accessor methods. 548
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 550
 Warning
design VisibilityModifier Variable 'legalspeedlimit' must be private and have accessor methods. 551
 Warning
misc FinalParameters Parameter value should be final. 566
 Warning
misc FinalParameters Parameter value should be final. 584
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 617
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 618
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 620
 Warning
design VisibilityModifier Variable 'offset' must be private and have accessor methods. 621
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 623
 Warning
design VisibilityModifier Variable 'width' must be private and have accessor methods. 624
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 626
 Warning
design VisibilityModifier Variable 'color' must be private and have accessor methods. 627
 Warning
misc FinalParameters Parameter value should be final. 642
 Warning
misc FinalParameters Parameter value should be final. 660
 Warning
misc FinalParameters Parameter value should be final. 678
 Warning
misc FinalParameters Parameter value should be final. 696
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 727
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 728
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 730
 Warning
design VisibilityModifier Variable 'offset' must be private and have accessor methods. 731
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 733
 Warning
design VisibilityModifier Variable 'width' must be private and have accessor methods. 734
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 736
 Warning
design VisibilityModifier Variable 'color' must be private and have accessor methods. 737
 Warning
misc FinalParameters Parameter value should be final. 752
 Warning
misc FinalParameters Parameter value should be final. 770
 Warning
misc FinalParameters Parameter value should be final. 788
 Warning
misc FinalParameters Parameter value should be final. 806
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 835
 Warning
design VisibilityModifier Variable 'gtutype' must be private and have accessor methods. 836
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 838
 Warning
design VisibilityModifier Variable 'legalspeedlimit' must be private and have accessor methods. 839
 Warning
misc FinalParameters Parameter value should be final. 854
 Warning
misc FinalParameters Parameter value should be final. 872
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 904
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 905
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 907
 Warning
design VisibilityModifier Variable 'type' must be private and have accessor methods. 908
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 910
 Warning
design VisibilityModifier Variable 'offset' must be private and have accessor methods. 911
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 913
 Warning
design VisibilityModifier Variable 'width' must be private and have accessor methods. 914
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 916
 Warning
design VisibilityModifier Variable 'color' must be private and have accessor methods. 917
 Warning
misc FinalParameters Parameter value should be final. 932
 Warning
misc FinalParameters Parameter value should be final. 950
 Warning
misc FinalParameters Parameter value should be final. 968
 Warning
misc FinalParameters Parameter value should be final. 986
 Warning
misc FinalParameters Parameter value should be final. 1004

org/opentrafficsim/road/network/factory/vissim/xsd/ROADTYPE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 59
 Warning
design VisibilityModifier Variable 'speedlimit' must be private and have accessor methods. 60
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 62
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 63
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 65
 Warning
design VisibilityModifier Variable 'defaultlanewidth' must be private and have accessor methods. 66
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 68
 Warning
design VisibilityModifier Variable 'defaultlanekeeping' must be private and have accessor methods. 69
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 71
 Warning
design VisibilityModifier Variable 'defaultovertaking' must be private and have accessor methods. 72
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 74
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 76
 Warning
javadoc JavadocMethod Expected @return tag. 93
 Warning
misc FinalParameters Parameter value should be final. 115
 Warning
misc FinalParameters Parameter value should be final. 133
 Warning
misc FinalParameters Parameter value should be final. 151
 Warning
misc FinalParameters Parameter value should be final. 169
 Warning
misc FinalParameters Parameter value should be final. 187
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 214
 Warning
design VisibilityModifier Variable 'gtutype' must be private and have accessor methods. 215
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 217
 Warning
design VisibilityModifier Variable 'legalspeedlimit' must be private and have accessor methods. 218
 Warning
misc FinalParameters Parameter value should be final. 233
 Warning
misc FinalParameters Parameter value should be final. 251

org/opentrafficsim/road/network/factory/vissim/xsd/ROUTE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 45
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 46
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 48
 Warning
design VisibilityModifier Variable 'nodelist' must be private and have accessor methods. 51
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 53
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 55
 Warning
misc FinalParameters Parameter value should be final. 70
 Warning
javadoc JavadocMethod Expected @return tag. 90
 Warning
misc FinalParameters Parameter value should be final. 112

org/opentrafficsim/road/network/factory/vissim/xsd/ROUTEMIX.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
design VisibilityModifier Variable 'route' must be private and have accessor methods. 57
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 59
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 60
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 62
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 64
 Warning
javadoc JavadocMethod Expected @return tag. 81
 Warning
misc FinalParameters Parameter value should be final. 103
 Warning
misc FinalParameters Parameter value should be final. 121
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 148
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 149
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 151
 Warning
design VisibilityModifier Variable 'weight' must be private and have accessor methods. 152
 Warning
misc FinalParameters Parameter value should be final. 167
 Warning
javadoc JavadocMethod Expected @return tag. 175
 Warning
misc FinalParameters Parameter value should be final. 183
 Warning
javadoc JavadocMethod Expected @param tag for 'value'. 183

org/opentrafficsim/road/network/factory/vissim/xsd/SHORTESTROUTE.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 49
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 50
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 52
 Warning
design VisibilityModifier Variable 'from' must be private and have accessor methods. 55
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 57
 Warning
design VisibilityModifier Variable 'to' must be private and have accessor methods. 60
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 62
 Warning
design VisibilityModifier Variable 'via' must be private and have accessor methods. 65
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 67
 Warning
design VisibilityModifier Variable 'distancecost' must be private and have accessor methods. 68
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 70
 Warning
design VisibilityModifier Variable 'timecost' must be private and have accessor methods. 71
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 73
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 75
 Warning
misc FinalParameters Parameter value should be final. 90
 Warning
misc FinalParameters Parameter value should be final. 108
 Warning
misc FinalParameters Parameter value should be final. 126
 Warning
javadoc JavadocMethod Expected @return tag. 146
 Warning
misc FinalParameters Parameter value should be final. 168
 Warning
misc FinalParameters Parameter value should be final. 186
 Warning
misc FinalParameters Parameter value should be final. 204

org/opentrafficsim/road/network/factory/vissim/xsd/SHORTESTROUTEMIX.java

Severity Category Rule Message Line
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
design VisibilityModifier Variable 'shortestroute' must be private and have accessor methods. 57
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 59
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 60
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 62
 Warning
design VisibilityModifier Variable 'base' must be private and have accessor methods. 64
 Warning
javadoc JavadocMethod Expected @return tag. 81
 Warning
misc FinalParameters Parameter value should be final. 103
 Warning
misc FinalParameters Parameter value should be final. 121
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 148
 Warning
design VisibilityModifier Variable 'name' must be private and have accessor methods. 149
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 151
 Warning
design VisibilityModifier Variable 'weight' must be private and have accessor methods. 152
 Warning
misc FinalParameters Parameter value should be final. 167
 Warning
javadoc JavadocMethod Expected @return tag. 175
 Warning
misc FinalParameters Parameter value should be final. 183
 Warning
javadoc JavadocMethod Expected @param tag for 'value'. 183