home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-09-04 | 839 b | 32 lines |
- ////////////////////////////////////////////////////////////////////////////
- // Implementatation of ImageJump class
- //
- // Class to store image and URL data in a single class
- //
- // This is a part of the Internet Information Server SDK Samples
- // Copyright (C) 1997 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the Software
- // Development Kit Reference and related electronic documentation provided.
- //
- ////////////////////////////////////////////////////////////////////////////
-
- import java.awt.*;
-
- class ImageJump
- {
- private String m_strURL;
- private Image m_image;
-
- ImageJump(String strURL,Image image)
- {
- m_strURL = strURL;
- m_image = image;
- }
-
- public Image getImage() { return m_image; }
- public String getURL() { return m_strURL; }
- }
-
-