From 1000ef93cf1f04a698681cc3468ea669dbee5053 Mon Sep 17 00:00:00 2001 From: selim Date: Wed, 27 Dec 2023 19:31:14 +0100 Subject: [PATCH] Further descriptions. --- .../de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java b/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java index 7888480..c5b4094 100644 --- a/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java +++ b/Axel/src/de/hs_mannheim/informatik/spreadsheet/Spreadsheet.java @@ -14,7 +14,7 @@ import java.util.regex.Pattern; * 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. * - * @author Oliver Hummel + * @author Selim Eser (2211482) */ public class Spreadsheet { Cell[][] cells; @@ -144,7 +144,8 @@ public class Spreadsheet { /** * 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. */ private void evaluateCell(int row, int col) {