source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ItemType.java@ 844

Last change on this file since 844 was 844, checked in by tobias, on Mar 18, 2010 at 6:52:29 PM

all libraries moved to WEB-INF/lib

File size: 882 bytes
Line 
1package de.dass_it.vanhelsing.gui.items;
2
3public abstract class ItemType implements UserObjectItem{
4 private String ResType;
5 private int ResId;
6 private String ResName;
7 private String director;
8 private String value;
9
10 public String getTypePage(){
11 return ("/WEB-INF/" + ResType + ".jspx");
12 }
13
14 public String getResType() {
15 return ResType;
16 }
17
18 public void setResType(String resType) {
19 ResType = resType;
20 }
21
22 public int getResId() {
23 return ResId;
24 }
25
26 public void setResId(int resId) {
27 ResId = resId;
28 }
29
30 public String getResName() {
31 return ResName;
32 }
33
34 public void setResName(String resName) {
35 ResName = resName;
36 }
37
38 public String getDirector() {
39 return director;
40 }
41
42 public void setDirector(String director) {
43 this.director = director;
44 }
45
46 public String getValue() {
47 return value;
48 }
49
50 public void setValue(String value) {
51 this.value = value;
52 }
53
54}
Note: See TracBrowser for help on using the repository browser.