Author: kkolinko
Date: Sat Nov 20 22:47:57 2010
New Revision: 1037349
URL: http://svn.apache.org/viewvc?rev=1037349&view=rev
Log:
Code formatting followup.
Correct javadocs: remove '<p/>' added by the formatter.
Modified:
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/PermittedTaglibsTLV.java
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/ScriptFreeTLV.java
Modified:
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
URL:
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/Result.java?rev=1037349&r1=1037348&r2=1037349&view=diff
==============================================================================
---
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
(original)
+++
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/Result.java
Sat Nov 20 22:47:57 2010
@@ -23,7 +23,6 @@ import java.util.SortedMap;
* <p>This interface represents the result of a <sql:query>
* action. It provides access to the following information in the
* query result:</p>
- * <p/>
* <ul>
* <li> The result rows (<tt>getRows()</tt> and <tt>getRowsByIndex()</tt>)
* <li> The column names (<tt>getColumnNames()</tt>)
@@ -32,7 +31,6 @@ import java.util.SortedMap;
* or just a subset that is limited by a maximum row setting
* (<tt>isLimitedByMaxRows()</tt>)
* </ul>
- * <p/>
* <p>An implementation of the <tt>Result</tt> interface provides a
* <i>disconnected</i> view into the result of a query.
*
@@ -43,13 +41,11 @@ public interface Result {
/**
* <p>Returns the result of the query as an array of
<code>SortedMap</code> objects.
* Each item of the array represents a specific row in the query
result.</p>
- * <p/>
* <p>A row is structured as a <code>SortedMap</code> object where the key
is the column name,
* and where the value is the value associated with the column identified
by
* the key. The column value is an Object of the Java type corresponding
* to the mapping between column types and Java types defined by the JDBC
* specification when the <code>ResultSet.getObject()</code> method is
used.</p>
- * <p/>
* <p>The <code>SortedMap</code> must use the <code>Comparator</code>
* <code>java.util.String.CASE_INSENSITIVE_ORDER</code>.
* This makes it possible to access the key as a case insensitive
representation
Modified:
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
URL:
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java?rev=1037349&r1=1037348&r2=1037349&view=diff
==============================================================================
---
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
(original)
+++
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
Sat Nov 20 22:47:57 2010
@@ -25,8 +25,7 @@ import java.sql.SQLException;
* from a source java.sql.ResultSet object. A Result object makes it much
* easier for page authors to access and manipulate the data resulting
* from a SQL query.</p>
- * <p/>
- * Note that these methods hide any SQLExceptions that are caused and return
+ * <p>Note that these methods hide any SQLExceptions that are caused and return
* null - to work around that
* use org.apache.taglibs.standard.tag.common.sql.ResultImpl directly.
*
Modified:
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java
URL:
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java?rev=1037349&r1=1037348&r2=1037349&view=diff
==============================================================================
---
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java
(original)
+++
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/sql/SQLExecutionTag.java
Sat Nov 20 22:47:57 2010
@@ -20,22 +20,18 @@ package javax.servlet.jsp.jstl.sql;
/**
* <p>This interface allows tag handlers implementing it to receive
* values for parameter markers in their SQL statements.</p>
- * <p/>
* <p>This interface is implemented by both <sql:query> and
* <sql:update>. Its <code>addSQLParameter()</code> method
* is called by nested parameter actions (such as <sql:param>)
* to substitute <code>PreparedStatement</code> parameter values for
* "?" parameter markers in the SQL statement of the enclosing
* <code>SQLExecutionTag</code> action.</p>
- * <p/>
* <p>The given parameter values are converted to their corresponding
* SQL type (following the rules in the JDBC specification) before
* they are sent to the database.</p>
- * <p/>
* <p>Keeping track of the index of the parameter values being added
* is the responsibility of the tag handler implementing this
* interface</p>
- * <p/>
* <p>The <code>SQLExcecutionTag</code> interface is exposed in order
* to support custom parameter actions which may retrieve their
* parameters from any source and process them before substituting
Modified:
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/PermittedTaglibsTLV.java
URL:
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/PermittedTaglibsTLV.java?rev=1037349&r1=1037348&r2=1037349&view=diff
==============================================================================
---
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/PermittedTaglibsTLV.java
(original)
+++
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/PermittedTaglibsTLV.java
Sat Nov 20 22:47:57 2010
@@ -37,7 +37,6 @@ import org.xml.sax.helpers.DefaultHandle
* <p>A TagLibraryValidator class to allow a TLD to restrict what
* taglibs (in addition to itself) may be imported on a page where it's
* used.</p>
- * <p/>
* <p>This TLV supports the following initialization parameter:</p>
* <ul>
* <li><b>permittedTaglibs</b>: A whitespace-separated list of URIs
corresponding
Modified:
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/ScriptFreeTLV.java
URL:
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/ScriptFreeTLV.java?rev=1037349&r1=1037348&r2=1037349&view=diff
==============================================================================
---
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/ScriptFreeTLV.java
(original)
+++
tomcat/taglibs/standard/trunk/spec/src/main/java/javax/servlet/jsp/jstl/tlv/ScriptFreeTLV.java
Sat Nov 20 22:47:57 2010
@@ -201,8 +201,7 @@ public class ScriptFreeTLV extends TagLi
* Returns null if no violations were found, making the result
* of this method suitable for the return value of the
* TagLibraryValidator.validate() method.
- * <p/>
- * TODO: The update from 7/13/2001 merely makes this validator
+ * <p>TODO: The update from 7/13/2001 merely makes this validator
* compliant with the new TLV API, but does not fully take advantage
* of this API. In the future, we should do so... but because
* of the possibility that anti-script checking will be incorporated
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]