01: /*
02: * OctopusProperties.java. Created on Apr 23, 2004.
03: */
04: package org.webdocwf.util.loader.wizard;
05:
06: import java.util.Properties;
07:
08: /**
09: *
10: *
11: * @author Zoran Milakovic
12: */
13: public class OctopusProperties extends Properties {
14:
15: public String getOctopusProperty(String key) {
16: String retVal = this .getProperty(key);
17: if (retVal != null)
18: return retVal;
19: else
20: return "";
21: }
22:
23: }
|