FileDocCategorySizeDatePackage
MHPropertiesTest.javaAPI DocExample356Sun Mar 26 19:56:34 BST 2000None

MHPropertiesTest.java

public class MHPropertiesTest {
	public static void main(String[] args) throws java.io.IOException {
		MHProperties mp = new MHProperties();
		if (mp.size() == 0) {
			System.out.println("# No properties loaded from " +
				MHProperties.PROFILE_NAME);
		} else {
			mp.store(System.out, "Properties loaded from " +
				MHProperties.PROFILE_NAME);
		}
	}
}