Skip to content

Commit 0503637

Browse files
author
Michael Ryan Hunsaker
committed
Add Javadoc stubs to Java sources (automated)
1 parent a1d85f7 commit 0503637

File tree

227 files changed

+3293
-3269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+3293
-3269
lines changed

src/main/java/com/studentgui/apphelpers/dto/AssessmentPayload.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,20 @@ public AssessmentPayload(final int sessionIdParam, final String[] codesParam, fi
3131

3232
@Override
3333
/**
34-
* getSessionId - TODO: describe this method
35-
* @return TODO: describe return value
34+
* Return the numeric database session id associated with this payload.
35+
*
36+
* @return the session id stored in this payload
3637
*/
37-
3838
public int getSessionId() {
3939
return this.sessionId;
4040
}
4141

4242
@Override
4343
/**
44-
* toString - TODO: describe this method
45-
* @return TODO: describe return value
44+
* Return a compact, human-readable representation of this payload suitable
45+
* for logging and diagnostics.
46+
*
47+
* @return a one-line string describing the payload contents
4648
*/
4749

4850
public String toString() {

src/main/java/com/studentgui/apphelpers/dto/ContactPayload.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ public ContactPayload(final int sessionIdParam, final String guardianParam, fina
5353

5454
@Override
5555
/**
56-
* getSessionId - TODO: describe this method
57-
* @return TODO: describe return value
56+
* Return the database session id associated with this contact payload.
57+
*
58+
* @return numeric session id for the recorded contact entry
5859
*/
5960

6061
public int getSessionId() { return this.sessionId; }

src/main/java/com/studentgui/apphelpers/dto/KeyboardingPayload.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ public KeyboardingPayload(final int sessionIdParam, final String programParam, f
3737

3838
@Override
3939
/**
40-
* getSessionId - TODO: describe this method
41-
* @return TODO: describe return value
40+
* Return the database session id associated with this keyboarding payload.
41+
*
42+
* @return numeric session id for the recorded keyboarding session
4243
*/
4344

4445
public int getSessionId() { return this.sessionId; }

src/main/java/com/studentgui/apphelpers/dto/NotesPayload.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ public NotesPayload(final int sessionIdParam, final String notesParam) {
2525

2626
@Override
2727
/**
28-
* getSessionId - TODO: describe this method
29-
* @return TODO: describe return value
28+
* Return the database session id associated with this notes payload.
29+
*
30+
* @return numeric session id for the recorded notes entry
3031
*/
3132

3233
public int getSessionId() { return this.sessionId; }

src/main/java/com/studentgui/apppages/Abacus.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,14 @@ private void refreshGraph() {
412412
}
413413
@Override
414414
/**
415-
* dateChanged - TODO: describe this method
416-
* @param newDate TODO: describe parameter
415+
* Update the displayed date for the Abacus page and refresh content.
416+
*
417+
* Records `dateParam` and schedules a UI refresh on the Swing EDT so the
418+
* graph and title display the selected date. Note: some pages refresh
419+
* recent sessions independent of the selected date; this call keeps the
420+
* saved date in sync for subsequent actions.
421+
*
422+
* @param newDate the date to display (may be null to use current date)
417423
*/
418424

419425
public void dateChanged(final LocalDate newDate) {
@@ -427,8 +433,12 @@ public void dateChanged(final LocalDate newDate) {
427433

428434
@Override
429435
/**
430-
* studentChanged - TODO: describe this method
431-
* @param newStudent TODO: describe parameter
436+
* Update the selected student for the Abacus page and refresh content.
437+
*
438+
* Sets `studentNameParam` and posts a UI refresh on the Swing EDT to
439+
* reload data and update the page title.
440+
*
441+
* @param newStudent student identifier (name or id) to display; may be null
432442
*/
433443

434444
public void studentChanged(final String newStudent) {

src/main/java/com/studentgui/apppages/Braille.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,13 @@ private void refreshGraph() {
422422

423423
@Override
424424
/**
425-
* dateChanged - TODO: describe this method
426-
* @param newDate TODO: describe parameter
425+
* Update the displayed date for the Braille page and refresh content.
426+
*
427+
* Stores `dateParam` and schedules a UI refresh on the Swing EDT so the
428+
* graph and title reflect the new date selection.
429+
*
430+
* @param newDate the date to display (may be null to use current date)
427431
*/
428-
429432
public void dateChanged(final LocalDate newDate) {
430433
this.dateParam = newDate;
431434
SwingUtilities.invokeLater(() -> {
@@ -436,10 +439,13 @@ public void dateChanged(final LocalDate newDate) {
436439

437440
@Override
438441
/**
439-
* studentChanged - TODO: describe this method
440-
* @param newStudent TODO: describe parameter
442+
* Update the selected student for the Braille page and refresh content.
443+
*
444+
* Sets `studentNameParam` and posts a refresh task to the Swing EDT to
445+
* reload data and update the page title.
446+
*
447+
* @param newStudent student identifier (name or id) to display; may be null
441448
*/
442-
443449
public void studentChanged(final String newStudent) {
444450
this.studentNameParam = newStudent != null ? newStudent : "Unknown Student";
445451
SwingUtilities.invokeLater(() -> {

src/main/java/com/studentgui/apppages/BrailleNote.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,12 @@ private void refreshGraph() {
429429

430430
@Override
431431
/**
432-
* dateChanged - TODO: describe this method
433-
* @param newDate TODO: describe parameter
432+
* Update the currently displayed date for this page and refresh the UI.
433+
*
434+
* Sets the internal `dateParam` and schedules a refresh of the graph and
435+
* title on the Swing Event Dispatch Thread.
436+
*
437+
* @param newDate the date to display (may be null to use the current date)
434438
*/
435439

436440
public void dateChanged(LocalDate newDate) {
@@ -443,8 +447,12 @@ public void dateChanged(LocalDate newDate) {
443447

444448
@Override
445449
/**
446-
* studentChanged - TODO: describe this method
447-
* @param newStudent TODO: describe parameter
450+
* Update the selected student for this page and refresh the UI.
451+
*
452+
* Sets the internal `studentNameParam` and schedules a refresh of the
453+
* graph and title on the Swing Event Dispatch Thread.
454+
*
455+
* @param newStudent student identifier (name or id) to display; may be null
448456
*/
449457

450458
public void studentChanged(String newStudent) {

src/main/java/com/studentgui/apppages/DigitalLiteracy.java

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -427,10 +427,14 @@ private void refreshGraph() {
427427
}
428428

429429
@Override
430-
/**
431-
* dateChanged - TODO: describe this method
432-
* @param newDate TODO: describe parameter
433-
*/
430+
/**
431+
* Update the displayed date for the Digital Literacy page and refresh UI.
432+
*
433+
* Records `dateParam` and schedules a UI refresh on the Swing EDT so the
434+
* chart and title display the selected date.
435+
*
436+
* @param newDate the date to display (may be null to use current date)
437+
*/
434438

435439
public void dateChanged(final LocalDate newDate) {
436440
this.dateParam = newDate;
@@ -441,10 +445,14 @@ public void dateChanged(final LocalDate newDate) {
441445
}
442446

443447
@Override
444-
/**
445-
* studentChanged - TODO: describe this method
446-
* @param newStudent TODO: describe parameter
447-
*/
448+
/**
449+
* Update the selected student for the Digital Literacy page and refresh UI.
450+
*
451+
* Sets `studentNameParam` and posts a refresh on the Swing EDT to reload
452+
* data and update the page title.
453+
*
454+
* @param newStudent student identifier (name or id) to display; may be null
455+
*/
448456

449457
public void studentChanged(final String newStudent) {
450458
this.studentNameParam = newStudent;

src/main/java/com/studentgui/apppages/JLineGraph.java

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,9 @@ public JLineGraph() {
215215

216216
@Override
217217
/**
218-
* settingsChanged - TODO: describe this method
218+
* Load chart-related preferences from the global Settings store and apply
219+
* them to this graph instance. Currently this updates jitter-related
220+
* configuration such as enabled/deterministic flags and the optional seed.
219221
*/
220222

221223
public void settingsChanged() {
@@ -839,9 +841,14 @@ private void updateXAxisLabels() {
839841
domain.setTickUnit(new org.jfree.chart.axis.NumberTickUnit(1) {
840842
@Override
841843
/**
842-
* valueToString - TODO: describe this method
843-
* @param value TODO: describe parameter
844-
* @return TODO: describe return value
844+
* Convert a numeric X-axis tick value into the corresponding skill
845+
* label. The chart uses 1-based integer positions; this method maps
846+
* that position (cast to an index) into the precomputed
847+
* `skillLabels` array and returns an empty string for out-of-range
848+
* values.
849+
*
850+
* @param value numeric tick value provided by the axis
851+
* @return the skill label for the given tick, or an empty string
845852
*/
846853

847854
public String valueToString(double value) {

src/main/java/com/studentgui/apppages/Keyboarding.java

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,12 @@ private void refreshGraph() {
241241

242242
@Override
243243
/**
244-
* dateChanged - TODO: describe this method
245-
* @param newDate TODO: describe parameter
244+
* Update the displayed date for the Keyboarding page and refresh content.
245+
*
246+
* Stores the provided `dateParam` and schedules a refresh on the Swing EDT
247+
* so the UI (graph and title) reflects the new date.
248+
*
249+
* @param newDate the date to display (may be null to use current date)
246250
*/
247251

248252
public void dateChanged(LocalDate newDate) {
@@ -255,8 +259,12 @@ public void dateChanged(LocalDate newDate) {
255259

256260
@Override
257261
/**
258-
* studentChanged - TODO: describe this method
259-
* @param newStudent TODO: describe parameter
262+
* Update the selected student for the Keyboarding page and refresh content.
263+
*
264+
* Sets `studentNameParam` and schedules a UI update on the Swing EDT to
265+
* reload page data and update the title.
266+
*
267+
* @param newStudent student identifier (name or id) to display; may be null
260268
*/
261269

262270
public void studentChanged(String newStudent) {

0 commit comments

Comments
 (0)