]> source.dussan.org Git - vaadin-framework.git/commitdiff
Minor javadoc update
authorArtur Signell <artur.signell@itmill.com>
Mon, 28 Dec 2009 08:06:02 +0000 (08:06 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 28 Dec 2009 08:06:02 +0000 (08:06 +0000)
svn changeset:10545/svn branch:6.2

src/com/vaadin/terminal/gwt/server/PortletRequestListener.java

index 43898faa54749fddda880a81a8de0bbf95a55907..f2a3386b132639ad80702957d95ff9c3a4f765d0 100644 (file)
@@ -11,15 +11,15 @@ import com.vaadin.service.ApplicationContext.TransactionListener;
 import com.vaadin.terminal.Terminal;
 
 /**
- * {@link Application} that implements this interface gets notified of request
- * start and end by terminal. It is quite similar to
+ * An {@link Application} that implements this interface gets notified of
+ * request start and end by the terminal. It is quite similar to the
  * {@link HttpServletRequestListener}, but the parameters are Portlet specific.
- * If Application is used deployed as both Servlet and Portlet, one most likely
- * needs to implement both.
+ * If an Application is deployed as both a Servlet and a Portlet, one most
+ * likely needs to implement both.
  * <p>
  * Only JSR 286 style Portlets are supported.
  * <p>
- * Interface can be used for several helper tasks including:
+ * The interface can be used for several helper tasks including:
  * <ul>
  * <li>Opening and closing database connections
  * <li>Implementing {@link ThreadLocal}
@@ -28,7 +28,7 @@ import com.vaadin.terminal.Terminal;
  * <p>
  * Alternatives for implementing similar features are are Servlet {@link Filter}
  * s and {@link TransactionListener}s in Vaadin.
- *
+ * 
  * @since 6.2
  * @see HttpServletRequestListener
  */
@@ -37,7 +37,7 @@ public interface PortletRequestListener extends Serializable {
     /**
      * This method is called before {@link Terminal} applies the request to
      * Application.
-     *
+     * 
      * @param requestData
      *            the {@link PortletRequest} about to change Application state
      */