home *** CD-ROM | disk | FTP | other *** search
- public class JDOMAbout {
- public static void main(String[] args) throws Exception {
- JDOMAbout$Info info = new JDOMAbout$Info();
- String title = info.title;
- System.out.println(title + " version " + info.version);
- System.out.println("Copyright " + info.copyright);
- System.out.println();
- System.out.println(info.description);
- System.out.println();
- System.out.println("Authors:");
-
- for(JDOMAbout$Author author : info.authors) {
- System.out.print(" " + author.name);
- if (author.email == null) {
- System.out.println();
- } else {
- System.out.println(" <" + author.email + ">");
- }
- }
-
- System.out.println();
- System.out.println(title + " license:");
- System.out.println(info.license);
- System.out.println();
- System.out.println(title + " support:");
- System.out.println(info.support);
- System.out.println();
- System.out.println(title + " web site: " + info.website);
- System.out.println();
- }
- }
-