diff options
Diffstat (limited to 'Dozentenmodul/src/main/java/models/Lecture.java')
| -rw-r--r-- | Dozentenmodul/src/main/java/models/Lecture.java | 141 |
1 files changed, 0 insertions, 141 deletions
diff --git a/Dozentenmodul/src/main/java/models/Lecture.java b/Dozentenmodul/src/main/java/models/Lecture.java deleted file mode 100644 index 8f67baba..00000000 --- a/Dozentenmodul/src/main/java/models/Lecture.java +++ /dev/null @@ -1,141 +0,0 @@ -package models; - -import java.util.Date; - -public class Lecture { - - private String name; - - private String newName; - - private String shortDesc; - - private String desc; - - private Date startdate; - - private Date enddate; - - private boolean active; - - private String id; - - private String linkedImagename; - - public static Lecture lecture =new Lecture(); - - - - public String getNewName() { - - return newName; - - } - - public void setNewName(String newName) { - - this.newName = newName; - - } - - public String getLinkedImagename() { - - return linkedImagename; - - } - - public void setLinkedImagename(String linkedImagename) { - - this.linkedImagename = linkedImagename; - - } - - public String getid() { - - return id; - - } - - public void setid(String id) { - - this.id = id; - - } - - 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; - - } - - - - - -} |
