NameAreapublic 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. |
Fields Summary |
---|
String | nameThe string to be shown in the status message area. |
Methods Summary |
---|
public void | enter()The enter method displays the message in the status bar.
showStatus(name);
| public void | exit()The exit method clears the status bar.
showStatus(null);
| public void | handleArg(java.lang.String arg)The argument is the string to be displayed in the status message
area.
name = arg;
|
|