home *** CD-ROM | disk | FTP | other *** search
- package netscape.plugin;
-
- import netscape.javascript.JSObject;
-
- public class Plugin {
- int peer;
- JSObject window;
-
- public int getPeer() {
- return this.peer;
- }
-
- public void init() {
- }
-
- public void destroy() {
- }
-
- public boolean isActive() {
- return this.peer != 0;
- }
-
- public JSObject getWindow() {
- return this.window;
- }
- }
-