Serialized Form


Package com.jeffpalm.applets

Class com.jeffpalm.applets.Sound extends javax.swing.JApplet implements Serializable

Serialized Fields

midi

Midi midi

Package com.jeffpalm.arrayparser

Class com.jeffpalm.arrayparser.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class com.jeffpalm.arrayparser.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.bib

Class com.jeffpalm.bib.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class com.jeffpalm.bib.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.bin

Class com.jeffpalm.bin.Bin.AbortProcessException extends java.lang.RuntimeException implements Serializable

Class com.jeffpalm.bin.Bin.UsageException extends java.lang.RuntimeException implements Serializable

Serialized Fields

args

java.lang.String args

Class com.jeffpalm.bin.Machines.Machine extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

host

java.lang.String host

ip

java.lang.String ip

inbox

java.io.File inbox

Class com.jeffpalm.bin.Machines.PersonImpl extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

name

java.lang.String name

emails2machines

java.util.Map<K,V> emails2machines

Package com.jeffpalm.cop5555.constrainer

Class com.jeffpalm.cop5555.constrainer.Table extends java.util.Hashtable implements Serializable

Serialized Fields

prev

Table prev

Package com.jeffpalm.cop5555.nodes

Class com.jeffpalm.cop5555.nodes.Children extends java.util.Vector implements Serializable


Package com.jeffpalm.css

Class com.jeffpalm.css.ParseException extends java.lang.Object implements Serializable

Class com.jeffpalm.css.Parser extends java.lang.Object implements Serializable

Class com.jeffpalm.css.ParserConstants extends java.lang.Object implements Serializable

Class com.jeffpalm.css.ParserTokenManager extends java.lang.Object implements Serializable

Class com.jeffpalm.css.SimpleCharStream extends java.lang.Object implements Serializable

Class com.jeffpalm.css.Token extends java.lang.Object implements Serializable

Class com.jeffpalm.css.TokenMgrError extends java.lang.Object implements Serializable


Package com.jeffpalm.dtd

Class com.jeffpalm.dtd.DTDParser extends java.lang.Object implements Serializable

Class com.jeffpalm.dtd.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class com.jeffpalm.dtd.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.eggtris

Class com.jeffpalm.eggtris.Board extends java.awt.Canvas implements Serializable

Serialized Fields

height

int height
The height of Board, defaults to 20 bricks.


width

int width
Width, defaults to 15 bricks.


x

int x
X position.


y

int y
Y position.


activeShape

MyShape activeShape
This is the only collection of bricks that occupies part of the Board without being null. All the rest of the elements in the bricks array are either null, or contain a locked brick


bricks

Brick[][] bricks
This is the array of bricks on the board.

Class com.jeffpalm.eggtris.DukeBoard extends java.awt.Canvas implements Serializable

Serialized Fields

applet

java.applet.Applet applet

color

java.awt.Color color

font

java.awt.Font font

x

int x

y

int y

width

int width

height

int height

currentImage

java.awt.Image currentImage

images

java.awt.Image[] images

Class com.jeffpalm.eggtris.Eggtris extends java.applet.Applet implements Serializable

Serialized Fields

level

int level
Current level.


speed

int speed
Current speed of the blocks (in ms.).


gameStarted

boolean gameStarted
True if game has started.


gamePaused

boolean gamePaused
True if game has been paused.


gameStopped

boolean gameStopped
True if game has been stopped.


thread

java.lang.Thread thread
Thread to drop the Shapes.


board

Board board
The playing Board.


scoreBoard

ScoreBoard scoreBoard
The scoreBoard.


nextBrickBoard

Board nextBrickBoard
The Canvas with the next Brick in it.


dukeBoard

DukeBoard dukeBoard
The Canvas with the next Brick in it.


activeShape

MyShape activeShape
The activeShape.


nextShape

MyShape nextShape
The next shape.


shapeGenerator

ShapeGenerator shapeGenerator
The object that gives out new Shapes.


boardBuffer

java.awt.Image boardBuffer
Image buffer for the board.


scoreBoardBuffer

java.awt.Image scoreBoardBuffer
Image buffer for the score board.


nextBrickBoardBuffer

java.awt.Image nextBrickBoardBuffer
Image buffer for the next brick board.


dukeBoardBuffer

java.awt.Image dukeBoardBuffer
Image for the Java logo.


pauseButton

java.awt.Button pauseButton
Pauses the game.


restartButton

java.awt.Button restartButton
Restarts the game.


mainPanel

java.awt.Panel mainPanel
Holds the main components.


