gradle: разделение на gradle-module's
This commit is contained in:
9
tools/src/main/java/ghast/database/RowMapper.java
Normal file
9
tools/src/main/java/ghast/database/RowMapper.java
Normal file
@@ -0,0 +1,9 @@
|
||||
package ghast.database;
|
||||
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
|
||||
public interface RowMapper<T> {
|
||||
|
||||
T mapRow(ResultSet rs, int rowNum) throws SQLException;
|
||||
}
|
||||
Reference in New Issue
Block a user