Serialized Form


Package minesweeper

Class minesweeper.AssertionException implements Serializable

Class minesweeper.MainFrame implements Serializable

Serialized Fields

tfMineCount

JTextField tfMineCount
The text field displaying the number of remaining mines.

tfTimer

JTextField tfTimer
The text field displaying the elapsed time.

btnReset

JButton btnReset
The reset button.

mfMineField

MineField mfMineField
The mine field.

iInitialMines

int iInitialMines
The initial number of mines.

iRemainingMines

int iRemainingMines
The number of remaining mines.

bGameAllowed

boolean bGameAllowed
The flag indicating whether the game is running.

tTimer

Timer tTimer
The time used to update second display.

lStartTime

long lStartTime
The date (in seconds since Epoch) at which the current play started.

Class minesweeper.MineField implements Serializable

Serialized Fields

iColumns

int iColumns
The number of columns.

iRows

int iRows
The number of rows.

iInitialMines

int iInitialMines
The initial number of mines.

bGameAllowed

boolean bGameAllowed
The flag indicating whether the game is running.

bGameStarted

boolean bGameStarted
The flag indicating whether the game is started.

mfcCells

MineFieldCell[][] mfcCells
The array of mine field cells.

jtTable

JTable jtTable
The JTable.

tmTableModel

AbstractTableModel tmTableModel
The table model.

mfeEvent

minesweeper.event.MineFieldEvent mfeEvent
The source of events.