Ignore:
Timestamp:
Mar 18, 2010, 6:52:29 PM (14 years ago)
Author:
tobias
Message:

all libraries moved to WEB-INF/lib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ItemType.java

    r832 r844  
    11package de.dass_it.vanhelsing.gui.items;
    22
    3 public abstract class ItemType {
    4         private String type;
     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;
    59
    6         public void setType(String type) {
    7                 this.type = type;
     10        public String getTypePage(){
     11                return ("/WEB-INF/" + ResType + ".jspx");
    812        }
    913
    10         public String getType() {
    11                 return type;
     14        public String getResType() {
     15                return ResType;
    1216        }
    13         public String getTypePage(){
    14                 return ("/WEB-INF/" + type + ".jspx");
     17
     18        public void setResType(String resType) {
     19                ResType = resType;
    1520        }
     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
    1654}
Note: See TracChangeset for help on using the changeset viewer.