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
Commits
473c3828
Commit
473c3828
authored
5 years ago
by
Leonard Kupper
Browse files
Options
Downloads
Patches
Plain Diff
Add language to javadoc.
parent
7a6ddd91
No related branches found
No related tags found
1 merge request
!37
Bar chart update & according legend change
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/tudresden/inf/mci/brailleplot/rendering/Legend.java
+6
-1
6 additions, 1 deletion
...va/de/tudresden/inf/mci/brailleplot/rendering/Legend.java
with
6 additions
and
1 deletion
src/main/java/de/tudresden/inf/mci/brailleplot/rendering/Legend.java
+
6
−
1
View file @
473c3828
...
...
@@ -22,7 +22,7 @@ public class Legend implements Renderable {
private
int
mTextureExampleHeightCells
=
1
;
/**
* Constructor. Creates a legend.
* Constructor. Creates a legend
with default language (DE_BASISSCHRIFT)
.
* @param title The title of the legend.
*/
public
Legend
(
final
String
title
)
{
...
...
@@ -30,6 +30,11 @@ public class Legend implements Renderable {
setLanguage
(
BrailleLanguage
.
Language
.
DE_BASISSCHRIFT
);
}
/**
* Constructor. Creates a legend with a defined language.
* @param title The title of the legend.
* @param language A {@link BrailleLanguage.Language}.
*/
public
Legend
(
final
String
title
,
final
BrailleLanguage
.
Language
language
)
{
setTitle
(
title
);
setLanguage
(
language
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment