home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 1999 March / maximum-cd-1999-03.iso / Feature / Lotus / ORGANIZE / COMPNENT / LTOUIN21.ZIP / sun / activator / ocx / ActiveXBeansViewer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-12  |  1021 b   |  25 lines

  1. package sun.activator.ocx;
  2.  
  3. import java.applet.Applet;
  4. import java.io.IOException;
  5. import sun.activator.BeansViewer;
  6. import sun.applet.AppletClassLoader;
  7.  
  8. public class ActiveXBeansViewer extends ActiveXAppletViewer {
  9.    private ActiveXBeansViewer(int var1) {
  10.       super(new ActiveXBeansContext(var1), var1);
  11.    }
  12.  
  13.    public boolean bridgeEvents() {
  14.       return true;
  15.    }
  16.  
  17.    protected Applet createApplet(AppletClassLoader var1) throws ClassNotFoundException, IllegalAccessException, IOException, InstantiationException, InterruptedException {
  18.       return BeansViewer.createJavaBeanComponent(this, var1);
  19.    }
  20.  
  21.    protected String getHandledType() {
  22.       return "JavaBeans";
  23.    }
  24. }
  25.