home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / vj / VJ98 / VJProjs / componen / comdll / COMDLL.jav next >
Encoding:
Text File  |  1998-05-31  |  533 b   |  17 lines

  1. /**
  2.  * This class is designed to be packaged with a COM DLL output format.
  3.  * The class has no standard entry points, other than the constructor.
  4.  * Public methods will be exposed as methods on the default COM interface.
  5.  * @com.register ( clsid=%GUID1%, typelib=%GUID2% )
  6.  */
  7. public class Class1
  8. {
  9.     // TODO: Add additional methods and code here
  10.  
  11.     /**
  12.      * NOTE: To add auto-registration code, refer to the documentation
  13.      * on the following method
  14.      *   public static void onCOMRegister(boolean unRegister) {}
  15.      */
  16. }
  17.