home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cre@te Online 2000 December
/
Cre@teOnline CD05.iso
/
MacSoft
/
XML Instance.sea
/
XML Instance
/
Required
/
plugins
/
HTMLWindow.jar
/
horst
/
ComboBoxItem.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
2000-03-18
|
682 b
|
19 lines
package horst;
import horst.parser.Tag;
import java.util.Hashtable;
public class ComboBoxItem {
Hashtable m_atts;
String m_text;
public ComboBoxItem(Tag t) {
this.m_atts = t.getAttributesCopy();
this.m_text = "";
}
public String toString() {
return this.m_text;
}
}