1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package frame.persist;
|
| import java.sql.PreparedStatement;
| import java.sql.ResultSet;
| import java.sql.SQLException;
|
| public interface IStepLoadable {
|
| boolean hasNextForLoad();
|
| void load(ResultSet rslt, Object... args) throws Exception;
|
| void setLoadParameters(PreparedStatement stmt) throws SQLException;
|
| }
|
|