home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / java40.jar / netscape / plugin / composer / Plugin.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  652 b   |  22 lines

  1. package netscape.plugin.composer;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class Plugin {
  6.    public String getName() {
  7.       return this.getClass().getName();
  8.    }
  9.  
  10.    public String getCategory() {
  11.       return this.getClass().getName();
  12.    }
  13.  
  14.    public String getHint() {
  15.       return this.getClass().getName();
  16.    }
  17.  
  18.    public boolean perform(Document var1) throws IOException {
  19.       return false;
  20.    }
  21. }
  22.