Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
DataBrowser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Gui
DataBrowser
Commits
1eacfb78
Commit
1eacfb78
authored
Aug 1, 2017
by
Raphael GIRARDOT
Browse files
Options
Downloads
Patches
Plain Diff
minor changes
parent
0b4ae9b6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/cdma/gui/databrowser/DataBrowserController.java
+4
-4
4 additions, 4 deletions
.../java/org/cdma/gui/databrowser/DataBrowserController.java
with
4 additions
and
4 deletions
src/main/java/org/cdma/gui/databrowser/DataBrowserController.java
+
4
−
4
View file @
1eacfb78
...
@@ -1060,12 +1060,12 @@ public class DataBrowserController implements IAbstractController {
...
@@ -1060,12 +1060,12 @@ public class DataBrowserController implements IAbstractController {
Map
<
Element
,
IKey
>
sourcesTable
=
new
HashMap
<
Element
,
IKey
>();
Map
<
Element
,
IKey
>
sourcesTable
=
new
HashMap
<
Element
,
IKey
>();
Map
<
Element
,
IDataSourceBrowser
>
browsersTable
=
new
HashMap
<
Element
,
IDataSourceBrowser
>();
Map
<
Element
,
IDataSourceBrowser
>
browsersTable
=
new
HashMap
<
Element
,
IDataSourceBrowser
>();
Element
r
acine
=
document
.
getRootElement
();
Element
r
oot
=
document
.
getRootElement
();
final
DOMOutputter
domOutputter
=
new
DOMOutputter
();
final
DOMOutputter
domOutputter
=
new
DOMOutputter
();
// load chart properties
// load chart properties
Element
elemChartProp
=
r
acine
.
getChild
(
"chartParams"
);
Element
elemChartProp
=
r
oot
.
getChild
(
"chartParams"
);
if
(
elemChartProp
!=
null
)
{
if
(
elemChartProp
!=
null
)
{
org
.
w3c
.
dom
.
Element
chartPropNode
=
domOutputter
.
output
(
elemChartProp
);
org
.
w3c
.
dom
.
Element
chartPropNode
=
domOutputter
.
output
(
elemChartProp
);
...
@@ -1075,7 +1075,7 @@ public class DataBrowserController implements IAbstractController {
...
@@ -1075,7 +1075,7 @@ public class DataBrowserController implements IAbstractController {
}
}
/* Load docking view */
/* Load docking view */
Element
child
=
r
acine
.
getChild
(
"docking"
);
Element
child
=
r
oot
.
getChild
(
"docking"
);
Element
layoutElem
=
child
.
getChild
(
"dataitemlayout"
);
Element
layoutElem
=
child
.
getChild
(
"dataitemlayout"
);
String
attributeValue
=
layoutElem
.
getAttributeValue
(
"value"
);
String
attributeValue
=
layoutElem
.
getAttributeValue
(
"value"
);
...
@@ -1092,7 +1092,7 @@ public class DataBrowserController implements IAbstractController {
...
@@ -1092,7 +1092,7 @@ public class DataBrowserController implements IAbstractController {
/* Load docking view */
/* Load docking view */
Element
elemSources
=
r
acine
.
getChild
(
"sources"
);
Element
elemSources
=
r
oot
.
getChild
(
"sources"
);
if
(
elemSources
!=
null
)
{
// should not be null
if
(
elemSources
!=
null
)
{
// should not be null
List
<
Element
>
elemSourceList
=
elemSources
.
getChildren
(
"source"
);
List
<
Element
>
elemSourceList
=
elemSources
.
getChildren
(
"source"
);
for
(
Element
elemSource
:
elemSourceList
)
{
for
(
Element
elemSource
:
elemSourceList
)
{
...
...
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