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

Last change on this file since 865 was 865, checked in by tobias, on Apr 20, 2010 at 5:21:42 PM

comments added
all methods of the wsdl file implemented

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