-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
Showing
23 changed files
with
706 additions
and
349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
* | ||
* Contact: [email protected] | ||
*/ | ||
|
||
package org.eclipse.mosaic.fed.sumo.bridge; | ||
|
||
|
||
|
@@ -45,6 +46,12 @@ public class LibSumoBridge implements Bridge { | |
private final RouteFacade routeControl; | ||
private final PoiFacade poiControl; | ||
|
||
/** | ||
* Constructor for the {@link LibSumoBridge}, initializing simulation and facades based on configuration. | ||
* | ||
* @param sumoConfiguration the MOSAIC internal {@link CSumo SUMO configuration} | ||
* @param parameters the program arguments for starting the simulation | ||
*/ | ||
public LibSumoBridge(CSumo sumoConfiguration, List<String> parameters) { | ||
|
||
Simulation.load(new StringVector(parameters)); | ||
|
Oops, something went wrong.