You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/02/27 14:21:21 UTC

svn commit: r631585 - in /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra: connectionManager/ conversation/ filter/ lib/ viewController/

Author: skitching
Date: Wed Feb 27 05:21:20 2008
New Revision: 631585

URL: http://svn.apache.org/viewvc?rev=631585&view=rev
Log:
Fix javadoc errors

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/connectionManager/ConnectionManagerDataSource.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/Conversation.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/ConversationWiperThread.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/filter/OrchestraServletFilter.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/_ReentrantLock.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerExecutor.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerNameMapper.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/connectionManager/ConnectionManagerDataSource.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/connectionManager/ConnectionManagerDataSource.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/connectionManager/ConnectionManagerDataSource.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/connectionManager/ConnectionManagerDataSource.java Wed Feb 27 05:21:20 2008
@@ -126,8 +126,8 @@
      * If method setJndiName was used to specify the datasource, then it is retrieved
      * from JNDI if necessary.
      * 
-     * @throw IllegalArgumentException if neither setDataSource nor setJndiName was called. 
-     * @throw IllegalArgumentException if an invalid jndi name was specified.
+     * @throws IllegalArgumentException if neither setDataSource nor setJndiName was called. 
+     * @throws IllegalArgumentException if an invalid jndi name was specified.
      */
     public DataSource getDataSource()
     {
@@ -173,25 +173,25 @@
         throw new UnsupportedOperationException();
     }
 
-    /** @inherited */
+    /** @inheritDoc */
     public PrintWriter getLogWriter() throws SQLException
     {
         return getDataSource().getLogWriter();
     }
 
-    /** @inherited */
+    /** @inheritDoc */
     public void setLogWriter(PrintWriter out) throws SQLException
     {
         getDataSource().setLogWriter(out);
     }
 
-    /** @inherited */
+    /** @inheritDoc */
     public void setLoginTimeout(int seconds) throws SQLException
     {
         getDataSource().setLoginTimeout(seconds);
     }
 
-    /** @inherited */
+    /** @inheritDoc */
     public int getLoginTimeout() throws SQLException
     {
         return getDataSource().getLoginTimeout();

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/Conversation.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/Conversation.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/Conversation.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/Conversation.java Wed Feb 27 05:21:20 2008
@@ -246,7 +246,7 @@
      * Any code holding a reference to the old conversation instance will receive
      * an IllegalStateException when calling almost any method on that instance.
      *
-     * @returns the new conversation
+     * @return the new conversation
      */
     public Conversation invalidateAndRestart()
     {

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/ConversationWiperThread.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/ConversationWiperThread.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/ConversationWiperThread.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/ConversationWiperThread.java Wed Feb 27 05:21:20 2008
@@ -29,7 +29,7 @@
  * <p>
  * This is typically started from a servlet session listener when the webapp starts.
  * 
- * @see org.apache.myfaces.orchestra.servlet.ConversationManagerSessionListener.
+ * @see org.apache.myfaces.orchestra.conversation.servlet.ConversationManagerSessionListener
  */
 public class ConversationWiperThread extends Thread
 {

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/filter/OrchestraServletFilter.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/filter/OrchestraServletFilter.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/filter/OrchestraServletFilter.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/filter/OrchestraServletFilter.java Wed Feb 27 05:21:20 2008
@@ -43,11 +43,12 @@
  * parameter; setting "serializeRequests" to "false" disables this feature. Default
  * value: true (enabled).
  * <p>
- * See {@See CoreConfig.SERIALIZE_REQUESTS} for further details.
+ * See {@link org.apache.myfaces.orchestra.CoreConfig#SERIALIZE_REQUESTS} for further details.
  * <p>
  * <h2>JDBC Connection Management</h2>
  * This servlet always enables connection management; see
- * {@See CoreConfig.CLEANUP_CONNECTIONS} for further details.
+ * {@link org.apache.myfaces.orchestra.CoreConfig#CLEANUP_CONNECTIONS}
+ * for further details.
  */
 
 public class OrchestraServletFilter implements Filter

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/_ReentrantLock.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/_ReentrantLock.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/_ReentrantLock.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/_ReentrantLock.java Wed Feb 27 05:21:20 2008
@@ -20,7 +20,7 @@
 
 
 /**
- * A reentrant mutual exclusion {@link Lock} with the same basic
+ * A reentrant mutual exclusion with the same basic
  * behavior and semantics as the implicit monitor lock accessed using
  * {@code synchronized} methods and statements.
  * <p>

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerExecutor.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerExecutor.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerExecutor.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerExecutor.java Wed Feb 27 05:21:20 2008
@@ -31,7 +31,7 @@
  * Orchestra reserves the right to change this interface in minor releases. Instead,
  * subclass the class AbstractViewControllerExecutor.
  * <p>
- * @See {@link org.apache.myfaces.orchestra.viewController.AbstractViewControllerManager}
+ * @see org.apache.myfaces.orchestra.viewController.AbstractViewControllerManager
  */
 public interface ViewControllerExecutor
 {

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerNameMapper.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerNameMapper.java?rev=631585&r1=631584&r2=631585&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerNameMapper.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/viewController/ViewControllerNameMapper.java Wed Feb 27 05:21:20 2008
@@ -26,7 +26,7 @@
  * TODO: should this class have the same warning as ViewControllerExecutor,
  * and an equivalent abstract base class?
  * 
- * @See {@link org.apache.myfaces.orchestra.viewController.AbstractViewControllerManager}
+ * @see org.apache.myfaces.orchestra.viewController.AbstractViewControllerManager
  */
 public interface ViewControllerNameMapper
 {