Add package-info.java files for all packages.

This commit is contained in:
Michael Jumper
2012-08-09 23:11:05 -07:00
parent 211348c82f
commit b3c721e159
6 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
/**
* All classes relating directly to data input or output.
*/
package net.sourceforge.guacamole.io;

View File

@@ -0,0 +1,7 @@
/**
* Classes which apply to network-specific concepts, such as low-level sockets
* and tunnels.
*/
package net.sourceforge.guacamole.net;

View File

@@ -0,0 +1,8 @@
/**
* All classes which apply generally across the Guacamole web application
* and all other web applications which use the API provided by the
* Guacamole project.
*/
package net.sourceforge.guacamole;

View File

@@ -0,0 +1,7 @@
/**
* Provides classes for reading properties from the web-application-wide
* guacamole.properties file.
*/
package net.sourceforge.guacamole.properties;

View File

@@ -0,0 +1,6 @@
/**
* Classes relating directly to the Guacamole protocol.
*/
package net.sourceforge.guacamole.protocol;

View File

@@ -0,0 +1,7 @@
/**
* Classes which build upon the Java Servlet API, providing an HTTP-based
* tunnel and session management.
*/
package net.sourceforge.guacamole.servlet;