All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class ncsa.habanero.Hablet

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----ncsa.habanero.Hablet

public abstract class Hablet
extends Applet
implements Wrapped, Externalizable
Hablet Base class for hablets (habanero applications)


Constructor Index

 o Hablet()

Method Index

 o getImage(String)
 o getImage(URL)
 o getImage(URL, String)
This methodoverrides the Applet object's getImage to fetch an image given its base URL and its name
 o imageFromToolkit(Toolkit, URL, String)
This static method returns an image given its base URL, its name, and the Toolkit to be used.
 o readExternal(ObjectInput)
 o readHablet(MarshallInputStream)
 o startInFrame(MirrorFrame)
The highest level Component of your application or applet should be instantiated here and added to the MirrorFrame f in order to initiate the application.
 o writeExternal(ObjectOutput)
 o writeHablet(MarshallOutputStream)

Constructors

 o Hablet
 public Hablet()

Methods

 o writeExternal
 public void writeExternal(ObjectOutput out) throws IOException
 o readExternal
 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
 o writeHablet
 protected void writeHablet(MarshallOutputStream out) throws IOException
 o readHablet
 protected void readHablet(MarshallInputStream in) throws IOException, ClassNotFoundException
 o imageFromToolkit
 public static Image imageFromToolkit(Toolkit t,
                                      URL url,
                                      String name)
This static method returns an image given its base URL, its name, and the Toolkit to be used.

 o getImage
 public Image getImage(URL url,
                       String name)
This methodoverrides the Applet object's getImage to fetch an image given its base URL and its name

Overrides:
getImage in class Applet
 o getImage
 public Image getImage(URL url)
Overrides:
getImage in class Applet
 o getImage
 public Image getImage(String name)

All Packages  Class Hierarchy  This Package  Previous  Next  Index