repo.or.cz
/
se-panther.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add db002 subdirectory
[se-panther.git]
/
db002
/
src
/
SightreadingList.java
blob
7a87d52cb88462aa201d4a308313a5dd0bffebce
1
import
java
.
util
.
ArrayList
;
2
import
java
.
sql
.*;
3
4
public class
SightreadingList
5
extends
ArrayList
<
SightreadingEntry
>
6
{
7
public
SightreadingList
(
ResultSet rset
)
8
throws
SQLException
9
{
10
while
(
rset
.
next
()) {
11
add
(
new
SightreadingEntry
(
rset
));
12
}
13
}
14
}