Class Setting


  • public class Setting
    extends java.lang.Object
    Represents a temporary fact used for assigning a value to a cell.
    • Constructor Summary

      Constructors 
      Constructor Description
      Setting​(int row, int col, java.lang.Integer value)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getColNo()
      Returns the column number.
      int getRowNo()
      Returns the row number.
      java.lang.Integer getValue()
      Returns the value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Setting

        public Setting​(int row,
                       int col,
                       java.lang.Integer value)
        Constructor.
        Parameters:
        row - the row number of the Cell to set
        col - the column number of the Cell to set
        value - the value to set
    • Method Detail

      • getRowNo

        public int getRowNo()
        Returns the row number.
        Returns:
        an int value
      • getColNo

        public int getColNo()
        Returns the column number.
        Returns:
        an int value
      • getValue

        public java.lang.Integer getValue()
        Returns the value.
        Returns:
        an Integer object