home *** CD-ROM | disk | FTP | other *** search
- package netscape.plugin.composer;
-
- import java.io.IOException;
-
- public class Plugin {
- public String getName() {
- return this.getClass().getName();
- }
-
- public String getCategory() {
- return this.getClass().getName();
- }
-
- public String getHint() {
- return this.getClass().getName();
- }
-
- public boolean perform(Document var1) throws IOException {
- return false;
- }
- }
-