GUACAMOLE-422: More documentation updates.

This commit is contained in:
Nick Couchman
2019-05-06 11:58:59 -04:00
parent d534a7085d
commit ed7a99a11b

View File

@@ -77,29 +77,30 @@ public enum GuacamoleProtocolVersion {
} }
/** /**
* Return the major version number. * Return the major version component of the protocol version.
* *
* @return * @return
* The integer major version. * The integer major version component.
*/ */
public int getMajor() { public int getMajor() {
return major; return major;
} }
/** /**
* Return the minor version number. * Return the minor version component of the protocol version.
* *
* @return * @return
* The integer minor version. * The integer minor version component.
*/ */
public int getMinor() { public int getMinor() {
return minor; return minor;
} }
/** /**
* Return the patch version number. * Return the patch version component of the protocol version.
*
* @return * @return
* The integer patch version. * The integer patch version component.
*/ */
public int getPatch() { public int getPatch() {
return patch; return patch;