home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / ImageJump.java < prev    next >
Text File  |  1997-11-01  |  839b  |  32 lines

  1. ////////////////////////////////////////////////////////////////////////////
  2. // Implementatation of ImageJump class
  3. //
  4. // Class to store image and URL data in a single class
  5. //
  6. // This is a part of the Internet Information Server SDK Samples
  7. // Copyright (C) 1997 Microsoft Corporation
  8. // All rights reserved.
  9. //
  10. // This source code is only intended as a supplement to the Software 
  11. // Development Kit Reference and related electronic documentation provided.
  12. //
  13. ////////////////////////////////////////////////////////////////////////////
  14.  
  15. import java.awt.*;
  16.  
  17. class ImageJump 
  18. {
  19.     private String    m_strURL;
  20.     private Image    m_image;
  21.  
  22.     ImageJump(String strURL,Image image)
  23.     {
  24.         m_strURL = strURL;
  25.         m_image = image;
  26.     }
  27.  
  28.     public Image getImage()    { return m_image; }
  29.     public String getURL()    { return m_strURL; }
  30. }
  31.  
  32.