You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2015/07/07 10:46:36 UTC

svn commit: r1689602 - /sling/trunk/bundles/scripting/core/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java

Author: olli
Date: Tue Jul  7 08:46:36 2015
New Revision: 1689602

URL: http://svn.apache.org/r1689602
Log:
add some javadoc

Modified:
    sling/trunk/bundles/scripting/core/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java

Modified: sling/trunk/bundles/scripting/core/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/core/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java?rev=1689602&r1=1689601&r2=1689602&view=diff
==============================================================================
--- sling/trunk/bundles/scripting/core/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java (original)
+++ sling/trunk/bundles/scripting/core/src/main/java/org/apache/sling/scripting/core/servlet/CaptureResponseWrapper.java Tue Jul  7 08:46:36 2015
@@ -47,7 +47,7 @@ public final class CaptureResponseWrappe
     /**
      * Returns true if the response is binary.
      *
-     * @return
+     * @return true if the response is binary, false otherwise
      */
     public boolean isBinaryResponse() {
         return isBinaryResponse;
@@ -69,6 +69,8 @@ public final class CaptureResponseWrappe
     /*
      * (non-Javadoc)
      * @see javax.servlet.ServletResponseWrapper#getOutputStream()
+     *
+     * @return the output stream from the response
      */
     @Override
     public ServletOutputStream getOutputStream() throws IOException {
@@ -82,6 +84,8 @@ public final class CaptureResponseWrappe
     /*
      * (non-Javadoc)
      * @see javax.servlet.ServletResponseWrapper#getWriter()
+     *
+     * @return the writer
      */
     @Override
     public PrintWriter getWriter() throws IOException {