1 /*2 * OctopusProperties.java. Created on Apr 23, 2004.3 */4 package org.webdocwf.util.loader.wizard;5 6 import java.util.Properties ;7 8 /**9 * 10 * 11 * @author Zoran Milakovic12 */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 }24