home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / rssowl / rssowl_win32_1_1.exe / rssowl.jar / JDOMAbout.class (.txt) < prev    next >
Encoding:
Java Class File  |  2004-09-09  |  2.0 KB  |  34 lines

  1. public class JDOMAbout {
  2.    public static void main(String[] args) throws Exception {
  3.       JDOMAbout var10002 = new JDOMAbout();
  4.       var10002.getClass();
  5.       JDOMAbout$Info info = new JDOMAbout$Info(var10002);
  6.       String title = info.title;
  7.       System.out.println(title + " version " + info.version);
  8.       System.out.println("Copyright " + info.copyright);
  9.       System.out.println();
  10.       System.out.println(info.description);
  11.       System.out.println();
  12.       System.out.println("Authors:");
  13.  
  14.       for(JDOMAbout$Author author : info.authors) {
  15.          System.out.print("  " + author.name);
  16.          if (author.email == null) {
  17.             System.out.println();
  18.          } else {
  19.             System.out.println(" <" + author.email + ">");
  20.          }
  21.       }
  22.  
  23.       System.out.println();
  24.       System.out.println(title + " license:");
  25.       System.out.println(info.license);
  26.       System.out.println();
  27.       System.out.println(title + " support:");
  28.       System.out.println(info.support);
  29.       System.out.println();
  30.       System.out.println(title + " web site: " + info.website);
  31.       System.out.println();
  32.    }
  33. }
  34.