home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / browser / net_linx / java40.jar / netscape / plugin / composer / Plugin.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  574 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.