package com.table_sql; import java.sql.ResultSet; import java.util.List; public interface CallBack { public abstract List getResults(ResultSet rs); }