01: /*
02: * Copyright (C) 2004 TiongHiang Lee
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: * Email: thlee@onemindsoft.org
19: */
20:
21: package org.onemind.swingweb.awt;
22:
23: import java.applet.AppletContext;
24: import java.applet.AppletStub;
25: import java.net.URL;
26:
27: public class EmptyAppletStub implements AppletStub {
28: AppletContext _context;
29:
30: public EmptyAppletStub() {
31: _context = new EmptyAppletContext();
32: }
33:
34: public boolean isActive() {
35: return true;
36: }
37:
38: public void appletResize(int width, int height) {
39: //do nothing
40: }
41:
42: public AppletContext getAppletContext() {
43: // TODO Auto-generated method stub
44: return _context;
45: }
46:
47: public URL getCodeBase() {
48: // TODO Auto-generated method stub
49: return null;
50: }
51:
52: public URL getDocumentBase() {
53: // TODO Auto-generated method stub
54: return null;
55: }
56:
57: public String getParameter(String name) {
58: // TODO Auto-generated method stub
59: return null;
60: }
61: }
|