forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLessonForm.java
More file actions
45 lines (40 loc) · 870 Bytes
/
LessonForm.java
File metadata and controls
45 lines (40 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.wgh.actionForm;
import java.util.Date;
import org.apache.struts.action.ActionForm;
/**
* MyEclipse Struts
* Creation date: 12-14-2007
*
* XDoclet definition:
* @struts.form name="lessonForm"
*/
public class LessonForm extends ActionForm {
private Date joinTime;
private String name;
private int ID;
private String[] delIdArray=new String[0];
public Date getJoinTime() {
return joinTime;
}
public void setJoinTime(Date joinTime) {
this.joinTime = joinTime;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getID() {
return ID;
}
public void setID(int ID) {
this.ID = ID;
}
public String[] getDelIdArray(){
return delIdArray;
}
public void setDelIdArray(String[] delIdArray){
this.delIdArray=delIdArray;
}
}