package
gve.calc.formula;
public
class
TabularModified
{
Number of row/column
public
int
i;
true if column/row added; false if deleted
public
boolean
added;
true if column, false if row
public
boolean
row;
public
TabularModified
(
int
i,
boolean
added,
boolean
row) { this.i = i; this.added = added; this.row = row; } }