//Test.java

public class Test
{
    public static void main(String[] args)
    {
        OpeningScreen openingScreen = new OpeningScreen
        (
            "Your ID Info",
            "Sub Number",
            "Sub Title"
        );
        openingScreen.display();
        TextItems textItems = new TextItems
        (
            Test.class.getResourceAsStream("some_info.txt")
        );
        textItems.displayItem("First");
        textItems.displayItem("Second");

        System.out.println
        (
            "\nAnd here is an easy way "
            + "to get a pause in your program ..."
        );
        Utils.pause();
    }
}

