home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / PackageInfo / PackageInfo.java.z / PackageInfo.java
Encoding:
Java Source  |  2003-08-08  |  3.1 KB  |  89 lines

  1. /*
  2.  *    @(#)PackageInfo.java 1.11 02/04/01 15:03:56
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. public class PackageInfo {
  41.     public PackageInfo() {
  42.     ClassLoader classLoader = getClass().getClassLoader();
  43.  
  44.     pkgInfo(classLoader, "javax.vecmath", "Point3d");
  45.     pkgInfo(classLoader, "javax.media.j3d", "SceneGraphObject");
  46.     pkgInfo(classLoader, "com.sun.j3d.utils.universe", "SimpleUniverse");
  47.     //pkgInfo(classLoader, "com.sun.j3d.loaders.vrml97", "VrmlLoader");
  48.     }
  49.  
  50.     static void pkgInfo(ClassLoader classLoader,
  51.             String pkgName,
  52.             String className) {
  53.  
  54.     try {
  55.         classLoader.loadClass(pkgName + "." + className);
  56.  
  57.         Package p = Package.getPackage(pkgName);
  58.         if (p == null) {
  59.         System.out.println("WARNING: Package.getPackage(" +
  60.                    pkgName +
  61.                    ") is null");
  62.         }
  63.         else {
  64.         System.out.println(p);
  65.         System.out.println("Specification Title = " +
  66.                    p.getSpecificationTitle());
  67.         System.out.println("Specification Vendor = " +
  68.                    p.getSpecificationVendor());
  69.         System.out.println("Specification Version = " +
  70.                    p.getSpecificationVersion());
  71.  
  72.         System.out.println("Implementation Vendor = " +
  73.                    p.getImplementationVendor());
  74.         System.out.println("Implementation Version = " +
  75.                    p.getImplementationVersion());
  76.         }
  77.     }
  78.     catch (ClassNotFoundException e) {
  79.         System.out.println("Unable to load " + pkgName);
  80.     }
  81.  
  82.     System.out.println();
  83.     }
  84.  
  85.     public static void main(String[] args) {
  86.     new PackageInfo();
  87.     }
  88. }
  89.