Add missing JavaDoc.

This commit is contained in:
Michael Jumper
2013-02-20 21:51:09 -08:00
parent a86f1a7c7f
commit 586c9b4f83
8 changed files with 81 additions and 5 deletions

View File

@@ -67,9 +67,22 @@ public class ReaderGuacamoleReader implements GuacamoleReader {
this.input = input;
}
/**
* The location within the received data buffer that parsing should begin
* when more data is read.
*/
private int parseStart;
/**
* The buffer holding all received, unparsed data.
*/
private char[] buffer = new char[20480];
/**
* The number of characters currently used within the data buffer. All
* other characters within the buffer are free space available for
* future reads.
*/
private int usedLength = 0;
@Override