public interface SudokuGridModel
Modifier and Type | Field and Description |
---|---|
static int |
INNER_GRID_HEIGHT
The number of rows that make up a zone within the Grid
|
static int |
INNER_GRID_WIDTH
The number of colums that make up a zone within the Grid
|
static int |
NUM_COLS
The number of columns in the Grid, i.e. the width
|
static int |
NUM_ROWS
The number of rows in the Grid, i.e. the height
|
Modifier and Type | Method and Description |
---|---|
void |
addSudokuGridListener(SudokuGridListener l) |
String |
getCellValue(int iRow,
int iCol) |
void |
removeSudokuGridListener(SudokuGridListener l) |
void |
setCellValues(Integer[][] cellValues) |
void |
solve() |
void |
step() |
static final int NUM_ROWS
static final int NUM_COLS
static final int INNER_GRID_WIDTH
static final int INNER_GRID_HEIGHT
void setCellValues(Integer[][] cellValues)
String getCellValue(int iRow, int iCol)
void solve()
void step()
void addSudokuGridListener(SudokuGridListener l)
void removeSudokuGridListener(SudokuGridListener l)
Copyright © 2001–2019 JBoss by Red Hat. All rights reserved.