Added missing package-info.java, fixed other.

This commit is contained in:
Michael Jumper
2012-08-09 14:40:05 -07:00
parent 96ad89486f
commit 591dc39ba3
2 changed files with 16 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
/**
* Provides classes for hooking into various events that take place as
* users log into and use the Guacamole web application. These event
* hooks can be used to take action upon occurence of an event and,
* in some cases, prevent the web application from allowing the
* event to continue for the user that triggered it.
*/
package net.sourceforge.guacamole.net.event;

View File

@@ -1,10 +1,11 @@
/** /**
* Provides classes for hooking into various events that take place as * Provides classes for storing information about events that are
* users log into and use the Guacamole web application. These event * triggered when users log into and use the Guacamole web application.
* hooks can be used to take action upon occurence of an event and, * These event classes are most useful when used with hooks implemented
* in some cases, prevent the web application from allowing the * using listener classes.
* event to continue for the user that triggered it. *
* @see net.sourceforge.guacamole.net.event.listener
*/ */
package net.sourceforge.guacamole.net.event; package net.sourceforge.guacamole.net.event;