Skip to content

Commit

Permalink
add documentation to methods where it is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Tahiatul Islam committed Nov 29, 2023
1 parent 8a5bf1f commit 34a10d5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,11 @@ public void addFields(String variableExpression) {
this.classFields.add(variableExpression);
}

/** This method sets the number of type variables for the current class */
/**
* This method sets the number of type variables for the current class
*
* @param numberOfTypeVariables number of type variable in this class.
*/
public void setNumberOfTypeVariables(int numberOfTypeVariables) {
this.numberOfTypeVariables = numberOfTypeVariables;
}
Expand Down

0 comments on commit 34a10d5

Please sign in to comment.