Author: markt Date: Tue Nov 27 14:46:30 2012 New Revision: 1414215 URL: http://svn.apache.org/viewvc?rev=1414215&view=rev Log: A little more Javadoc
Modified: tomcat/trunk/java/javax/servlet/ServletContext.java Modified: tomcat/trunk/java/javax/servlet/ServletContext.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/ServletContext.java?rev=1414215&r1=1414214&r2=1414215&view=diff ============================================================================== --- tomcat/trunk/java/javax/servlet/ServletContext.java (original) +++ tomcat/trunk/java/javax/servlet/ServletContext.java Tue Nov 27 14:46:30 2012 @@ -555,10 +555,17 @@ public interface ServletContext { throws ServletException; /** - * @param servletName - * @return TODO - * @throws UnsupportedOperationException - * @since Servlet 3.0 TODO SERVLET3 - Add comments + * Obtain the details of the named servlet. + * + * @param servletName The name of the Servlet of interest + * + * @return The registration details for the named Servlet or + * <code>null</code> if no Servlet has been registered with the + * given name + * + * @throws UnsupportedOperationException TODO SERVLET3 - Add comments + * + * @since Servlet 3.0 */ public ServletRegistration getServletRegistration(String servletName); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org