/** * Copyright (c) 2004 SoftCorporation LLC. All rights reserved. * * The Software License, Version 1.0 * * SoftCorporation LLC. grants you ("Licensee") a non-exclusive, royalty free, * license to use, modify and redistribute this software in source and binary * code form, provided that the following conditions are met: * * 1. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * SoftCorporation LLC. (http://www.softcorporation.com)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 2. The name "SoftCorporation" must not be used to * promote products derived from this software without prior * written permission. For written permission, please contact * info@softcorporation.com. * * This software is provided "AS IS," without a warranty of any kind. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. * IN NO EVENT SHALL THE SOFTCORPORATION BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION). * */ package demo; import com.softcorporation.util.Configuration; /** * Basic configuration sample. * * Put here your default values, which will be overwritten if * the configuration file contains the same variable (case sensitive). *

* ATTENTION: Upper case variable here are not static final (which you may * argue, is not a Java standard), but reflect the case, which is in the * configuration file. If you wish to follow Java standards - don't use upper case * variables in the configuration file. */ public class BasicConfiguration extends Configuration { /* * Constructor with file name * * @param fileName the file name of the configuration file. */ public BasicConfiguration(String fileName) { load(fileName); } /** * This is demo for int */ public int INT_DEMO; /** * This is demo for String */ public String stringValue = "Default value"; }