X-Git-Url: http://secure.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/sql/Scrollable.java b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/sql/Scrollable.java new file mode 100644 index 0000000..6068ca0 --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.quantum.sql/src/com/quantum/sql/Scrollable.java @@ -0,0 +1,20 @@ +package com.quantum.sql; + +import java.sql.Connection; +import java.sql.SQLException; + + +/** + * @author BC + */ +public interface Scrollable { + public void nextPage(Connection connection) throws SQLException; + public void previousPage(Connection connection) throws SQLException; + public boolean hasNextPage(); + public boolean hasPreviousPage(); + public void setFullMode(boolean fullMode); + public boolean isFullMode(); + public int getStart(); + public int getEnd(); + public int getLast(); +}