You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2010/06/25 02:05:41 UTC

svn commit: r957756 - in /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services: LinkCreationHub.java LinkCreationListener2.java

Author: hlship
Date: Fri Jun 25 00:05:41 2010
New Revision: 957756

URL: http://svn.apache.org/viewvc?rev=957756&view=rev
Log:
TAP5-1190: Add @since markers to new methods and interfaces

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationHub.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationListener2.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationHub.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationHub.java?rev=957756&r1=957755&r2=957756&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationHub.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationHub.java Fri Jun 25 00:05:41 2010
@@ -4,7 +4,7 @@
 // you may not use this file except in compliance with the License.
 // You may obtain a copy of the License at
 //
-//     http://www.apache.org/licenses/LICENSE-2.0
+// http://www.apache.org/licenses/LICENSE-2.0
 //
 // Unless required by applicable law or agreed to in writing, software
 // distributed under the License is distributed on an "AS IS" BASIS,
@@ -21,22 +21,23 @@ public interface LinkCreationHub
 {
     /**
      * Adds a listener. If the scope of the listener is per-thread, then it must be removed.
-     *
+     * 
      * @param listener
      */
     void addListener(LinkCreationListener listener);
 
     /**
      * Removes a previously added listener.
-     *
+     * 
      * @param listener
      */
     void removeListener(LinkCreationListener listener);
-    
+
     /**
      * Adds a listener. If the scope of the listener is per-thread, then it must be removed.
-     *
+     * 
      * @param listener
+     * @since 5.2.0
      */
-    void addListener(LinkCreationListener2 listener); 
+    void addListener(LinkCreationListener2 listener);
 }

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationListener2.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationListener2.java?rev=957756&r1=957755&r2=957756&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationListener2.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/LinkCreationListener2.java Fri Jun 25 00:05:41 2010
@@ -26,8 +26,8 @@ public interface LinkCreationListener2
      *            the newly created link
      * @param parameters
      *            information encoded into the link
+     * @since 5.2.0
      */
-
     void createdPageRenderLink(Link link, PageRenderRequestParameters parameters);
 
     /**