Author: remy.maucherat(a)jboss.com
Date: 2009-11-27 09:36:01 -0500 (Fri, 27 Nov 2009)
New Revision: 1300
Modified:
trunk/java/javax/servlet/http/HttpSessionEvent.java
Log:
- Cosmetic.
Modified: trunk/java/javax/servlet/http/HttpSessionEvent.java
===================================================================
--- trunk/java/javax/servlet/http/HttpSessionEvent.java 2009-11-26 16:13:50 UTC (rev
1299)
+++ trunk/java/javax/servlet/http/HttpSessionEvent.java 2009-11-27 14:36:01 UTC (rev
1300)
@@ -52,23 +52,28 @@
* limitations under the License.
*/
+package javax.servlet.http;
+/**
+ * This is the class representing event notifications for changes to
+ * sessions within a web application.
+ *
+ * @since Servlet 2.3
+ */
+public class HttpSessionEvent extends java.util.EventObject {
-package javax.servlet.http;
+ /**
+ * Construct a session event from the given source.
+ */
+ public HttpSessionEvent(HttpSession source) {
+ super(source);
+ }
-
- /** This is the class representing event notifications for
- * changes to sessions within a web application.
- * @since Servlet 2.3
- */
-public class HttpSessionEvent extends java.util.EventObject {
- /** Construct a session event from the given source.*/
- public HttpSessionEvent(HttpSession source) {
- super(source);
-}
- /** Return the session that changed.*/
+ /**
+ * Return the session that changed.
+ */
public HttpSession getSession () {
- return (HttpSession) super.getSource();
+ return (HttpSession) super.getSource();
}
}
Show replies by date