You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/07/25 20:02:46 UTC

svn commit: r1150813 - /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TransformConstants.java

Author: hlship
Date: Mon Jul 25 18:02:45 2011
New Revision: 1150813

URL: http://svn.apache.org/viewvc?rev=1150813&view=rev
Log:
TAP5-1580: Mark additional constants as deprecated

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

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TransformConstants.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TransformConstants.java?rev=1150813&r1=1150812&r2=1150813&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TransformConstants.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TransformConstants.java Mon Jul 25 18:02:45 2011
@@ -41,9 +41,6 @@ public final class TransformConstants
     private static final String[] RENDER_PHASE_METHOD_PARAMETERS =
             {MarkupWriter.class.getName(), Event.class.getName()};
 
-    private static final Class[] RENDER_PHASE_METHOD_PARAMETER_TYPES =
-            {MarkupWriter.class, Event.class};
-
     /**
      * Signature for
      * {@link org.apache.tapestry5.runtime.Component#dispatchComponentEvent(org.apache.tapestry5.runtime.ComponentEvent)}
@@ -85,7 +82,7 @@ public final class TransformConstants
 
     /**
      * Description for {@link org.apache.tapestry5.internal.structure.PageResetListener#containingPageDidReset()}. Note that the {@link PageResetListener}
-     * interface is not automatically implemeneted by components. ]
+     * interface is not automatically implemented by components. ]
      *
      * @see org.apache.tapestry5.annotations.PageReset
      * @see org.apache.tapestry5.internal.transform.PageResetAnnotationWorker
@@ -119,6 +116,7 @@ public final class TransformConstants
      * Description for {@link org.apache.tapestry5.runtime.PageLifecycleListener#containingPageDidDetach()}.
      *
      * @since 5.3
+     * @deprecated Deprecated in 5.3, with {@link org.apache.tapestry5.annotations.PageDetached}.
      */
     public static final MethodDescription CONTAINING_PAGE_DID_DETACH_DESCRIPTION = PlasticUtils.getMethodDescription(PageLifecycleListener.class, "containingPageDidDetach");
 
@@ -134,6 +132,7 @@ public final class TransformConstants
      * Description for {@link org.apache.tapestry5.runtime.PageLifecycleListener#containingPageDidAttach()}.
      *
      * @since 5.3
+     * @deprecated Deprecated in 5.3, along with {@link org.apache.tapestry5.annotations.PageAttached}.
      */
     public static final MethodDescription CONTAINING_PAGE_DID_ATTACH_DESCRIPTION = PlasticUtils.getMethodDescription(PageLifecycleListener.class, "containingPageDidAttach");
 
@@ -141,6 +140,7 @@ public final class TransformConstants
      * Signature for {@link org.apache.tapestry5.runtime.PageLifecycleListener#restoreStateBeforePageAttach()}
      *
      * @since 5.1.0.1
+     * @deprecated Deprecated in 5.3, with no replacement.
      */
     public static final TransformMethodSignature RESTORE_STATE_BEFORE_PAGE_ATTACH_SIGNATURE = new TransformMethodSignature(
             "restoreStateBeforePageAttach");