Lines Matching defs:stub
80 * The stub field will be restored by the reader.
82 transient private AppletStub stub;
105 * Sets this applet's stub. This is done automatically by the system.
109 * permission if a stub has already been set.
110 * @param stub the new stub.
111 * @exception SecurityException if the caller cannot set the stub
113 public final void setStub(AppletStub stub) {
114 if (this.stub != null) {
120 this.stub = (AppletStub)stub;
134 if (stub != null) {
135 return stub.isActive();
136 } else { // If stub field not filled in, applet never active
158 return stub.getDocumentBase();
169 return stub.getCodeBase();
191 return stub.getParameter(name);
204 return stub.getAppletContext();
217 if (stub != null) {
218 stub.appletResize(width, height);