home *** CD-ROM | disk | FTP | other *** search
- package cal;
-
- import java.util.Hashtable;
- import javax.servlet.http.HttpServletRequest;
-
- public class Entries {
- private Hashtable entries = new Hashtable(12);
- private static final String[] time = new String[]{"8am", "9am", "10am", "11am", "12pm", "1pm", "2pm", "3pm", "4pm", "5pm", "6pm", "7pm", "8pm"};
- public static final int rows = 12;
-
- public Entries() {
- for(int i = 0; i < 12; ++i) {
- this.entries.put(time[i], new Entry(time[i]));
- }
-
- }
-
- public int getRows() {
- return 12;
- }
-
- public Entry getEntry(int index) {
- return (Entry)this.entries.get(time[index]);
- }
-
- public int getIndex(String tm) {
- for(int i = 0; i < 12; ++i) {
- if (tm.equals(time[i])) {
- return i;
- }
- }
-
- return -1;
- }
-
- public void processRequest(HttpServletRequest request, String tm) {
- int index = this.getIndex(tm);
- if (index >= 0) {
- String descr = request.getParameter("description");
- ((Entry)this.entries.get(time[index])).setDescription(descr);
- }
-
- }
- }
-