home *** CD-ROM | disk | FTP | other *** search
- package netscape.plugin.composer;
-
- import java.io.File;
- import java.io.IOException;
- import java.io.Reader;
- import java.io.Writer;
- import java.net.URL;
-
- public abstract class Document {
- public abstract URL getBase();
-
- public abstract File getWorkDirectory();
-
- public abstract URL getWorkDirectoryURL();
-
- public abstract Reader getInput() throws IOException;
-
- public abstract Writer getOutput() throws IOException;
-
- public abstract String getText() throws IOException;
-
- public abstract void setText(String var1) throws IOException;
-
- public String getEventName() {
- return null;
- }
-
- public URL getDocumentURL() {
- return null;
- }
-
- public void redirectDocumentOpen(String var1) {
- }
-
- public static void editDocument(String var0) {
- try {
- Composer.editDocument(var0);
- } catch (Throwable var2) {
- var2.printStackTrace();
- }
- }
- }
-