List of usage examples for java.applet AppletStub interface-usage
From source file MinAppletviewer.java
class AppSupport implements AppletStub, AppletContext { private URL codeBase; private URL documentBase; public AppSupport() throws Exception {
From source file DummyAppletContext.java
/**
* DummyAppletContext - implements AppletContext and AppletStub to allow any
* applet to easily run as an application. The only thing it can't do is
* access URL's. Applet parameters are entered on the command line with
* name as one word and value as the next.
*
From source file MainClass.java
class MyStub implements AppletStub { private boolean active = false; private Hashtable ht = new Hashtable(); private MyContext context;
From source file AppletViewer.java
class AppletAdapter extends Panel implements AppletStub, AppletContext { /** The status window at the bottom */ Label status = null; /** Construct the GUI for an Applet Status window */ AppletAdapter() {
From source file no.eris.applet.AppletViewer.java
class AppletAdapter extends Panel implements AppletStub, AppletContext { private static Logger LOGGER = LoggerFactory.getLogger(AppletAdapter.class); /** The status window at the bottom */ private Label status = null;