import java.util.ListResourceBundle;

// ResourceBundle for Great Britain.

public class MyResources_en_UK extends ListResourceBundle {
    
    public Object[][] getContents() {
	return contents;
    }
    
    static final Object[][] contents = {
	// LOCALIZE THIS
	{"helloWorldString", "Cheerio, what?"},  
	{"goodbyeWorldString", "Farewell, one and all!"}
	// END OF MATERIAL TO LOCALIZE
    };
}
