All Packages Class Hierarchy This Package Previous Next Index
Class semper.certappl.SignSECA
java.lang.Object
|
+----netscape.application.Application
|
+----semper.certappl.SignSECA
- public class SignSECA
- extends Application
- implements Target, WindowOwner
In this example we create several user interface elements and place
them on the root view. We receive the target of these
elements so that as the user interacts with them we receive the
corresponding commands. If the user selects the SECA contract, it will stored in a file otherwise not
-
SignSECA()
-
-
button1WasPressed(Object)
- This method is invoked when the button is pressed.
-
button2WasPressed(Object)
-
-
BUYER_pop()
-
-
COMMERCIAL_pop()
-
-
FIFTY_pop()
-
-
FIVE_HUNDRED_pop()
-
-
FIVE_THOUSAND_pop()
-
-
init()
- This method gets called to initialize an application.
-
main(String[])
- This method allows SignSECA to run as a stand alone application.
-
nameWasEntered(Object)
- This method is invoked when the user hits return in the TextField.
-
NO_pop()
-
-
NULL_pop()
-
-
orgnameWasEntered(Object)
-
-
performCommand(String, Object)
- This is the sole method of the Target interface.
-
PRIVATE_pop()
-
-
SELLER_pop()
-
-
showStatus(String)
- We call showStatus() from several places to update the text displayed
in the status field.
-
surnameWasEntered(Object)
-
-
UNLIMITED_pop()
-
-
windowDidBecomeMain(Window)
-
-
windowDidHide(Window)
-
-
windowDidResignMain(Window)
-
-
windowDidShow(Window)
-
-
windowWillHide(Window)
-
-
windowWillShow(Window)
-
-
windowWillSizeBy(Window, Size)
-
-
YES_pop()
-
SignSECA
public SignSECA()
init
public void init()
- This method gets called to initialize an application. We'll take
this opportunity to set up the View hierarchy.
- Overrides:
- init in class Application
performCommand
public void performCommand(String command,
Object arg)
- This is the sole method of the Target interface. Since java doesn't
have a way to do callbacks, this ugly little bit of code needs to
exist. The convention we recommend is to simply invoke the method
with the same name as the command.
NO_pop
public void NO_pop()
YES_pop
public void YES_pop()
PRIVATE_pop
public void PRIVATE_pop()
COMMERCIAL_pop
public void COMMERCIAL_pop()
BUYER_pop
public void BUYER_pop()
SELLER_pop
public void SELLER_pop()
NULL_pop
public void NULL_pop()
FIFTY_pop
public void FIFTY_pop()
FIVE_HUNDRED_pop
public void FIVE_HUNDRED_pop()
FIVE_THOUSAND_pop
public void FIVE_THOUSAND_pop()
UNLIMITED_pop
public void UNLIMITED_pop()
button1WasPressed
public void button1WasPressed(Object arg)
- This method is invoked when the button is pressed.
button2WasPressed
public void button2WasPressed(Object arg)
nameWasEntered
public void nameWasEntered(Object arg)
- This method is invoked when the user hits return in the TextField.
surnameWasEntered
public void surnameWasEntered(Object arg)
orgnameWasEntered
public void orgnameWasEntered(Object arg)
showStatus
public void showStatus(String status)
- We call showStatus() from several places to update the text displayed
in the status field.
main
public static void main(String args[])
- This method allows SignSECA to run as a stand alone application.
windowDidHide
public void windowDidHide(Window window)
windowWillHide
public boolean windowWillHide(Window window)
windowDidBecomeMain
public void windowDidBecomeMain(Window window)
windowDidResignMain
public void windowDidResignMain(Window window)
windowDidShow
public void windowDidShow(Window window)
windowWillShow
public boolean windowWillShow(Window window)
windowWillSizeBy
public void windowWillSizeBy(Window window,
Size size)
All Packages Class Hierarchy This Package Previous Next Index