FileDocCategorySizeDatePackage
SampleBundleClass.javaAPI DocAndroid 1.5 API1480Wed May 06 22:41:04 BST 2009tests.api.java.util

SampleBundleClass

public class SampleBundleClass extends Object
Part of the ResourceBundleTest

Fields Summary
private static SampleBundleClass
singleton
private static ResourceBundle
bundle
Constructors Summary
public SampleBundleClass()

        super();
        if (singleton != null) {
            throw new RuntimeException();
        }
        singleton = this;
        try {
            bundle = ResourceBundle.getBundle("tests.api.simple.SampleBundleClass");
        } catch (MissingResourceException x) {
            System.out.println("Missing resource");
            bundle = null;
        }
    
Methods Summary