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.


Variable Index

 o SNMP_PORT
To allow users to set the port via a parameter
 o SNMP_RETRIES
To allow users to set the number of retries via a parameter
 o SNMP_TIMEOUT
To allow users to set the timeout via a parameter

Constructor Index

 o mibBrowser()

Method Index

 o action(Event, Object)
Actions for each of the buttons, choice, and list
 o destroy()
The destroy method needed to stop any threads, etc.
 o getAppletInfo()
To provide applet information
 o getParameterInfo()
To provide parameter information
 o init()
The applets init method sets up the GUI
 o start()
The start method, used when applet is started we will not need it since we're going to put everything in init.
 o stop()
The stop method, used when applet is no longer on screen

Variables

 o SNMP_PORT
 public int SNMP_PORT
To allow users to set the port via a parameter

 o SNMP_TIMEOUT
 public int SNMP_TIMEOUT
To allow users to set the timeout via a parameter

 o SNMP_RETRIES
 public int SNMP_RETRIES
To allow users to set the number of retries via a parameter

Constructors

 o mibBrowser
 public mibBrowser()

Methods

 o init
 public void init()
The applets init method sets up the GUI

Overrides:
init in class Applet
 o action
 public boolean action(Event e,
                       Object arg)
Actions for each of the buttons, choice, and list

Overrides:
action in class Component
 o 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
 o stop
 public void stop()
The stop method, used when applet is no longer on screen

Overrides:
stop in class Applet
 o destroy
 public void destroy()
The destroy method needed to stop any threads, etc.

Overrides:
destroy in class Applet
 o getAppletInfo
 public String getAppletInfo()
To provide applet information

Overrides:
getAppletInfo in class Applet
 o getParameterInfo
 public String[][] getParameterInfo()
To provide parameter information

Overrides:
getParameterInfo in class Applet

All Packages  Class Hierarchy  This Package  Previous  Next  Index