buttonPanel

java.awt.Panel buttonPanel
Holds the buttons.

Class com.jeffpalm.eggtris.EggtrisFrame extends javax.swing.JFrame implements Serializable

Serialized Fields

level

int level
Current level.


speed

int speed
Current speed of the blocks (in ms.).


gameStarted

boolean gameStarted
True if game has started.


gamePaused

boolean gamePaused
True if game has been paused.


gameStopped

boolean gameStopped
True if game has been stopped.


thread

java.lang.Thread thread
Thread to drop the Shapes.


board

Board board
The playing Board.


scoreBoard

ScoreBoard scoreBoard
The scoreBoard.


nextBrickBoard

Board nextBrickBoard
The Canvas with the next Brick in it.


activeShape

MyShape activeShape
The activeShape.


nextShape

MyShape nextShape
The next shape.


shapeGenerator

ShapeGenerator shapeGenerator
The object that gives out new Shapes.


boardBuffer

java.awt.Image boardBuffer
Image buffer for the board.


scoreBoardBuffer

java.awt.Image scoreBoardBuffer
Image buffer for the score board.


nextBrickBoardBuffer

java.awt.Image nextBrickBoardBuffer
Image buffer for the next brick board.


javaLogo

java.awt.Image javaLogo
Image for the Java logo.

Class com.jeffpalm.eggtris.ScoreBoard extends java.awt.Canvas implements Serializable

Serialized Fields

color

java.awt.Color color

font

java.awt.Font font

x

int x

y

int y

width

int width

height

int height

lines

int lines

shapes

int shapes

level

int level

score

int score

Package com.jeffpalm.expr

Class com.jeffpalm.expr.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class com.jeffpalm.expr.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.grapher

Class com.jeffpalm.grapher.GraphFrame extends AbstractContainerFrame implements Serializable

Serialized Fields

graph

Graph graph

mainComponent

java.awt.Component mainComponent

Class com.jeffpalm.grapher.GUI extends javax.swing.JFrame implements Serializable

Serialized Fields

desktop

javax.swing.JDesktopPane desktop

NEW_ACTION

javax.swing.Action NEW_ACTION

OPEN_ACTION

javax.swing.Action OPEN_ACTION

QUIT_ACTION

javax.swing.Action QUIT_ACTION

ABOUT_ACTION

javax.swing.Action ABOUT_ACTION

shouldRethrowExceptions

boolean shouldRethrowExceptions

Package com.jeffpalm.gui

Class com.jeffpalm.gui.FilledAction extends javax.swing.AbstractAction implements Serializable

Class com.jeffpalm.gui.ProgressMonitors extends javax.swing.JFrame implements Serializable

Serialized Fields

label

javax.swing.JLabel label

mainPanel

javax.swing.JPanel mainPanel

names2tasks

java.util.Map<K,V> names2tasks

Package com.jeffpalm.gui.centered

Class com.jeffpalm.gui.centered.CenteredBox extends javax.swing.Box implements Serializable

Class com.jeffpalm.gui.centered.CenteredButton extends java.awt.Button implements Serializable

Class com.jeffpalm.gui.centered.CenteredCanvas extends java.awt.Canvas implements Serializable

Class com.jeffpalm.gui.centered.CenteredCellRendererPane extends javax.swing.CellRendererPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredCheckbox extends java.awt.Checkbox implements Serializable

Class com.jeffpalm.gui.centered.CenteredChoice extends java.awt.Choice implements Serializable

Class com.jeffpalm.gui.centered.CenteredContainer extends java.awt.Container implements Serializable

Class com.jeffpalm.gui.centered.CenteredDefaultListCellRenderer extends javax.swing.DefaultListCellRenderer implements Serializable

Class com.jeffpalm.gui.centered.CenteredDialog extends java.awt.Dialog implements Serializable

Class com.jeffpalm.gui.centered.CenteredFileDialog extends java.awt.FileDialog implements Serializable

Class com.jeffpalm.gui.centered.CenteredFrame extends java.awt.Frame implements Serializable

Class com.jeffpalm.gui.centered.CenteredJApplet extends javax.swing.JApplet implements Serializable

Class com.jeffpalm.gui.centered.CenteredJButton extends javax.swing.JButton implements Serializable

Class com.jeffpalm.gui.centered.CenteredJCheckBox extends javax.swing.JCheckBox implements Serializable

Class com.jeffpalm.gui.centered.CenteredJCheckBoxMenuItem extends javax.swing.JCheckBoxMenuItem implements Serializable

