home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
ImageJump.java
< prev
next >
Wrap
Text File
|
1998-04-27
|
839b
|
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; }
}