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

@@ -11,17 +11,24 @@ public class GenericBeanInt extends GenericBean<Integer> {
/** */
final char a = 'A';
/** return the a */
/** @return the a */
public char getA() {
return a;
}
/** return false. should not be beanable */
/**
* Should not be beanable
*
* @return false
*/
public boolean getable() {
return false;
}
/** */
/**
* @param genericValue
* the value to initiate with.
*/
public GenericBeanInt(Integer genericValue) {
super(genericValue);
}