Source of ExecutableJarFileWithInternalHelpFile.java


  1: //ExecutableJarFileWithInternalHelpFile.java

  3: public class ExecutableJarFileWithInternalHelpFile
  4: {
  5:     public static void main(String[] args)
  6:     {
  7:         TextItems textItems = new TextItems
  8:             (
  9:                 ExecutableJarFileWithInternalHelpFile.class.
 10:                     getResourceAsStream("helpfile.txt")
 11:             );
 12:         textItems.displayItem("ProgramDescription");
 13:     }
 14: }