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

Last change on this file since 848 was 848, checked in by tobias, on Mar 22, 2010 at 5:12:11 PM

table output added

File size: 888 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 /*"/WEB-INF/" +*/
12 return (ResType + ".jspx");
13 }
14
15 public String getResType() {
16 return ResType;
17 }
18
19 public void setResType(String resType) {
20 ResType = resType;
21 }
22
23 public int getResId() {
24 return ResId;
25 }
26
27 public void setResId(int resId) {
28 ResId = resId;
29 }
30
31 public String getResName() {
32 return ResName;
33 }
34
35 public void setResName(String resName) {
36 ResName = resName;
37 }
38
39 public String getDirector() {
40 return director;
41 }
42
43 public void setDirector(String director) {
44 this.director = director;
45 }
46
47 public String getValue() {
48 return value;
49 }
50
51 public void setValue(String value) {
52 this.value = value;
53 }
54
55}
Note: See TracBrowser for help on using the repository browser.