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

Last change on this file since 832 was 832, checked in by tobias, on Mar 5, 2010 at 6:03:21 PM

views and data objects of the resource types added.
basic logging with log4j for the beanUtil class.
Configuration and JobSchedule class renamed.

File size: 279 bytes
Line 
1package de.dass_it.vanhelsing.gui.items;
2
3public abstract class ItemType {
4 private String type;
5
6 public void setType(String type) {
7 this.type = type;
8 }
9
10 public String getType() {
11 return type;
12 }
13 public String getTypePage(){
14 return ("/WEB-INF/" + type + ".jspx");
15 }
16}
Note: See TracBrowser for help on using the repository browser.