net.sourceforge.fixagora.basis.shared.model.communication
Class SpreadSheetCell

java.lang.Object
  extended by net.sourceforge.fixagora.basis.shared.model.communication.SpreadSheetCell
All Implemented Interfaces:
java.io.Serializable

public class SpreadSheetCell
extends java.lang.Object
implements java.io.Serializable

The Class SpreadSheetCell.

See Also:
Serialized Form

Constructor Summary
SpreadSheetCell(long sheet, java.lang.Object value, java.lang.String formula, int row, int column)
          Instantiates a new spread sheet cell.
SpreadSheetCell(long sheet, java.lang.Object value, java.lang.String formula, int row, int column, int condition)
          Instantiates a new spread sheet cell.
 
Method Summary
 int getColumn()
          Gets the column.
 int getCondition()
          Gets the condition.
 java.lang.String getFormula()
          Gets the formula.
 int getRow()
          Gets the row.
 long getSheet()
          Gets the sheet.
 java.lang.Object getValue()
          Gets the value.
 void setColumn(int column)
          Sets the column.
 void setFormula(java.lang.String formula)
          Sets the formula.
 void setRow(int row)
          Sets the row.
 void setValue(java.lang.Object value)
          Sets the value.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpreadSheetCell

public SpreadSheetCell(long sheet,
                       java.lang.Object value,
                       java.lang.String formula,
                       int row,
                       int column)
Instantiates a new spread sheet cell.

Parameters:
sheet - the sheet
value - the value
formula - the formula
row - the row
column - the column

SpreadSheetCell

public SpreadSheetCell(long sheet,
                       java.lang.Object value,
                       java.lang.String formula,
                       int row,
                       int column,
                       int condition)
Instantiates a new spread sheet cell.

Parameters:
sheet - the sheet
value - the value
formula - the formula
row - the row
column - the column
condition - the condition
Method Detail

getCondition

public int getCondition()
Gets the condition.

Returns:
the condition

setValue

public void setValue(java.lang.Object value)
Sets the value.

Parameters:
value - the new value

setFormula

public void setFormula(java.lang.String formula)
Sets the formula.

Parameters:
formula - the new formula

setRow

public void setRow(int row)
Sets the row.

Parameters:
row - the new row

setColumn

public void setColumn(int column)
Sets the column.

Parameters:
column - the new column

getRow

public int getRow()
Gets the row.

Returns:
the row

getColumn

public int getColumn()
Gets the column.

Returns:
the column

getSheet

public long getSheet()
Gets the sheet.

Returns:
the sheet

getValue

public java.lang.Object getValue()
Gets the value.

Returns:
the value

getFormula

public java.lang.String getFormula()
Gets the formula.

Returns:
the formula