diff options
| author | Simon Rettberg | 2014-08-12 16:48:28 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2014-08-12 16:48:28 +0200 |
| commit | 5c2cc7e8a41f52eab9aa0263cac4bfc405198a4f (patch) | |
| tree | b2abb1c0eab59fe11386afc3b967fab574833b79 /Dozentenmodul/src/models | |
| parent | Merge branch 'master' of git.openslx.org:openslx-ng/tutor-module into maven (diff) | |
| download | tutor-module-5c2cc7e8a41f52eab9aa0263cac4bfc405198a4f.tar.gz tutor-module-5c2cc7e8a41f52eab9aa0263cac4bfc405198a4f.tar.xz tutor-module-5c2cc7e8a41f52eab9aa0263cac4bfc405198a4f.zip | |
Moved new source files to proper subdir
Diffstat (limited to 'Dozentenmodul/src/models')
| -rw-r--r-- | Dozentenmodul/src/models/Search.java | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/Dozentenmodul/src/models/Search.java b/Dozentenmodul/src/models/Search.java deleted file mode 100644 index 59a28b21..00000000 --- a/Dozentenmodul/src/models/Search.java +++ /dev/null @@ -1,46 +0,0 @@ -package models; - -public class Search { - - - private String Software; - private String Hochschule; - private String Creator; - private boolean ExistingImage; - private boolean Rohling; - public static Search search =new Search(); - - public String getSoftware() { - return Software; - } - public void setSoftware(String software) { - Software = software; - } - public String getHochschule() { - return Hochschule; - } - public void setHochschule(String hochschule) { - Hochschule = hochschule; - } - public String getCreator() { - return Creator; - } - public void setCreator(String creator) { - Creator = creator; - } - public boolean isExistingImage() { - return ExistingImage; - } - public void setExistingImage(boolean existingImage) { - ExistingImage = existingImage; - } - public boolean isRohling() { - return Rohling; - } - public void setRohling(boolean rohling) { - Rohling = rohling; - } - - - -} |
