Skip to content

Commit f1f0682

Browse files
authoredJul 3, 2024
chore(checkstyle): bumped checkstyle version to 10.15.0 (#392)
* done to support intelliJ checkstyle plugin * some adjustments in the configuration were required due to version changes * chore(checkstyle): set validateThrows to false (see http://www.javapractices.com/topic/TopicAction.do?Id=171) * chore(checkstyle): added further valid abbreviations * chore(checkstyle): getting rid of more checkstyle warnings * chore(checkstyle): added SuppressWarnings module so checkstyle warnings can be suppressed if necessary * chore(checkstyle): ignore naming in conventions in Wgs84Projection Signed-off-by: Moritz Schweppenhäuser <moritz.schweppenhaeuser@fokus.fraunhofer.de>
1 parent 84cce36 commit f1f0682

File tree

23 files changed

+706
-349
lines changed

23 files changed

+706
-349
lines changed
 

‎checkstyle.xml

+15-13
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@
1515
Authors: Max Vetrenko, Ruslan Diachenko, Roman Ivanov.
1616
-->
1717

18-
<module name = "Checker">
18+
<module name="Checker">
1919
<property name="charset" value="UTF-8"/>
2020

2121
<property name="severity" value="warning"/>
2222

2323
<property name="fileExtensions" value="java, properties, xml"/>
2424

25+
<module name="SuppressWarningsFilter"/>
2526
<module name="SuppressionFilter">
26-
<property name="file" value="${config_loc}/checkstyle-excludes.xml" />
27+
<property name="file" value="${config_loc}/checkstyle-excludes.xml"/>
2728
</module>
2829

2930
<!-- Excludes all 'module-info.java' files -->
@@ -44,14 +45,15 @@
4445
</module>
4546

4647
<module name="RegexpSingleline">
47-
<property name="format" value="^\s*\*\s*@author" />
48-
<property name="minimum" value="0" />
49-
<property name="maximum" value="0" />
50-
<property name="message" value="Javadoc has illegal ''author'' tag." />
51-
<property name="fileExtensions" value="java" />
48+
<property name="format" value="^\s*\*\s*@author"/>
49+
<property name="minimum" value="0"/>
50+
<property name="maximum" value="0"/>
51+
<property name="message" value="Javadoc has illegal ''author'' tag."/>
52+
<property name="fileExtensions" value="java"/>
5253
</module>
5354

5455
<module name="TreeWalker">
56+
<module name="SuppressWarningsHolder"/>
5557
<module name="OuterTypeFilename"/>
5658
<module name="IllegalTokenText">
5759
<property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/>
@@ -154,7 +156,7 @@
154156
value="Type name ''{0}'' must match pattern ''{1}''."/>
155157
</module>
156158
<module name="MemberName">
157-
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9]*$"/>
159+
<property name="format" value="(^[a-z]([a-zA-Z0-9]*)?$)|^x$|^y$|^z$"/>
158160
<message key="name.invalidPattern"
159161
value="Member name ''{0}'' must match pattern ''{1}''."/>
160162
</module>
@@ -175,7 +177,7 @@
175177
</module>
176178
<module name="LocalVariableName">
177179
<property name="tokens" value="VARIABLE_DEF"/>
178-
<property name="format" value="^[a-z]([a-z0-9][a-zA-Z0-9]*)?$"/>
180+
<property name="format" value="(^[a-z]([a-zA-Z0-9]*)?$)|^x$|^y$|^z$"/>
179181
<message key="name.invalidPattern"
180182
value="Local variable name ''{0}'' must match pattern ''{1}''."/>
181183
</module>
@@ -216,7 +218,7 @@
216218
<module name="AbbreviationAsWordInName">
217219
<property name="ignoreFinal" value="false"/>
218220
<property name="allowedAbbreviationLength" value="1"/>
219-
<property name="allowedAbbreviations" value="CAM,IVIM,SPATM,DENM" />
221+
<property name="allowedAbbreviations" value="CAM,IVIM,SPATM,DENM,SQL,CMD"/>
220222
</module>
221223
<module name="OverloadMethodsDeclarationOrder"/>
222224
<module name="VariableDeclarationUsageDistance"/>
@@ -263,17 +265,17 @@
263265
value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
264266
</module>
265267
<module name="JavadocMethod">
266-
<property name="scope" value="public"/>
268+
<property name="accessModifiers" value="public"/>
267269
<property name="allowMissingParamTags" value="true"/>
268-
<property name="validateThrows" value="true"/>
270+
<property name="validateThrows" value="false"/>
269271
<property name="allowMissingReturnTag" value="true"/>
270272
<property name="allowedAnnotations" value="Override, Test, Deprecated"/>
271273
</module>
272274
<module name="MissingJavadocMethod">
273275
<property name="scope" value="public"/>
274276
<property name="minLineCount" value="3"/>
275277
<property name="allowedAnnotations" value="Override, Test"/>
276-
<property name="ignoreMethodNamesRegex" value="^get.*$|^with.*$|^set.*$|^is.*$|"/>
278+
<property name="ignoreMethodNamesRegex" value="^get.*$|^with.*$|^set.*$|^is.*$|^add.*$"/>
277279
</module>
278280
<module name="MethodName">
279281
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9_]*$"/>

‎fed/mosaic-application/src/main/java/org/eclipse/mosaic/fed/application/ambassador/simulation/AbstractSimulationUnit.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ public final String getId() {
150150
*
151151
* @param event the event to process.
152152
* @return true if this method has processed the given event
153+
* @throws RuntimeException if {@link Event} could not be properly handled by the processor
153154
*/
154155
public final boolean preProcessEvent(final Event event) {
155156
final Object resource = event.getResource();
@@ -501,10 +502,6 @@ public final File getConfigurationPath() {
501502
return SimulationKernel.SimulationKernel.getConfigurationPath();
502503
}
503504

504-
public boolean canProcessEvent() {
505-
return true;
506-
}
507-
508505
@Override
509506
public String getGroup() {
510507
return group;

‎fed/mosaic-sumo/src/main/java/org/eclipse/mosaic/fed/sumo/bridge/LibSumoBridge.java

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
*
1313
* Contact: mosaic@fokus.fraunhofer.de
1414
*/
15+
1516
package org.eclipse.mosaic.fed.sumo.bridge;
1617

1718

@@ -45,6 +46,12 @@ public class LibSumoBridge implements Bridge {
4546
private final RouteFacade routeControl;
4647
private final PoiFacade poiControl;
4748

49+
/**
50+
* Constructor for the {@link LibSumoBridge}, initializing simulation and facades based on configuration.
51+
*
52+
* @param sumoConfiguration the MOSAIC internal {@link CSumo SUMO configuration}
53+
* @param parameters the program arguments for starting the simulation
54+
*/
4855
public LibSumoBridge(CSumo sumoConfiguration, List<String> parameters) {
4956

5057
Simulation.load(new StringVector(parameters));

0 commit comments

Comments
 (0)