home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
TextJump.java
< prev
next >
Wrap
Text File
|
1998-04-27
|
828b
|
30 lines
////////////////////////////////////////////////////////////////////////////
// Implementatation of TextJump class
//
// Class to store text 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.
//
////////////////////////////////////////////////////////////////////////////
class TextJump
{
private String m_strURL;
private String m_strText;
TextJump(String strURL,String strText)
{
m_strURL = strURL;
m_strText = strText;
}
public String getString() { return m_strText; }
public String getURL() { return m_strURL; }
}