diff options
| author | Jonathan Bauer | 2014-08-12 17:44:47 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2014-08-12 17:44:47 +0200 |
| commit | f22414d79d4860ba2d546ff74b6f7e91d3b5ed26 (patch) | |
| tree | c829d37c7e55f0a8293178661fe800174ca2649b /Dozentenmodul/src/main/java/models | |
| parent | [win32] fix problems with org.eclipse.swt package names and version (diff) | |
| parent | Moved new source files to proper subdir (diff) | |
| download | tutor-module-f22414d79d4860ba2d546ff74b6f7e91d3b5ed26.tar.gz tutor-module-f22414d79d4860ba2d546ff74b6f7e91d3b5ed26.tar.xz tutor-module-f22414d79d4860ba2d546ff74b6f7e91d3b5ed26.zip | |
Merge branch 'maven' of git.openslx.org:openslx-ng/tutor-module into maven
Diffstat (limited to 'Dozentenmodul/src/main/java/models')
| -rw-r--r-- | Dozentenmodul/src/main/java/models/Search.java | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Dozentenmodul/src/main/java/models/Search.java b/Dozentenmodul/src/main/java/models/Search.java new file mode 100644 index 00000000..59a28b21 --- /dev/null +++ b/Dozentenmodul/src/main/java/models/Search.java @@ -0,0 +1,46 @@ +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; + } + + + +} |
