Uses of Class
sudoku.gui.Square

Packages that use Square
sudoku.game   
sudoku.gui   
 

Uses of Square in sudoku.game
 

Methods in sudoku.game with parameters of type Square
 void BoardState.play(Square square, int v)
          Attempts to set the argument Square to the given value then recalculates the possible values of all other Squares.
 

Uses of Square in sudoku.gui
 

Methods in sudoku.gui that return Square
(package private) static Square Square.getHighlighted()
          Squares can be highlighted by the cursor or the mouse.
 Square Board.getSquare(int i, int j)
          Returns the Square in the ith row and jth of a Board.SIZE x Board.SIZE 2-dimensional array.
 

Methods in sudoku.gui with parameters of type Square
static void Square.setCursorFocused(Square s)
          Sets this Square to be cursor focused.
(package private) static void Square.setHighlighted(Square highlighted)
          Squares can be highlighted by the cursor or the mouse.