update JavaDoc

This commit is contained in:
nora 2020-11-22 15:00:21 +01:00
parent 23c356a4c8
commit a2d90ecc26
2 changed files with 22 additions and 2 deletions

View file

@ -41,6 +41,11 @@ public class UMLField {
}
/**
* Generate a Setter Method for this field
*
* @return The Setter Method as a String
*/
public String setter() {
String nameCapital = name.toUpperCase();
String nameCC = "set" + nameCapital.charAt(0) + name.substring(1);
@ -51,6 +56,11 @@ public class UMLField {
return setter.toString();
}
/**
* Generate a Getter Method for this field
*
* @return The Getter Method as a String
*/
public String getter() {
String nameCapital = name.toUpperCase();