bwLehrpool Masterserver
Manages authentication and sharing of virtual machines between participating institutions
Paginator.java
Go to the documentation of this file.
1 package org.openslx.imagemaster.db;
2 
3 public class Paginator
4 {
5 
6  public static final int PER_PAGE = 400;
7 
8  public static String limitStatement( int page )
9  {
10  return " LIMIT " + ( page * PER_PAGE ) + ", " + PER_PAGE;
11  }
12 
13 }
static String limitStatement(int page)
Definition: Paginator.java:8