diff options
| author | Tobias Spitzer | 2014-06-06 12:33:50 +0200 |
|---|---|---|
| committer | Tobias Spitzer | 2014-06-06 12:33:50 +0200 |
| commit | 9abf78265f1bbd8a94904553d779af96ccd61770 (patch) | |
| tree | 583e6fcd2f39f163f631699935dbfab29968d66d /Dozentenmodul/src/models/Lecture.java | |
| parent | Erste Maintenance Funktion (diff) | |
| parent | fehler!! (diff) | |
| download | tutor-module-9abf78265f1bbd8a94904553d779af96ccd61770.tar.gz tutor-module-9abf78265f1bbd8a94904553d779af96ccd61770.tar.xz tutor-module-9abf78265f1bbd8a94904553d779af96ccd61770.zip | |
Merge branch 'master' of git.openslx.org:openslx-ng/tutor-module
Diffstat (limited to 'Dozentenmodul/src/models/Lecture.java')
| -rw-r--r-- | Dozentenmodul/src/models/Lecture.java | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/Dozentenmodul/src/models/Lecture.java b/Dozentenmodul/src/models/Lecture.java deleted file mode 100644 index eae05ec5..00000000 --- a/Dozentenmodul/src/models/Lecture.java +++ /dev/null @@ -1,91 +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; - } - - -} |
