Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
vadere
vadere
Commits
45f7738f
Commit
45f7738f
authored
Sep 04, 2018
by
Benedikt Kleinmeier
Browse files
In "VadereConsole", fixed typos in help texts of "ArgumentParser".
parent
80350432
Pipeline
#67620
failed with stages
in 68 minutes and 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereSimulator/src/org/vadere/simulator/entrypoints/VadereConsole.java
View file @
45f7738f
...
...
@@ -47,7 +47,7 @@ public class VadereConsole {
// Run Project
Subparser
projectRun
=
subparsers
.
addParser
(
SubCommand
.
PROJECT_RUN
.
getCmdName
())
.
help
(
"This command uses a V
adere P
roject and runs selected scenario."
)
.
help
(
"This command uses a V
ADERE p
roject and runs selected scenario."
)
.
setDefault
(
"func"
,
new
ProjectRunSubCommand
());
projectRun
.
addArgument
(
"--project-dir"
,
"-p"
)
.
required
(
true
)
...
...
@@ -70,18 +70,18 @@ public class VadereConsole {
.
setDefault
(
"output"
)
.
dest
(
"output-dir"
)
// set name in namespace
.
type
(
String
.
class
)
.
help
(
"Supply differe
r
nt output directory path to use."
);
.
help
(
"Supply different output directory path to use."
);
scenarioRun
.
addArgument
(
"--scenario-file"
,
"-f"
)
.
required
(
true
)
.
type
(
String
.
class
)
.
dest
(
"scenario-file"
)
.
help
(
"Scenario file
s
to run"
);
.
help
(
"Scenario file to run"
);
// Run SUQ
Subparser
suqRun
=
subparsers
.
addParser
(
SubCommand
.
SUQ
.
getCmdName
())
.
help
(
"Run a single scenario file t
o
specify
to fully controll folder structure for input and output
."
)
.
help
(
"Run a single scenario file
bu
t specify
output path manually
."
)
.
setDefault
(
"func"
,
new
SuqSubCommand
());
suqRun
.
addArgument
(
"--output-dir"
,
"-o"
)
...
...
@@ -89,7 +89,7 @@ public class VadereConsole {
.
setDefault
(
"output"
)
.
dest
(
"output-dir"
)
// set name in namespace
.
type
(
String
.
class
)
.
help
(
"Supply differe
r
nt output directory path to use."
);
.
help
(
"Supply different output directory path to use."
);
suqRun
.
addArgument
(
"--scenario-file"
,
"-f"
)
.
required
(
true
)
...
...
@@ -101,7 +101,7 @@ public class VadereConsole {
// Run Migration Assistant
Subparser
migrationAssistant
=
subparsers
.
addParser
(
SubCommand
.
MIGRATE
.
getCmdName
())
.
help
(
"Run migration assistant on single sceanrio file"
)
.
help
(
"Run migration assistant on single sceanrio file
.
"
)
.
setDefault
(
"func"
,
new
MigrationSubCommand
());
migrationAssistant
.
addArgument
(
"path"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment