* This method return formated property value.
* @see net.sf.cannagrower.util.PropertiesFormatter
*/
public String propertyFormat(String key,String value) throws PropertyFormatException{
value=isValueFormated(key,value);
if(value.length()<1){throw new PropertyFormatException(getValueFormat(key));}
return value;
}