Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
adapt
ace
Commits
01f82774
Commit
01f82774
authored
Feb 27, 2017
by
Michael Ritter
Browse files
Default scoping for fields
parent
2a7d71c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
ace-am/src/main/java/edu/umiacs/ace/monitor/support/PageBean.java
View file @
01f82774
...
...
@@ -12,19 +12,19 @@ public class PageBean {
private
static
Logger
LOG
=
Logger
.
getLogger
(
PageBean
.
class
);
// current page
int
page
;
private
int
page
;
//
page
number
int
count
;
// number
of items per page
private
int
count
;
// item offset (for db queries)
int
offset
;
private
int
offset
;
int
previous
;
int
next
;
int
end
;
private
int
previous
;
private
int
next
;
private
int
end
;
StringBuilder
url
;
private
StringBuilder
url
;
private
boolean
firstParam
;
public
PageBean
(
int
page
,
int
count
,
String
root
)
{
...
...
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