Skip to content

Commit

Permalink
Add missing Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 6, 2024
1 parent c52ce39 commit 8a86434
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ public int getBufferSize() {
return this.bufferSize;
}

/**
* Gets an arbitrary user-defined comment.
*
* @return a user-defined comment.
*/
public String getComment() {
return comment;
}
Expand Down Expand Up @@ -410,6 +415,11 @@ public void setBufferSize(final int bufferSize) {
this.bufferSize = bufferSize;
}

/**
* Sets an arbitrary user-defined comment.
*
* @param comment a user-defined comment.
*/
public void setComment(final String comment) {
this.comment = comment;
}
Expand Down

0 comments on commit 8a86434

Please sign in to comment.