diff options
| author | Jonathan Bauer | 2015-06-22 13:40:02 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-06-22 13:40:02 +0200 |
| commit | bb09d09546c00fe8b0c21d525af31c87097367d4 (patch) | |
| tree | 61fd648989bcde8ed32b3bf426870d9846e948cb /dozentenmodul/src/main/java/models/Lecture.java | |
| parent | [server] Implement getOperatingSystems and getVirtualizers (diff) | |
| download | tutor-module-bb09d09546c00fe8b0c21d525af31c87097367d4.tar.gz tutor-module-bb09d09546c00fe8b0c21d525af31c87097367d4.tar.xz tutor-module-bb09d09546c00fe8b0c21d525af31c87097367d4.zip | |
[client] rebasing the whole app...
Diffstat (limited to 'dozentenmodul/src/main/java/models/Lecture.java')
| -rw-r--r-- | dozentenmodul/src/main/java/models/Lecture.java | 162 |
1 files changed, 0 insertions, 162 deletions
diff --git a/dozentenmodul/src/main/java/models/Lecture.java b/dozentenmodul/src/main/java/models/Lecture.java deleted file mode 100644 index 0b55172b..00000000 --- a/dozentenmodul/src/main/java/models/Lecture.java +++ /dev/null @@ -1,162 +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; - - } - - public void reset() - { - name = null; - - newName = null; - - shortDesc = null; - - desc = null; - - startdate = null; - - enddate = null; - - active = false; - - id = null; - - linkedImagename = null; - } - - - - - -} |
