home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Micrsoft / SAMPLES / VJ6SAMPL.EXE / BindPubs / splash / ISplashable.java next >
Text File  |  1998-02-24  |  439b  |  17 lines

  1.  
  2. /*  Copyright (C) Microsoft Corporation, 1996-1998.  All rights reserved.
  3.  
  4.   This source code is intended only as a supplement to Microsoft
  5.   Visual J++ 6.0.  See this product's on-line documentation for detailed   
  6. information regarding Microsoft code samples.
  7.  
  8. */
  9.  
  10. package splash;
  11. /**implemented by forms that use the SplashScreen class
  12.  */
  13. public interface ISplashable
  14. {
  15.     public void initSplash(SplashScreen splash);
  16. }
  17.