//TestGreetings.java
//Accesses methods from the package misc.greetings
//in various ways.

import misc.greetings;
//import misc.greetings.French

public class TestGreetings
{
    public static void main(String[] args)
    {
        English.SayHello();
        English.SayHi();
        French.SayBonjour();
        German.SayGutenTag();

/*
        //The following fully-qualified method calls
        //work without the above import statement.

        misc.greetings.English.SayHello();
        misc.greetings.English.SayHi();
        misc.greetings.French.SayBonjour();
        misc.greetings.German.SayGutenTag();
*/
        
/*
        //The following method call works if you
        //import just the required package class.
        French.SayBonjour();
*/
    }
}
