/** 
 *	Container class for the displayMessage method
 */
public class SimpleContainer
{
	public static void displayMessage()
	{
		System.out.println("Hello from way over here in the " + 
			"SimpleContainer class");
	}
}