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:
parent
7bc8f41023
commit
e94783f91b
6 changed files with 91 additions and 15 deletions
|
@ -10,6 +10,10 @@ import java.io.StringReader;
|
|||
* generic number value
|
||||
*/
|
||||
public class GenericBean<T extends Number & Comparable<T>> implements MyBean {
|
||||
/**
|
||||
* @param genericValue
|
||||
* value to initiate with
|
||||
*/
|
||||
public GenericBean(T genericValue) {
|
||||
super();
|
||||
this.genericValue = genericValue;
|
||||
|
@ -28,7 +32,10 @@ public class GenericBean<T extends Number & Comparable<T>> implements MyBean {
|
|||
return this.genericValue;
|
||||
}
|
||||
|
||||
/** sets the generic value */
|
||||
/**
|
||||
* @param genericValue
|
||||
* generic value to set
|
||||
*/
|
||||
public void setGenericValue(T genericValue) {
|
||||
this.genericSetCounter++;
|
||||
this.genericValue = genericValue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue