home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Micrsoft / VJ / VJ98 / VJPROJS / COMPONEN / COMDLL / COMDLL.JAV next >
Text File  |  1998-02-12  |  522b  |  19 lines

  1. // Class1.java
  2.  
  3. /**
  4.  * This class is designed to be packaged with a COM DLL output format.
  5.  * The class has no standard entry points, other than the constructor.
  6.  * Public methods will be exposed as COM interfaces.
  7.  * 
  8.  */
  9.  
  10. // TODO: Modify the Project Properties and make this class a COM Class.
  11. // 1. From the 'Project' menu, select the 'Project Properties...'item.
  12. // 2. Choose the 'COM Classes' tab.
  13. // 3. Check the checkbox for Class1.
  14.  
  15. public class Class1
  16. {
  17.     // TODO: Add initialization code here
  18. }
  19.