Source of Test.java


  1: //Test.java
  2: 
  3: public class Test
  4: {
  5:     public static void main(String[] args)
  6:     {
  7:         OpeningScreen openingScreen = new OpeningScreen(
  8:             "Your ID Info",
  9:             "Sub Number",
 10:             "Sub Title");
 11:         openingScreen.display();
 12:         TextItems textItems = new TextItems
 13:             (
 14:                 Test.class.getResourceAsStream("some_info.txt")
 15:             );
 16:        textItems.displayItem("xyz"); 
 17:        textItems.displayItem("First"); 
 18:     }
 19: }