Further descriptions.
parent
fd91996029
commit
1000ef93cf
|
@ -14,7 +14,7 @@ import java.util.regex.Pattern;
|
||||||
* A simplified spreadsheet class for the PR1 programming lab at Hochschule Mannheim.
|
* A simplified spreadsheet class for the PR1 programming lab at Hochschule Mannheim.
|
||||||
* One aspect worth mentioning is that it only supports long numbers, not doubles.
|
* One aspect worth mentioning is that it only supports long numbers, not doubles.
|
||||||
*
|
*
|
||||||
* @author Oliver Hummel
|
* @author Selim Eser (2211482)
|
||||||
*/
|
*/
|
||||||
public class Spreadsheet {
|
public class Spreadsheet {
|
||||||
Cell[][] cells;
|
Cell[][] cells;
|
||||||
|
@ -144,7 +144,8 @@ public class Spreadsheet {
|
||||||
/**
|
/**
|
||||||
* This method does the actual evaluation/calcluation of a specific cell
|
* This method does the actual evaluation/calcluation of a specific cell
|
||||||
*
|
*
|
||||||
* @param row,col the name of row and column of the cell
|
* @param row The number of the cell row.
|
||||||
|
* @param col The number of the cell column.
|
||||||
* @return Nothing.
|
* @return Nothing.
|
||||||
*/
|
*/
|
||||||
private void evaluateCell(int row, int col) {
|
private void evaluateCell(int row, int col) {
|
||||||
|
|
Loading…
Reference in New Issue