Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
NUI
TULIP-CPS
Commits
9adb3e93
Commit
9adb3e93
authored
Jun 12, 2020
by
Nico Mack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fixes to buildFromProperties method
parent
a7dede18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
CPS/src/lu/list/itis/dkd/tui/widget/corona/builder/BaseArcGraphBuilder.java
...is/dkd/tui/widget/corona/builder/BaseArcGraphBuilder.java
+4
-4
No files found.
CPS/src/lu/list/itis/dkd/tui/widget/corona/builder/BaseArcGraphBuilder.java
View file @
9adb3e93
...
@@ -127,10 +127,10 @@ public class BaseArcGraphBuilder<B extends BaseArcGraphBuilder<B>> extends Value
...
@@ -127,10 +127,10 @@ public class BaseArcGraphBuilder<B extends BaseArcGraphBuilder<B>> extends Value
labelShape
=
ShapeBootstrapper
.
getShape
(
rootElement
.
getChild
(
Externalization
.
LABEL_SHAPE_NODE
),
context
,
callback
);
labelShape
=
ShapeBootstrapper
.
getShape
(
rootElement
.
getChild
(
Externalization
.
LABEL_SHAPE_NODE
),
context
,
callback
);
labelFormat
=
BootstrappingUtils
.
getContentAsString
(
rootElement
,
Externalization
.
LABEL_FORMAT_NODE
,
BootstrappingUtils
.
OPTIONAL
,
null
);
labelFormat
=
BootstrappingUtils
.
getContentAsString
(
rootElement
,
Externalization
.
LABEL_FORMAT_NODE
,
BootstrappingUtils
.
OPTIONAL
,
null
,
context
);
labelGap
=
BootstrappingUtils
.
getContentAsInteger
(
rootElement
,
Externalization
.
LABEL_GAP_NODE
,
BootstrappingUtils
.
OPTIONAL
,
0
);
labelGap
=
BootstrappingUtils
.
getContentAsInteger
(
rootElement
,
Externalization
.
LABEL_GAP_NODE
,
BootstrappingUtils
.
OPTIONAL
,
0
,
context
);
insetBorder
=
BootstrappingUtils
.
getContentAsInteger
(
rootElement
,
Externalization
.
INSET_BORDER_NODE
,
BootstrappingUtils
.
OPTIONAL
,
0
);
insetBorder
=
BootstrappingUtils
.
getContentAsInteger
(
rootElement
,
Externalization
.
INSET_BORDER_NODE
,
BootstrappingUtils
.
OPTIONAL
,
0
,
context
);
stretchToFit
=
BootstrappingUtils
.
getContentAsBoolean
(
rootElement
,
CpsNamespace
.
STRETCH_TO_FIT_NODE
,
BootstrappingUtils
.
OPTIONAL
,
Boolean
.
FALSE
);
stretchToFit
=
BootstrappingUtils
.
getContentAsBoolean
(
rootElement
,
CpsNamespace
.
STRETCH_TO_FIT_NODE
,
BootstrappingUtils
.
OPTIONAL
,
Boolean
.
FALSE
,
context
);
title
=
BootstrappingUtils
.
getContentAsString
(
rootElement
,
Externalization
.
TITLE_NODE
,
BootstrappingUtils
.
OPTIONAL
,
Externalization
.
EMPTY_STRING
,
context
);
title
=
BootstrappingUtils
.
getContentAsString
(
rootElement
,
Externalization
.
TITLE_NODE
,
BootstrappingUtils
.
OPTIONAL
,
Externalization
.
EMPTY_STRING
,
context
);
String
fontName
=
BootstrappingUtils
.
getContentAsString
(
rootElement
,
Externalization
.
FONT_NODE
,
BootstrappingUtils
.
OPTIONAL
,
"Monospaced"
);
//$NON-NLS-1$
String
fontName
=
BootstrappingUtils
.
getContentAsString
(
rootElement
,
Externalization
.
FONT_NODE
,
BootstrappingUtils
.
OPTIONAL
,
"Monospaced"
);
//$NON-NLS-1$
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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