Class com.jeffpalm.gui.centered.CenteredJColorChooser extends javax.swing.JColorChooser implements Serializable

Class com.jeffpalm.gui.centered.CenteredJComboBox extends javax.swing.JComboBox implements Serializable

Class com.jeffpalm.gui.centered.CenteredJDesktopPane extends javax.swing.JDesktopPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJDialog extends javax.swing.JDialog implements Serializable

Class com.jeffpalm.gui.centered.CenteredJEditorPane extends javax.swing.JEditorPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJFileChooser extends javax.swing.JFileChooser implements Serializable

Class com.jeffpalm.gui.centered.CenteredJFormattedTextField extends javax.swing.JFormattedTextField implements Serializable

Class com.jeffpalm.gui.centered.CenteredJFrame extends javax.swing.JFrame implements Serializable

Class com.jeffpalm.gui.centered.CenteredJInternalFrame extends javax.swing.JInternalFrame implements Serializable

Class com.jeffpalm.gui.centered.CenteredJLabel extends javax.swing.JLabel implements Serializable

Class com.jeffpalm.gui.centered.CenteredJLayeredPane extends javax.swing.JLayeredPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJList extends javax.swing.JList implements Serializable

Class com.jeffpalm.gui.centered.CenteredJMenu extends javax.swing.JMenu implements Serializable

Class com.jeffpalm.gui.centered.CenteredJMenuBar extends javax.swing.JMenuBar implements Serializable

Class com.jeffpalm.gui.centered.CenteredJMenuItem extends javax.swing.JMenuItem implements Serializable

Class com.jeffpalm.gui.centered.CenteredJOptionPane extends javax.swing.JOptionPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJPanel extends javax.swing.JPanel implements Serializable

Class com.jeffpalm.gui.centered.CenteredJPasswordField extends javax.swing.JPasswordField implements Serializable

Class com.jeffpalm.gui.centered.CenteredJPopupMenu extends javax.swing.JPopupMenu implements Serializable

Class com.jeffpalm.gui.centered.CenteredJProgressBar extends javax.swing.JProgressBar implements Serializable

Class com.jeffpalm.gui.centered.CenteredJRadioButton extends javax.swing.JRadioButton implements Serializable

Class com.jeffpalm.gui.centered.CenteredJRadioButtonMenuItem extends javax.swing.JRadioButtonMenuItem implements Serializable

Class com.jeffpalm.gui.centered.CenteredJRootPane extends javax.swing.JRootPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJScrollBar extends javax.swing.JScrollBar implements Serializable

Class com.jeffpalm.gui.centered.CenteredJScrollPane extends javax.swing.JScrollPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJSeparator extends javax.swing.JSeparator implements Serializable

Class com.jeffpalm.gui.centered.CenteredJSlider extends javax.swing.JSlider implements Serializable

Class com.jeffpalm.gui.centered.CenteredJSpinner extends javax.swing.JSpinner implements Serializable

Class com.jeffpalm.gui.centered.CenteredJSplitPane extends javax.swing.JSplitPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJTabbedPane extends javax.swing.JTabbedPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJTable extends javax.swing.JTable implements Serializable

Class com.jeffpalm.gui.centered.CenteredJTextArea extends javax.swing.JTextArea implements Serializable

Class com.jeffpalm.gui.centered.CenteredJTextField extends javax.swing.JTextField implements Serializable

Class com.jeffpalm.gui.centered.CenteredJTextPane extends javax.swing.JTextPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredJToggleButton extends javax.swing.JToggleButton implements Serializable

Class com.jeffpalm.gui.centered.CenteredJToolBar extends javax.swing.JToolBar implements Serializable

Class com.jeffpalm.gui.centered.CenteredJToolTip extends javax.swing.JToolTip implements Serializable

Class com.jeffpalm.gui.centered.CenteredJTree extends javax.swing.JTree implements Serializable

Class com.jeffpalm.gui.centered.CenteredJViewport extends javax.swing.JViewport implements Serializable

Class com.jeffpalm.gui.centered.CenteredJWindow extends javax.swing.JWindow implements Serializable

Class com.jeffpalm.gui.centered.CenteredLabel extends java.awt.Label implements Serializable

Class com.jeffpalm.gui.centered.CenteredList extends java.awt.List implements Serializable

Class com.jeffpalm.gui.centered.CenteredPanel extends java.awt.Panel implements Serializable

Class com.jeffpalm.gui.centered.CenteredScrollbar extends java.awt.Scrollbar implements Serializable

Class com.jeffpalm.gui.centered.CenteredScrollPane extends java.awt.ScrollPane implements Serializable

