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

@@ -58,7 +58,15 @@ import net.sourceforge.guacamole.net.GuacamoleSocket;
*/
public class ConfiguredGuacamoleSocket implements GuacamoleSocket {
/**
* The wrapped socket.
*/
private GuacamoleSocket socket;
/**
* The configuration to use when performing the Guacamole protocol
* handshake.
*/
private GuacamoleConfiguration config;
/**

View File

@@ -51,9 +51,19 @@ import java.util.Set;
*/
public class GuacamoleConfiguration implements Serializable {
/**
* Identifier unique to this version of GuacamoleConfiguration.
*/
private static final long serialVersionUID = 1L;
/**
* The name of the protocol associated with this configuration.
*/
private String protocol;
/**
* Map of all associated parameter values, indexed by parameter name.
*/
private Map<String, String> parameters = new HashMap<String, String>();
/**

View File

@@ -1,10 +1,6 @@
package net.sourceforge.guacamole.protocol;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
@@ -41,6 +37,10 @@ import java.util.List;
*
* ***** END LICENSE BLOCK ***** */
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* An abstract representation of a Guacamole instruction, as defined by the
* Guacamole protocol.
@@ -63,7 +63,7 @@ public class GuacamoleInstruction {
* Creates a new GuacamoleInstruction having the given Operation and
* list of arguments values.
*
* @param operation The opcode of the instruction to create.
* @param opcode The opcode of the instruction to create.
* @param args The list of argument values to provide in the new
* instruction if any.
*/