Class RecorderApplet

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, RootPaneContainer

public class RecorderApplet extends JApplet
JavaSound Recorder Applet. This is simply a Recorder Panel placed inside an applet.
Version:
$Revision: 1.2 $
Author:
Marc Gimpel, Wimba S.A. (mgimpel@horizonwimba.com)
See Also:
  • Field Details

    • recorder

      private Recorder recorder
    • filename

      private String filename
  • Constructor Details

    • RecorderApplet

      public RecorderApplet()
  • Method Details

    • init

      public void init()
      Initialize Applet. Called by the browser or applet viewer to inform this applet that it has been loaded into the system. It is always called before the first time that the start method is called.
      Overrides:
      init in class Applet
    • initGUI

      public void initGUI()
      Initialize Applet, but run from the event-dispatching thread.
    • start

      public void start()
      Called by the browser or applet viewer to inform this applet that it should start its execution. It is called after the init method and each time the applet is revisited in a Web page.
      Overrides:
      start in class Applet
    • stop

      public void stop()
      Called by the browser or applet viewer to inform this applet that it should stop its execution. It is called when the Web page that contains this applet has been replaced by another page, and also just before the applet is to be destroyed.
      Overrides:
      stop in class Applet
    • destroy

      public void destroy()
      Called by the browser or applet viewer to inform this applet that it is being reclaimed and that it should destroy any resources that it has allocated. The stop method will always be called before destroy.
      Overrides:
      destroy in class Applet