package com.quantum.sql; /** * @author BC */ public abstract class SQLResults { public abstract boolean isResultSet(); private long time; public long getTime() { return this.time; } public void setTime(long time) { this.time = time; } }