You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2010/06/17 06:34:38 UTC

svn commit: r955479 - in /myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation: JSFJspProperty.java JSFProperty.java

Author: lu4242
Date: Thu Jun 17 04:34:37 2010
New Revision: 955479

URL: http://svn.apache.org/viewvc?rev=955479&view=rev
Log:
MYFACES-2756 @JSFProperty has "inheritTag" property, and it should be "inheritedTag"

Modified:
    myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspProperty.java
    myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFProperty.java

Modified: myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspProperty.java
URL: http://svn.apache.org/viewvc/myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspProperty.java?rev=955479&r1=955478&r2=955479&view=diff
==============================================================================
--- myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspProperty.java (original)
+++ myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspProperty.java Thu Jun 17 04:34:37 2010
@@ -99,4 +99,25 @@ public @interface JSFJspProperty
      * This is commonly shown as a "tool tip" or popup-help in IDEs.
      */
     String desc() default "";
+    
+    /**
+     * Indicate if this property is inherited from a parent tag class or not.
+     * 
+     * @since 1.0.6
+     */
+    boolean inheritedTag() default false;
+
+    /**
+     * Use saveAttachedXXX and restoreAttachedXXX to save and restore state
+     * 
+     * @since 1.0.6
+     */
+    boolean stateHolder() default false;
+    
+    /**
+     * Indicate that the getter and setter does not evaluate EL or ValueBinding expressions.
+     * 
+     * @since 1.0.6
+     */
+    boolean literalOnly() default false;
 }

Modified: myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFProperty.java
URL: http://svn.apache.org/viewvc/myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFProperty.java?rev=955479&r1=955478&r2=955479&view=diff
==============================================================================
--- myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFProperty.java (original)
+++ myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFProperty.java Thu Jun 17 04:34:37 2010
@@ -119,7 +119,7 @@ public @interface JSFProperty
      * 
      * @return
      */
-    boolean inheritTag() default false;
+    boolean inheritedTag() default false;
     
     /**
      * The full name of the return type for MethodBinding or MethodExpression it uses