Author: rgielen Date: Thu Aug 21 13:16:02 2008 New Revision: 687847 URL: http://svn.apache.org/viewvc?rev=687847&view=rev Log: Javadoc fix
Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java?rev=687847&r1=687846&r2=687847&view=diff ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/StaticContentLoader.java Thu Aug 21 13:16:02 2008 @@ -29,20 +29,17 @@ /** * Interface for loading static resources, based on a path - * */ public interface StaticContentLoader { /** - * @param path - * Requested resource path + * @param path Requested resource path * @return true if this loader is able to load this type of resource, false otherwise */ public boolean canHandle(String path); /** - * @param filterConfig - * The filter configuration + * @param filterConfig The filter configuration */ public abstract void setHostConfig(HostConfig filterConfig); @@ -50,14 +47,10 @@ * Locate a static resource and copy directly to the response, setting the * appropriate caching headers. * - * @param name - * The resource name - * @param request - * The request - * @param response - * The response - * @throws IOException - * If anything goes wrong + * @param path The resource name + * @param request The request + * @param response The response + * @throws IOException If anything goes wrong */ public abstract void findStaticResource(String path, HttpServletRequest request, HttpServletResponse response) throws IOException;