You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
660 B
29 lines
660 B
package netscape.plugin;
|
|
|
|
import netscape.javascript.*;
|
|
|
|
public class Plugin {
|
|
|
|
public Plugin() {
|
|
System.out.println("Plugin.Plugin");
|
|
}
|
|
public JSObject getWindow() throws JSException {
|
|
System.out.println("Plugin.getWindow");
|
|
return JSObject.getWindow(null);
|
|
}
|
|
public void destroy() {
|
|
System.out.println("Plugin.destroy");
|
|
}
|
|
public int getPeer() {
|
|
System.out.println("Plugin.getPeer");
|
|
return 0;
|
|
}
|
|
public void init() {
|
|
System.out.println("Plugin.init");
|
|
}
|
|
public boolean isActive() {
|
|
System.out.println("Plugin.isActive");
|
|
return true;
|
|
}
|
|
}
|