From 33cbc71a230e7522168fdfe41afd5e3acf5bb7b5 Mon Sep 17 00:00:00 2001 From: ArghKevin Date: Wed, 8 May 2024 21:24:42 -0700 Subject: Javadoc beginning. --- src/LineGraph.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/LineGraph.java') diff --git a/src/LineGraph.java b/src/LineGraph.java index b9642fb..b698462 100644 --- a/src/LineGraph.java +++ b/src/LineGraph.java @@ -7,7 +7,7 @@ import javax.swing.*; * References: * * Date: - * 2024-04-28 + * 2024-05-08 * * Purpose of class: * Draw a line graph. @@ -15,10 +15,18 @@ import javax.swing.*; public class LineGraph { int[][] coordinates; // A line graph has-a set of coordinates + + /* + * Constructor. + */ public LineGraph() { coordinates = null; } + + /* + * Set a point at a pair of coordinates. + */ void setCoordinates(int y, int x) { } } -- cgit v1.2.3