summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/models/Lecture.java
diff options
context:
space:
mode:
Diffstat (limited to 'Dozentenmodul/src/models/Lecture.java')
-rw-r--r--Dozentenmodul/src/models/Lecture.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/Dozentenmodul/src/models/Lecture.java b/Dozentenmodul/src/models/Lecture.java
new file mode 100644
index 00000000..383bded9
--- /dev/null
+++ b/Dozentenmodul/src/models/Lecture.java
@@ -0,0 +1,66 @@
+package models;
+
+import java.util.Date;
+
+public class Lecture {
+
+
+ private String name;
+ private String shortDesc;
+ private String desc;
+ private Date startdate;
+ private Date enddate;
+ private boolean active;
+
+ public static Lecture lecture =new Lecture();
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getShortDesc() {
+ return shortDesc;
+ }
+
+ public void setShortDesc(String shortDesc) {
+ this.shortDesc = shortDesc;
+ }
+
+ public String getDesc() {
+ return desc;
+ }
+
+ public void setDesc(String desc) {
+ this.desc = desc;
+ }
+
+ public Date getStartdate() {
+ return startdate;
+ }
+
+ public void setStartdate(Date startdate) {
+ this.startdate = startdate;
+ }
+
+ public Date getEnddate() {
+ return enddate;
+ }
+
+ public void setEnddate(Date enddate) {
+ this.enddate = enddate;
+ }
+
+ public boolean isActive() {
+ return active;
+ }
+
+ public void setActive(boolean active) {
+ this.active = active;
+ }
+
+
+}