1
0
Fork 0

Further descriptions.

pull/1/head
selim 2023-12-27 19:31:14 +01:00
parent fd91996029
commit 1000ef93cf
1 changed files with 3 additions and 2 deletions

View File

@ -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) {