Class com.jeffpalm.gui.centered.CenteredTextArea extends java.awt.TextArea implements Serializable

Class com.jeffpalm.gui.centered.CenteredTextField extends java.awt.TextField implements Serializable

Class com.jeffpalm.gui.centered.CenteredWindow extends java.awt.Window implements Serializable


Package com.jeffpalm.javaparser

Class com.jeffpalm.javaparser.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.


specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).

Class com.jeffpalm.javaparser.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.jvm

Class com.jeffpalm.jvm.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class com.jeffpalm.jvm.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.mail

Class com.jeffpalm.mail.ParseException extends java.lang.Exception implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

java.lang.String eol
The end of line string for this machine.

Class com.jeffpalm.mail.TokenMgrError extends java.lang.Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package com.jeffpalm.stats

Class com.jeffpalm.stats.TableFrame extends AbstractContainerFrame implements Serializable

Serialized Fields

jTable

com.jeffpalm.stats.TableFrame.MyTable jTable

tableModel

com.jeffpalm.stats.TableFrame.MyTableModel tableModel

table

Table2D table

Package com.jeffpalm.util

Class com.jeffpalm.util.AbstractContainerFrame extends CenteredJFrame implements Serializable

Serialized Fields

ACTIONS

javax.swing.Action[] ACTIONS

Class com.jeffpalm.util.Assert.AssertionError extends java.lang.Error implements Serializable

Class com.jeffpalm.util.CommandParser.CallBackException extends java.lang.RuntimeException implements Serializable

Class com.jeffpalm.util.MutableNumber extends java.lang.Number implements Serializable

Class com.jeffpalm.util.MutableNumber.Byte extends MutableNumber implements Serializable

Serialized Fields

val

byte val

Class com.jeffpalm.util.MutableNumber.Double extends MutableNumber implements Serializable

Serialized Fields

val

double val

Class com.jeffpalm.util.MutableNumber.Float extends MutableNumber implements Serializable

Serialized Fields

val

float val

Class com.jeffpalm.util.MutableNumber.Integer extends MutableNumber implements Serializable

Serialized Fields

val

int val

Class com.jeffpalm.util.MutableNumber.Long extends MutableNumber implements Serializable

Serialized Fields

val

long val

Class com.jeffpalm.util.MutableNumber.Short extends MutableNumber implements Serializable

Serialized Fields

val

short val

Class com.jeffpalm.util.RestrictedNumber extends MutableNumber implements Serializable

Class com.jeffpalm.util.RestrictedNumber.Double extends MutableNumber.Double implements Serializable

Serialized Fields

lo

double lo

hi

double hi

Class com.jeffpalm.util.RestrictedNumber.Float extends MutableNumber.Float implements Serializable

Serialized Fields

lo

float lo

hi

float hi

Class com.jeffpalm.util.RestrictedNumber.Integer extends MutableNumber.Integer implements Serializable

Serialized Fields

lo

int lo

hi

int hi

Class com.jeffpalm.util.RestrictedNumber.Long extends MutableNumber.Long implements Serializable

Serialized Fields

lo

long lo

hi

long hi

Class com.jeffpalm.util.RestrictedNumber.Short extends MutableNumber.Short implements Serializable

Serialized Fields

lo

short lo

hi

short hi

Class com.jeffpalm.util.TodoException extends java.lang.RuntimeException implements Serializable

Class com.jeffpalm.util.UnimplementedException extends java.lang.RuntimeException implements Serializable

Class com.jeffpalm.util.UnsetNumber extends java.lang.Number implements Serializable

Serialized Fields

isSet

boolean isSet

number

java.lang.Number number

Class com.jeffpalm.util.UnsetNumber.Byte extends UnsetNumber implements Serializable

Class com.jeffpalm.util.UnsetNumber.Double extends UnsetNumber implements Serializable

Class com.jeffpalm.util.UnsetNumber.Float extends UnsetNumber implements Serializable

Class com.jeffpalm.util.UnsetNumber.Integer extends UnsetNumber implements Serializable

Class com.jeffpalm.util.UnsetNumber.Long extends UnsetNumber implements Serializable

Class com.jeffpalm.util.UnsetNumber.Short extends UnsetNumber implements Serializable


Package com.jeffpalm.util.getopt

Class com.jeffpalm.util.getopt.Option extends java.lang.Object implements Serializable


Package com.jeffpalm.util.gui

Class com.jeffpalm.util.gui.CenteredJFrame extends javax.swing.JFrame implements Serializable