Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
2e82d7ad
Commit
2e82d7ad
authored
12 years ago
by
cramakri
Browse files
Options
Downloads
Patches
Plain Diff
MINOR : Remove warning
SVN: 26174
parent
5bf801a7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/source/java/ch/systemsx/cisd/openbis/plugin/generic/client/web/client/application/experiment/GenericExperimentViewer.java
+27
-25
27 additions, 25 deletions
...lient/application/experiment/GenericExperimentViewer.java
with
27 additions
and
25 deletions
openbis/source/java/ch/systemsx/cisd/openbis/plugin/generic/client/web/client/application/experiment/GenericExperimentViewer.java
+
27
−
25
View file @
2e82d7ad
...
@@ -21,12 +21,6 @@ import java.util.Collections;
...
@@ -21,12 +21,6 @@ import java.util.Collections;
import
java.util.List
;
import
java.util.List
;
import
java.util.Set
;
import
java.util.Set
;
import
com.extjs.gxt.ui.client.widget.Component
;
import
com.extjs.gxt.ui.client.widget.Html
;
import
com.extjs.gxt.ui.client.widget.layout.BorderLayout
;
import
com.google.gwt.user.client.rpc.AsyncCallback
;
import
com.google.gwt.user.client.ui.Widget
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.AttachmentVersionsSection
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.AttachmentVersionsSection
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.Dict
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.Dict
;
...
@@ -58,6 +52,12 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Experiment;
...
@@ -58,6 +52,12 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Experiment;
import
ch.systemsx.cisd.openbis.plugin.generic.client.web.client.IGenericClientServiceAsync
;
import
ch.systemsx.cisd.openbis.plugin.generic.client.web.client.IGenericClientServiceAsync
;
import
ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.AbstractEntityDataSetsSection
;
import
ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.AbstractEntityDataSetsSection
;
import
com.extjs.gxt.ui.client.widget.Component
;
import
com.extjs.gxt.ui.client.widget.Html
;
import
com.extjs.gxt.ui.client.widget.layout.BorderLayout
;
import
com.google.gwt.user.client.rpc.AsyncCallback
;
import
com.google.gwt.user.client.ui.Widget
;
/**
/**
* The <i>generic</i> experiment viewer.
* The <i>generic</i> experiment viewer.
*
*
...
@@ -72,7 +72,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -72,7 +72,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
public
static
final
String
ID_PREFIX
=
GenericConstants
.
ID_PREFIX
+
PREFIX
;
public
static
final
String
ID_PREFIX
=
GenericConstants
.
ID_PREFIX
+
PREFIX
;
protected
final
IViewContext
<
IGenericClientServiceAsync
>
v
iewContext
;
protected
final
IViewContext
<
IGenericClientServiceAsync
>
localV
iewContext
;
protected
final
IIdAndCodeHolder
experimentId
;
protected
final
IIdAndCodeHolder
experimentId
;
...
@@ -102,7 +102,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -102,7 +102,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
this
.
experimentId
=
experimentId
;
this
.
experimentId
=
experimentId
;
this
.
experimentType
=
experimentType
;
this
.
experimentType
=
experimentType
;
this
.
v
iewContext
=
viewContext
;
this
.
localV
iewContext
=
viewContext
;
setLayout
(
new
BorderLayout
());
setLayout
(
new
BorderLayout
());
extendToolBar
();
extendToolBar
();
...
@@ -124,7 +124,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -124,7 +124,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
private
void
extendToolBar
()
private
void
extendToolBar
()
{
{
if
(
v
iewContext
.
isSimpleOrEmbeddedMode
())
if
(
localV
iewContext
.
isSimpleOrEmbeddedMode
())
{
{
return
;
return
;
}
}
...
@@ -137,7 +137,8 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -137,7 +137,8 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
isTrashEnabled
()
?
createDeletionCallback
()
isTrashEnabled
()
?
createDeletionCallback
()
:
createPermanentDeletionCallback
();
:
createPermanentDeletionCallback
();
new
ExperimentListDeletionConfirmationDialog
(
new
ExperimentListDeletionConfirmationDialog
(
viewContext
.
getCommonViewContext
(),
callback
,
getOriginalData
()).
show
();
localViewContext
.
getCommonViewContext
(),
callback
,
getOriginalData
())
.
show
();
}
}
}));
}));
addToolBarButton
(
createRevertDeletionButton
(
new
IDelegatedAction
()
addToolBarButton
(
createRevertDeletionButton
(
new
IDelegatedAction
()
...
@@ -145,7 +146,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -145,7 +146,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
@Override
@Override
public
void
execute
()
public
void
execute
()
{
{
new
RevertDeletionConfirmationDialog
(
v
iewContext
.
getCommonViewContext
(),
new
RevertDeletionConfirmationDialog
(
localV
iewContext
.
getCommonViewContext
(),
getOriginalData
(),
createRevertDeletionCallback
()).
show
();
getOriginalData
(),
createRevertDeletionCallback
()).
show
();
}
}
}));
}));
...
@@ -154,7 +155,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -154,7 +155,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
@Override
@Override
protected
void
reloadAllData
()
protected
void
reloadAllData
()
{
{
reloadExperiment
(
new
AbstractAsyncCallback
<
Experiment
>(
v
iewContext
)
reloadExperiment
(
new
AbstractAsyncCallback
<
Experiment
>(
localV
iewContext
)
{
{
@Override
@Override
...
@@ -168,16 +169,16 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -168,16 +169,16 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
protected
void
reloadExperiment
(
AbstractAsyncCallback
<
Experiment
>
callback
)
protected
void
reloadExperiment
(
AbstractAsyncCallback
<
Experiment
>
callback
)
{
{
v
iewContext
.
getCommonService
().
getExperimentInfo
(
new
TechId
(
experimentId
),
callback
);
localV
iewContext
.
getCommonService
().
getExperimentInfo
(
new
TechId
(
experimentId
),
callback
);
}
}
private
void
layoutExperimentDetailView
()
private
void
layoutExperimentDetailView
()
{
{
int
logId
=
v
iewContext
.
log
(
"layoutExperimentDetailView"
);
int
logId
=
localV
iewContext
.
log
(
"layoutExperimentDetailView"
);
updateOriginalData
(
experiment
);
updateOriginalData
(
experiment
);
removeAll
();
removeAll
();
propertiesPanelOrNull
=
new
ExperimentPropertiesPanel
(
experiment
,
v
iewContext
,
this
);
propertiesPanelOrNull
=
new
ExperimentPropertiesPanel
(
experiment
,
localV
iewContext
,
this
);
Component
lowerLeftComponentOrNull
=
tryCreateLowerLeftComponent
();
Component
lowerLeftComponentOrNull
=
tryCreateLowerLeftComponent
();
if
(
lowerLeftComponentOrNull
!=
null
)
if
(
lowerLeftComponentOrNull
!=
null
)
{
{
...
@@ -186,10 +187,10 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -186,10 +187,10 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
add
(
propertiesPanelOrNull
,
createLeftBorderLayoutData
());
add
(
propertiesPanelOrNull
,
createLeftBorderLayoutData
());
configureLeftPanel
(
propertiesPanelOrNull
);
configureLeftPanel
(
propertiesPanelOrNull
);
final
Html
loadingLabel
=
new
Html
(
v
iewContext
.
getMessage
(
Dict
.
LOAD_IN_PROGRESS
));
final
Html
loadingLabel
=
new
Html
(
localV
iewContext
.
getMessage
(
Dict
.
LOAD_IN_PROGRESS
));
add
(
loadingLabel
,
createRightBorderLayoutData
());
add
(
loadingLabel
,
createRightBorderLayoutData
());
layout
();
layout
();
v
iewContext
.
logStop
(
logId
);
localV
iewContext
.
logStop
(
logId
);
GWTUtils
.
executeDelayed
(
new
IDelegatedAction
()
GWTUtils
.
executeDelayed
(
new
IDelegatedAction
()
{
{
...
@@ -236,7 +237,8 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -236,7 +237,8 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
private
AttachmentVersionsSection
createAttachmentsSection
()
private
AttachmentVersionsSection
createAttachmentsSection
()
{
{
final
IAttachmentHolder
attachmentHolder
=
asExperimentAttachmentHolder
(
experimentId
);
final
IAttachmentHolder
attachmentHolder
=
asExperimentAttachmentHolder
(
experimentId
);
return
new
AttachmentVersionsSection
(
viewContext
.
getCommonViewContext
(),
attachmentHolder
);
return
new
AttachmentVersionsSection
(
localViewContext
.
getCommonViewContext
(),
attachmentHolder
);
}
}
private
static
IAttachmentHolder
asExperimentAttachmentHolder
(
private
static
IAttachmentHolder
asExperimentAttachmentHolder
(
...
@@ -278,7 +280,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -278,7 +280,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
dataSection
.
setIds
(
DisplayTypeIDGenerator
.
DATA_SETS_SECTION
);
dataSection
.
setIds
(
DisplayTypeIDGenerator
.
DATA_SETS_SECTION
);
allPanels
.
add
(
dataSection
);
allPanels
.
add
(
dataSection
);
allPanels
.
add
(
EntityHistoryGrid
.
createPropertiesHistorySection
(
v
iewContext
,
allPanels
.
add
(
EntityHistoryGrid
.
createPropertiesHistorySection
(
localV
iewContext
,
EntityKind
.
EXPERIMENT
,
new
TechId
(
experimentId
)));
EntityKind
.
EXPERIMENT
,
new
TechId
(
experimentId
)));
final
AttachmentVersionsSection
attachmentsSection
=
createAttachmentsSection
();
final
AttachmentVersionsSection
attachmentsSection
=
createAttachmentsSection
();
...
@@ -289,14 +291,14 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -289,14 +291,14 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
protected
DisposableTabContent
createExperimentSampleSection
()
protected
DisposableTabContent
createExperimentSampleSection
()
{
{
return
new
ExperimentSamplesSection
(
v
iewContext
,
return
new
ExperimentSamplesSection
(
localV
iewContext
,
v
iewContext
.
getMessage
(
Dict
.
EXPERIMENT_SAMPLES_SELCTION_TITLE
),
experimentType
,
localV
iewContext
.
getMessage
(
Dict
.
EXPERIMENT_SAMPLES_SELCTION_TITLE
),
experimentId
);
experimentType
,
experimentId
);
}
}
private
DisposableTabContent
createExperimentDataSetSection
()
private
DisposableTabContent
createExperimentDataSetSection
()
{
{
return
new
AbstractEntityDataSetsSection
(
v
iewContext
,
new
TechId
(
experimentId
),
return
new
AbstractEntityDataSetsSection
(
localV
iewContext
,
new
TechId
(
experimentId
),
experimentType
)
experimentType
)
{
{
...
@@ -313,7 +315,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -313,7 +315,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
private
SectionsPanel
layoutSections
(
List
<
DisposableTabContent
>
allPanels
)
private
SectionsPanel
layoutSections
(
List
<
DisposableTabContent
>
allPanels
)
{
{
final
SectionsPanel
container
=
final
SectionsPanel
container
=
new
SectionsPanel
(
v
iewContext
.
getCommonViewContext
(),
ID_PREFIX
+
experimentId
);
new
SectionsPanel
(
localV
iewContext
.
getCommonViewContext
(),
ID_PREFIX
+
experimentId
);
container
.
setDisplayID
(
DisplayTypeIDGenerator
.
GENERIC_EXPERIMENT_VIEWER
,
displayIdSuffix
);
container
.
setDisplayID
(
DisplayTypeIDGenerator
.
GENERIC_EXPERIMENT_VIEWER
,
displayIdSuffix
);
for
(
DisposableTabContent
panel
:
allPanels
)
for
(
DisposableTabContent
panel
:
allPanels
)
{
{
...
@@ -364,6 +366,6 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
...
@@ -364,6 +366,6 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
@Override
@Override
protected
String
getDeleteButtonLabel
()
protected
String
getDeleteButtonLabel
()
{
{
return
v
iewContext
.
getMessage
(
Dict
.
BUTTON_DELETE_EXPERIMENT
);
return
localV
iewContext
.
getMessage
(
Dict
.
BUTTON_DELETE_EXPERIMENT
);
}
}
}
}
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