View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2013-8-2 下午03:17:06
4    */
5   package gboat2.base.core.annotation;
6   
7   import java.lang.annotation.ElementType;
8   import java.lang.annotation.Retention;
9   import java.lang.annotation.RetentionPolicy;
10  import java.lang.annotation.Target;
11  
12  
13  /**
14   * 作用于 Action 类中的方法,标识该方法(功能)对应的页面为列表页面。如:
15   * <pre>
16   * <code>public class UserAction extends BaseActionSupport {
17   *      <b>&#064;ListPage</b>
18   *      public String execute(){
19   *          … …
20   *      }
21   * }
22   * </code></pre> 
23   * @date 2013-8-2
24   * @author lism
25   * @author <a href="mailto:[email protected]">何明旺</a>
26   * @since 3.0
27   * @see FormPage
28   */
29  @Retention(RetentionPolicy.RUNTIME)
30  @Target(value={ElementType.METHOD})
31  public @interface ListPage {
32  
33  }