From: Henri Sara Date: Tue, 1 Dec 2009 08:58:08 +0000 (+0000) Subject: fixed some javadoc typos X-Git-Tag: 6.7.0.beta1~2213 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e75f93eb7fa14976a440298521ad1eb9bb608e04;p=vaadin-framework.git fixed some javadoc typos svn changeset:10115/svn branch:6.2 --- diff --git a/src/com/vaadin/terminal/gwt/server/HttpServletRequestListener.java b/src/com/vaadin/terminal/gwt/server/HttpServletRequestListener.java index f9c76121d9..4d57e1f395 100644 --- a/src/com/vaadin/terminal/gwt/server/HttpServletRequestListener.java +++ b/src/com/vaadin/terminal/gwt/server/HttpServletRequestListener.java @@ -24,7 +24,7 @@ import com.vaadin.terminal.Terminal; *

* Alternatives for implementing similar features are are Servlet {@link Filter} * s and {@link TransactionListener}s in Vaadin. - * + * * @since 6.2 * @see PortletRequestListener */ @@ -33,7 +33,7 @@ public interface HttpServletRequestListener extends Serializable { /** * This method is called before {@link Terminal} applies the request to * Application. - * + * * @param request * @param response */ @@ -41,8 +41,8 @@ public interface HttpServletRequestListener extends Serializable { HttpServletResponse response); /** - * This method is called at the end if each request. - * + * This method is called at the end of each request. + * * @param request * @param response */ diff --git a/src/com/vaadin/terminal/gwt/server/PortletRequestListener.java b/src/com/vaadin/terminal/gwt/server/PortletRequestListener.java index f49b4f5bc7..43898faa54 100644 --- a/src/com/vaadin/terminal/gwt/server/PortletRequestListener.java +++ b/src/com/vaadin/terminal/gwt/server/PortletRequestListener.java @@ -17,7 +17,7 @@ import com.vaadin.terminal.Terminal; * If Application is used deployed as both Servlet and Portlet, one most likely * needs to implement both. *

- * Only JSR 268 style Portlets are supported. + * Only JSR 286 style Portlets are supported. *

* Interface can be used for several helper tasks including: *