?? entries.java
字號:
package cal;
import java.util.Enumeration;
import java.util.Hashtable;
import javax.servlet.http.*;
public class Entries {
private Hashtable entries;
private static final String[] time = {"8am", "9am", "10am", "11am", "12pm",
"1pm", "2pm", "3pm", "4pm", "5pm", "6pm",
"7pm", "8pm" };
public static final int rows = 12;
public Entries () {
entries = new Hashtable (rows);
for (int i=0; i < rows; i++) {
entries.put (time[i], new Entry(time[i]));
}
}
public int getRows () {
return rows;
}
public Entry getEntry (int index) {
return (Entry)this.entries.get(time[index]);
}
public int getIndex (String tm) {
for (int i=0; i<rows; i++)
if(tm.equals(time[i])) return i;
return -1;
}
public void processRequest (HttpServletRequest request, String tm) {
int index = getIndex (tm);
if (index >= 0) {
String descr = request.getParameter ("description");
((Entry)entries.get(time[index])).setDescription (descr);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -