* Returns a reference to the {@link ServletContext} in which the caller is
* executing.
*
- * @returns {@link ServletContext} object, used by the caller to interact
- * with its servlet container
+ * @return {@link ServletContext} object, used by the caller to interact
+ * with its servlet container
*
* @seeServletContext
*/
* <code>String</code> specifying the name of the initialization
* parameter
*
- * @returns <code>String</code> containing the value of the initialization
- * parameter
+ * @return <code>String</code> containing the value of the initialization
+ * parameter
*/
public String getInitParameter(String name);
* <code>Enumeration</code> of <code>String</code> objects, or an empty
* <code>Enumeration</code> if the filter has no initialization parameters.
*
- * @returns <code>Enumeration</code> of <code>String</code> objects
- * containing the names of the filter's initialization parameters
+ * @return <code>Enumeration</code> of <code>String</code> objects
+ * containing the names of the filter's initialization parameters
*/
public Enumeration<String> getInitParameterNames();
* Add filter to context.
* @param filterName Name of filter to add
* @param filterClass Name of filter class
- * @returns <code>null</code> if the filter has already been fully defined,
+ * @return <code>null</code> if the filter has already been fully defined,
* else a {@link FilterRegistration.Dynamic} object that can be
* used to further configure the filter
* @throws IllegalStateException if the context has already been initialised
* Add filter to context.
* @param filterName Name of filter to add
* @param filter Filter to add
- * @returns <code>null</code> if the filter has already been fully defined,
+ * @return <code>null</code> if the filter has already been fully defined,
* else a {@link FilterRegistration.Dynamic} object that can be
* used to further configure the filter
* @throws IllegalStateException if the context has already been initialised
* Add filter to context.
* @param filterName Name of filter to add
* @param filterClass Class of filter to add
- * @returns <code>null</code> if the filter has already been fully defined,
+ * @return <code>null</code> if the filter has already been fully defined,
* else a {@link FilterRegistration.Dynamic} object that can be
* used to further configure the filter
* @throws IllegalStateException if the context has already been initialised
* Add servlet to context.
* @param servletName Name of servlet to add
* @param servletClass Name of servlet class
- * @returns <code>null</code> if the servlet has already been fully defined,
+ * @return <code>null</code> if the servlet has already been fully defined,
* else a {@link ServletRegistration.Dynamic} object that can be
* used to further configure the servlet
* @throws IllegalStateException if the context has already been initialised
* Add servlet to context.
* @param servletName Name of servlet to add
* @param servlet Servlet instance to add
- * @returns <code>null</code> if the servlet has already been fully defined,
+ * @return <code>null</code> if the servlet has already been fully defined,
* else a {@link ServletRegistration.Dynamic} object that can be
* used to further configure the servlet
* @throws IllegalStateException if the context has already been initialised
* Add servlet to context.
* @param servletName Name of servlet to add
* @param servletClass Class of servlet to add
- * @returns <code>null</code> if the servlet has already been fully defined,
+ * @return <code>null</code> if the servlet has already been fully defined,
* else a {@link ServletRegistration.Dynamic} object that can be
* used to further configure the servlet
* @throws IllegalStateException if the context has already been initialised
/**
* Get the port on which the Platform RMI server is exported. This is the
* port that is normally chosen by the RMI stack.
- * @returns The port number
+ * @return The port number
*/
public int getRmiServerPortPlatform() {
return rmiServerPortPlatform;
/**
* Get the port on which the Platform RMI registry is exported.
- * @returns The port number
+ * @return The port number
*/
public int getRmiRegistryPortPlatform() {
return rmiRegistryPortPlatform;
* Get the flag that indicates that local ports should be used for all
* connections. If using SSH tunnels, or similar, this should be set to
* true to ensure the RMI client uses the tunnel.
- * @returns <code>true</code> if local ports should be used
+ * @return <code>true</code> if local ports should be used
*/
public boolean getUseLocalPorts() {
return useLocalPorts;
* boundary will be signaled by the return
* value.
*
- * @returns Returns true if the entity changed as a result of this
- * load operation.
+ * @return Returns true if the entity changed as a result of this
+ * load operation.
*/
final boolean load(int offset, boolean changeEntity)
throws IOException {
* identified as a high surrogate.
*
* @param buf The StringBuffer to append the read surrogates to.
- * @returns True if it succeeded.
+ * @return True if it succeeded.
*/
private boolean scanSurrogates(XMLStringBuffer buf)
throws IOException, JasperException {