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
7dae84dc
Commit
7dae84dc
authored
16 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
minor: use orNull convention
SVN: 9148
parent
9704708b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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/dto/DefaultResultSetConfig.java
+5
-4
5 additions, 4 deletions
...generic/client/web/client/dto/DefaultResultSetConfig.java
with
5 additions
and
4 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/dto/DefaultResultSetConfig.java
+
5
−
4
View file @
7dae84dc
...
@@ -34,10 +34,10 @@ public class DefaultResultSetConfig<K> implements IResultSetConfig<K>, IsSeriali
...
@@ -34,10 +34,10 @@ public class DefaultResultSetConfig<K> implements IResultSetConfig<K>, IsSeriali
/**
/**
* The result set key.
* The result set key.
* <p>
* <p>
* C
ould
be <code>null</code> if unknown.
* C
an
be <code>null</code> if unknown.
* </p>
* </p>
*/
*/
private
K
resultSetKey
;
private
K
resultSetKey
OrNull
;
public
final
void
setLimit
(
final
int
limit
)
public
final
void
setLimit
(
final
int
limit
)
{
{
...
@@ -56,7 +56,7 @@ public class DefaultResultSetConfig<K> implements IResultSetConfig<K>, IsSeriali
...
@@ -56,7 +56,7 @@ public class DefaultResultSetConfig<K> implements IResultSetConfig<K>, IsSeriali
public
final
void
setResultSetKey
(
final
K
resultSetKey
)
public
final
void
setResultSetKey
(
final
K
resultSetKey
)
{
{
this
.
resultSetKey
=
resultSetKey
;
this
.
resultSetKey
OrNull
=
resultSetKey
;
}
}
//
//
...
@@ -78,8 +78,9 @@ public class DefaultResultSetConfig<K> implements IResultSetConfig<K>, IsSeriali
...
@@ -78,8 +78,9 @@ public class DefaultResultSetConfig<K> implements IResultSetConfig<K>, IsSeriali
return
sortInfo
;
return
sortInfo
;
}
}
/** Can be <code>null</code> if unknown. */
public
final
K
getResultSetKey
()
public
final
K
getResultSetKey
()
{
{
return
resultSetKey
;
return
resultSetKey
OrNull
;
}
}
}
}
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