--- jlscp/trunk/src/org/linuxsampler/lscp/AbstractParameter.java 2005/10/02 14:40:52 783 +++ jlscp/trunk/src/org/linuxsampler/lscp/AbstractParameter.java 2005/10/10 14:55:44 784 @@ -279,7 +279,8 @@ /** * Gets the lower limit of the allowed value range for this parameter. - * @return The lower limit of the allowed value range for this parameter. + * @return The lower limit of the allowed value range for this + * parameter or null if the parameter doesn't have lower limit. */ public Number getRangeMin() { return rangeMin; } @@ -293,7 +294,8 @@ /** * Gets the upper limit of the allowed value range for this parameter. - * @return The upper limit of the allowed value range for this parameter. + * @return The upper limit of the allowed value range for this + * parameter or null if the parameter doesn't have upper limit. */ public Number getRangeMax() { return rangeMax; }