Package org.drools.examples.sudoku
Class CellSqr
- java.lang.Object
-
- org.drools.examples.sudoku.SetOfNine
-
- org.drools.examples.sudoku.CellGroup
-
- org.drools.examples.sudoku.CellSqr
-
public class CellSqr extends CellGroup
Represents a 3x3 area of Sudoku grid cells.
-
-
Method Summary
-
Methods inherited from class org.drools.examples.sudoku.SetOfNine
blockExcept, blockValue, getFree, getFreeCount, getFreeValue
-
-
-
-
Constructor Detail
-
CellSqr
public CellSqr(CellRow cellRow0, CellRow cellRow1, CellRow cellRow2, CellCol cellCol0, CellCol cellCol1, CellCol cellCol2)
Constructor.- Parameters:
cellRow0- the 1st row passing through this block.cellRow1- the 2nd row passing through this block.cellRow2- the 3rd row passing through this block.cellCol0- the 1st column passing through this block.cellCol1- the 2nd column passing through this block.cellCol2- the 3rd column passing through this block.
-
-