All Packages Class Hierarchy This Package Previous Next Index
Class advent.mibBrowser.mibBrowser
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----java.applet.Applet
|
+----advent.mibBrowser.mibBrowser
- public class mibBrowser
- extends Applet
This is the main class file for the MIB browser applet. It primarily
deals with the applets main screen layout and callbacks.
It uses a number of other classes, from the JDK AWT package,
and simple extentions, to build the main screen.
-
SNMP_PORT
- To allow users to set the port via a parameter
-
SNMP_RETRIES
- To allow users to set the number of retries via a parameter
-
SNMP_TIMEOUT
- To allow users to set the timeout via a parameter
-
mibBrowser()
-
-
action(Event, Object)
- Actions for each of the buttons, choice, and list
-
destroy()
- The destroy method needed to stop any threads, etc.
-
getAppletInfo()
- To provide applet information
-
getParameterInfo()
- To provide parameter information
-
init()
- The applets init method sets up the GUI
-
start()
- The start method, used when applet is started
we will not need it since we're going to put everything in init.
-
stop()
- The stop method, used when applet is no longer on screen
SNMP_PORT
public int SNMP_PORT
- To allow users to set the port via a parameter
SNMP_TIMEOUT
public int SNMP_TIMEOUT
- To allow users to set the timeout via a parameter
SNMP_RETRIES
public int SNMP_RETRIES
- To allow users to set the number of retries via a parameter
mibBrowser
public mibBrowser()
init
public void init()
- The applets init method sets up the GUI
- Overrides:
- init in class Applet
action
public boolean action(Event e,
Object arg)
- Actions for each of the buttons, choice, and list
- Overrides:
- action in class Component
start
public void start()
- The start method, used when applet is started
we will not need it since we're going to put everything in init.
- Overrides:
- start in class Applet
stop
public void stop()
- The stop method, used when applet is no longer on screen
- Overrides:
- stop in class Applet
destroy
public void destroy()
- The destroy method needed to stop any threads, etc.
- Overrides:
- destroy in class Applet
getAppletInfo
public String getAppletInfo()
- To provide applet information
- Overrides:
- getAppletInfo in class Applet
getParameterInfo
public String[][] getParameterInfo()
- To provide parameter information
- Overrides:
- getParameterInfo in class Applet
All Packages Class Hierarchy This Package Previous Next Index