Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BraillePlot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Georg Graßnick
BraillePlot
Merge requests
!38
Added cli parameters for title and axis labels.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added cli parameters for title and axis labels.
feat/cli_update-37
into
master
Overview
4
Commits
1
Pipelines
0
Changes
3
Merged
Ghost User
requested to merge
feat/cli_update-37
into
master
5 years ago
Overview
4
Commits
1
Pipelines
0
Changes
3
Expand
I added the parameters as we agreed in issue
#37 (closed)
.
1
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
34273f8d
1 commit,
5 years ago
3 files
+
17
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/main/java/de/tudresden/inf/mci/brailleplot/commandline/CommandLineParser.java
+
4
−
1
Options
@@ -24,7 +24,10 @@ public class CommandLineParser {
mOptions
.
addOption
(
"h"
,
SettingType
.
DISPLAY_HELP
.
toString
(),
false
,
"Print help and exit"
)
.
addOption
(
"c"
,
SettingType
.
CSV_LOCATION
.
toString
(),
true
,
"Path to CSV"
)
.
addOption
(
"s"
,
SettingType
.
SEMANTIC_MAPPING
.
toString
(),
true
,
"Literal for semantic mapping"
)
.
addOption
(
"p"
,
SettingType
.
PRINTER_CONFIG_PATH
.
toString
(),
true
,
"Path to printer configuration file"
);
.
addOption
(
"p"
,
SettingType
.
PRINTER_CONFIG_PATH
.
toString
(),
true
,
"Path to printer configuration file"
)
.
addOption
(
"t"
,
SettingType
.
DIAGRAM_TITLE
.
toString
(),
true
,
"Title of the diagram."
)
.
addOption
(
"x"
,
SettingType
.
X_AXIS_LABEL
.
toString
(),
true
,
"Label of X-axis including unit."
)
.
addOption
(
"y"
,
SettingType
.
Y_AXIS_LABEL
.
toString
(),
true
,
"Label of Y-axis including unit."
);
}
/**
Loading