diff options
| author | Murilo Araujo | 2014-06-06 11:39:58 +0200 |
|---|---|---|
| committer | Murilo Araujo | 2014-06-06 11:39:58 +0200 |
| commit | 087ec69d283226c07366376ae243d9b8cf934c55 (patch) | |
| tree | b8e08650573cc3e938038f0cfbb61ced90e530c7 /Dozentenmodul/src/models/Lecture.java | |
| parent | Merge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module (diff) | |
| download | tutor-module-087ec69d283226c07366376ae243d9b8cf934c55.tar.gz tutor-module-087ec69d283226c07366376ae243d9b8cf934c55.tar.xz tutor-module-087ec69d283226c07366376ae243d9b8cf934c55.zip | |
fehler!!
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; - } - - -} |
