home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cre@te Online 2000 December
/
Cre@teOnline CD05.iso
/
MacSoft
/
XML ConsoleMax.sea
/
XML ConsoleMax
/
Required
/
esc.jar
/
com
/
extensibility
/
rock
/
ReaderEditorPane.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-06-30
|
506 b
|
15 lines
package com.extensibility.rock;
import java.io.IOException;
import java.io.Reader;
import java.net.URL;
import javax.swing.JEditorPane;
import javax.swing.text.JTextComponent;
public class ReaderEditorPane extends JEditorPane {
public ReaderEditorPane(Reader var1, String var2, URL var3) throws IOException {
((JEditorPane)this).setContentType(var2);
((JTextComponent)this).read(var1, var3);
}
}