| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Stripes
Revision: 943
Author: javelotinfo
Date: 23 Jun 2008 17:01:49
Changes:Corrections to @Before and @After javadocs
Files:| ... | ...@@ -27,7 +27,9 @@ | |
| 27 | 27 | * <p>Specifies that the annotated method should be run <i>after</i> the specified |
| 28 | 28 | * {@link LifecycleStage}(s). More than one LifecycleStage can be specified, in which case the |
| 29 | 29 | * method will be run after each stage completes. If no LifecycleStage is specified then the |
| 30 | * default is to execute the method after {@link LifecycleStage#EventHandling}.</p> | |
| 30 | * default is to execute the method after {@link LifecycleStage#EventHandling}. | |
| 31 | * {@link LifecycleStage#RequestInit} <b>cannot</b> be specified because there is no ActionBean | |
| 32 | * to run a method on before the ActionBean has been resolved!</p> | |
| 31 | 33 | * |
| 32 | 34 | * <p>The method may have any name, any access specifier (public, private etc.) and must take |
| 33 | 35 | * no arguments. Methods may return values; if the value is a |
| ... | ...@@ -27,9 +27,10 @@ | |
| 27 | 27 | * <p>Specifies that the annotated method should be run <i>before</i> the specified |
| 28 | 28 | * {@link LifecycleStage}(s). More than one LifecycleStage can be specified, in which case the |
| 29 | 29 | * method will be run before each stage. If no LifecycleStage is specified then the |
| 30 | * default is to execute the method after {@link LifecycleStage#EventHandling}. | |
| 31 | * {@link LifecycleStage#ActionBeanResolution} <b>cannot</b> be specified because there is | |
| 32 | * no ActionBean to run a method on before the ActionBean has been resolved!</p> | |
| 30 | * default is to execute the method before {@link LifecycleStage#EventHandling}. | |
| 31 | * {@link LifecycleStage#RequestInit} and {@link LifecycleStage#ActionBeanResolution} | |
| 32 | * <b>cannot</b> be specified because there is no ActionBean to run a method on before the | |
| 33 | * ActionBean has been resolved!</p> | |
| 33 | 34 | * |
| 34 | 35 | * <p>The method may have any name, any access specifier (public, private etc.) and must take |
| 35 | 36 | * no arguments. Methods may return values; if the value is a |