javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/ComputedProperty.java
branchmodel
changeset 1023 ad9a37489365
parent 491 14268cd404a4
child 1787 ea12a3bb4b33
     1.1 --- a/javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/ComputedProperty.java	Sun Jan 20 14:29:10 2013 +0100
     1.2 +++ b/javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/ComputedProperty.java	Fri Apr 26 13:48:36 2013 +0200
     1.3 @@ -22,16 +22,11 @@
     1.4  import java.lang.annotation.RetentionPolicy;
     1.5  import java.lang.annotation.Target;
     1.6  
     1.7 -/** Can be used in classes annotated with {@link Page} annotation to
     1.8 - * define a derived property. Value of derived property is based on values
     1.9 - * of {@link Property} as enumerated by {@link Page#properties()}.
    1.10 - * <p>
    1.11 - * The name of the derived property is the name of the method. The arguments
    1.12 - * of the method define the property names (from {@link Page#properties()} list)
    1.13 - * the value of property depends on. 
    1.14 - *
    1.15 +/** 
    1.16 + * @deprecated Replaced by new {@link net.java.html.json.ComputedProperty net.java.html.json} API.
    1.17   * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.18   */
    1.19 +@Deprecated
    1.20  @Retention(RetentionPolicy.SOURCE)
    1.21  @Target(ElementType.METHOD)
    1.22  public @interface ComputedProperty {