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
b0cf3598
"README.md" did not exist on "60e8b1b13c2bc1f5cf53d2dc6da63b84fcba7401"
Commit
b0cf3598
authored
14 years ago
by
izabel
Browse files
Options
Downloads
Patches
Plain Diff
[LMS-1875] fix dependencies
SVN: 18600
parent
6f54aeef
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/generic/client/web/client/application/ui/AddScriptDialog.java
+3
-3
3 additions, 3 deletions
...ric/client/web/client/application/ui/AddScriptDialog.java
with
3 additions
and
3 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/AddScriptDialog.java
+
3
−
3
View file @
b0cf3598
...
...
@@ -24,6 +24,7 @@ import com.google.gwt.user.client.rpc.AsyncCallback;
import
ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientServiceAsync
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.Dict
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.GenericConstants
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.DescriptionField
;
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.MultilineVarcharField
;
...
...
@@ -34,7 +35,6 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.widget.
import
ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IDelegatedAction
;
import
ch.systemsx.cisd.openbis.generic.shared.basic.dto.EntityKind
;
import
ch.systemsx.cisd.openbis.generic.shared.basic.dto.Script
;
import
ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.Constants
;
/**
* {@link Window} containing script registration form.
...
...
@@ -75,7 +75,7 @@ public class AddScriptDialog extends AbstractRegistrationDialog
private
SimpleComboBox
<
String
>
createEntityKindOrAllField
(
EntityKind
entityKindOrNull
)
{
SimpleComboBox
<
String
>
options
=
new
SimpleComboBox
<
String
>();
options
.
add
(
Constants
.
ALL_ENTITY_KINDS
);
options
.
add
(
Generic
Constants
.
ALL_ENTITY_KINDS
);
if
(
entityKindOrNull
!=
null
)
{
options
.
add
(
entityKindOrNull
.
name
());
...
...
@@ -112,7 +112,7 @@ public class AddScriptDialog extends AbstractRegistrationDialog
newScript
.
setScript
(
scriptField
.
getValue
());
EntityKind
kind
=
null
;
String
selectedEntityKind
=
entityKindField
.
getValue
().
getValue
();
if
(
selectedEntityKind
.
equals
(
Constants
.
ALL_ENTITY_KINDS
)
==
false
)
if
(
selectedEntityKind
.
equals
(
Generic
Constants
.
ALL_ENTITY_KINDS
)
==
false
)
{
kind
=
EntityKind
.
valueOf
(
selectedEntityKind
);
}
...
...
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