1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 16:00:51 -07:00

Updates javadocs

This commit is contained in:
John J. Aylward 2017-07-09 18:19:27 -04:00
parent 7bc8f41023
commit e94783f91b
6 changed files with 91 additions and 15 deletions

View file

@ -36,7 +36,12 @@ public final class Singleton {
return someInt;
}
/** sets someInt */
/**
* sets someInt.
*
* @param someInt
* the someInt to set
*/
public void setSomeInt(int someInt) {
this.someInt = someInt;
}
@ -46,7 +51,12 @@ public final class Singleton {
return someString;
}
/** sets someString */
/**
* sets someString.
*
* @param someString
* the someString to set
*/
public void setSomeString(String someString) {
this.someString = someString;
}