diff options
| author | Tobias Spitzer | 2014-06-13 09:08:19 +0200 |
|---|---|---|
| committer | Tobias Spitzer | 2014-06-13 09:08:19 +0200 |
| commit | 818754c443074701c16e4bca7e42b284a64d7bba (patch) | |
| tree | 2d79230533ae462e0f0154a97c72a7471fa718f2 /Dozentenmodul/src/models/Lecture.java | |
| parent | Merge branch 'master' of git.openslx.org:openslx-ng/tutor-module (diff) | |
| download | tutor-module-818754c443074701c16e4bca7e42b284a64d7bba.tar.gz tutor-module-818754c443074701c16e4bca7e42b284a64d7bba.tar.xz tutor-module-818754c443074701c16e4bca7e42b284a64d7bba.zip | |
Bug Fix
Diffstat (limited to 'Dozentenmodul/src/models/Lecture.java')
| -rw-r--r-- | Dozentenmodul/src/models/Lecture.java | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/Dozentenmodul/src/models/Lecture.java b/Dozentenmodul/src/models/Lecture.java new file mode 100644 index 00000000..8f67baba --- /dev/null +++ b/Dozentenmodul/src/models/Lecture.java @@ -0,0 +1,141 @@ +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; + + } + + + + + +} |
