Class IteGUI
IteGUI
- public class IteGUI
-
bottomBgColor
-
-
codeSelection
-
-
codeSelectionModel
-
-
db
-
-
EAST
-
-
frameworkChoices
-
-
IF_THEN_ELSE
-
-
IF_THEN_ELSE_CLASS
-
-
limitThreshold
-
-
limitThresholdModel
-
-
mainBgColor
-
-
MIDWEST
-
-
NESTED_IF
-
-
NESTED_IF_CLASS
-
-
NORTH
-
-
NUM_FRAMEWORK_CHOICES
-
-
NUM_REGION_CHOICES
-
-
region
-
-
regionChoices
-
-
regionModel
-
-
SOUTH
-
-
topBgColor
-
-
up
-
-
urlTextField
-
-
userId
-
-
userIdModel
-
-
WEST
-
-
IteGUI()
-
-
createButtonPanel()
-
-
createGUI()
-
-
createLabeledUrlTextField()
-
-
createLowerPanel()
-
-
createModels()
-
-
createUpperPanel()
-
-
init()
-
-
initializeComboBoxes()
-
-
initializeInternalTables()
-
-
main(String[])
- The main method allows you to run the applet in a JFrame.
-
newLabeledComponent(JLabel, JComponent)
-
Creates a panel with a label in the top part
and a JComponent in the bottom part
-
positionFrameOnDesktop(JFrame)
- This method is just for use with the main method
to position the test frame properly on the screen
-
resetUrl()
-
-
sort(String[])
- Sorts Strings in the array arr and returns it in a new array.
mainBgColor
private Color mainBgColor
topBgColor
private Color topBgColor
bottomBgColor
private Color bottomBgColor
IF_THEN_ELSE
private final String IF_THEN_ELSE
NESTED_IF
private final String NESTED_IF
IF_THEN_ELSE_CLASS
private final String IF_THEN_ELSE_CLASS
NESTED_IF_CLASS
private final String NESTED_IF_CLASS
NUM_FRAMEWORK_CHOICES
private final int NUM_FRAMEWORK_CHOICES
NUM_REGION_CHOICES
private final int NUM_REGION_CHOICES
EAST
private final String EAST
WEST
private final String WEST
SOUTH
private final String SOUTH
MIDWEST
private final String MIDWEST
NORTH
private final String NORTH
db
DataBank db
up
URLProcessor up
frameworkChoices
Hashtable frameworkChoices
regionChoices
Hashtable regionChoices
codeSelectionModel
String codeSelectionModel[]
userIdModel
String userIdModel[]
regionModel
String regionModel[]
limitThresholdModel
String limitThresholdModel[]
codeSelection
JComboBox codeSelection
userId
JComboBox userId
region
JComboBox region
limitThreshold
JComboBox limitThreshold
urlTextField
JTextField urlTextField
IteGUI
public IteGUI()
createButtonPanel
private JPanel createButtonPanel()
createGUI
private void createGUI()
createLabeledUrlTextField
private JPanel createLabeledUrlTextField()
createLowerPanel
private JPanel createLowerPanel()
createModels
private void createModels()
createUpperPanel
private JPanel createUpperPanel()
init
public void init()
initializeComboBoxes
private void initializeComboBoxes()
initializeInternalTables
private void initializeInternalTables()
main
public static void main(String args[])
- The main method allows you to run the applet in a JFrame.
However, unless you are running this (as an application)
on a server, you won't be able to connect to the urls,
though you will be able to see the url's in the window
provided.
For full functionality, run this class as an applet in
a browser by linking to IteGUI.html.
newLabeledComponent
public static JPanel newLabeledComponent(JLabel label,
JComponent component)
- Creates a panel with a label in the top part
and a JComponent in the bottom part
positionFrameOnDesktop
private static void positionFrameOnDesktop(JFrame f)
- This method is just for use with the main method
to position the test frame properly on the screen
resetUrl
private void resetUrl()
sort
public static String[] sort(String arr[])
- Sorts Strings in the array arr and returns it in a new array. The original
array remains unmodified.
Uses Insertion Sort algorithm -- efficient only for fairly small arrays
- Parameters:
- arr - String[]