mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-422: More documentation updates.
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user