OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rowsPerPage
(Results
1 - 2
of
2
) sorted by null
/external/autotest/frontend/client/src/autotest/common/table/
DynamicTable.java
61
protected Integer
rowsPerPage
;
157
assert
rowsPerPage
!= null;
165
paginator.setResultsPerPage(
rowsPerPage
.intValue());
171
public void setRowsPerPage(int
rowsPerPage
) {
172
assert
rowsPerPage
> 0;
173
this.
rowsPerPage
= Integer.valueOf(
rowsPerPage
);
175
paginator.setResultsPerPage(
rowsPerPage
);
/external/autotest/frontend/client/src/autotest/afe/
HostTableDecorator.java
43
public HostTableDecorator(HostTable table, int
rowsPerPage
) {
46
table.setRowsPerPage(
rowsPerPage
);
Completed in 78 milliseconds