FileDocCategorySizeDatePackage
NameArea.javaAPI DocSun JDK 1.5.0 Example2670Sat Jan 08 15:09:02 GMT 2005None

NameArea

public class NameArea extends ImageMapArea
A message feedback ImageArea class. This class extends the basic ImageArea Class to show the a given message in the status message area when the user enters this area.
author
Jim Graham
version
1.14, 07/26/04

Fields Summary
String
name
The string to be shown in the status message area.
Constructors Summary
Methods Summary
public voidenter()
The enter method displays the message in the status bar.

	showStatus(name);
    
public voidexit()
The exit method clears the status bar.

	showStatus(null);
    
public voidhandleArg(java.lang.String arg)
The argument is the string to be displayed in the status message area.

	name = arg;