root/okpoll/src/net/okjsp/poll/PollDao.java
리비전 5, 259 bytes (mefour에 의해 체크인됨, 16 년 전) | |
---|---|
|
Line | |
---|---|
1 | package net.okjsp.poll; |
2 | |
3 | import java.util.ArrayList; |
4 | |
5 | public class PollDao { |
6 | |
7 | static ArrayList<Poll> list = new ArrayList<Poll>(); |
8 | |
9 | public void add(Poll poll) { |
10 | list.add(poll); |
11 | } |
12 | |
13 | public ArrayList<Poll> getList() { |
14 | return list; |
15 | } |
16 | |
17 | } |
참고: 소스 브라우저를 사용하면서 도움이 필요하다면, TracBrowser를 참고하십시오.