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 2008/08/29 04:57:10 UTC

svn commit: r690078 - /myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspTag.java

Author: lu4242
Date: Thu Aug 28 19:57:10 2008
New Revision: 690078

URL: http://svn.apache.org/viewvc?rev=690078&view=rev
Log:
add missing name and tagHandler property to JSFJspTag

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

Modified: myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspTag.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/JSFJspTag.java?rev=690078&r1=690077&r2=690078&view=diff
==============================================================================
--- myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspTag.java (original)
+++ myfaces/myfaces-build-tools/trunk/maven2-plugins/myfaces-builder-annotations/src/main/java/org/apache/myfaces/buildtools/maven2/plugin/builder/annotation/JSFJspTag.java Thu Aug 28 19:57:10 2008
@@ -35,6 +35,7 @@
 @Retention(RetentionPolicy.SOURCE)
 public @interface JSFJspTag
 {
+    
     /**
      * Indicate if the element accept inner elements or not.
      */
@@ -44,5 +45,15 @@
      * Short description
      */
     String desc() default "";
-
+    
+    /**
+     * The name of the component in a page (ex: x:mycomp).
+     */
+    String name() default "";
+    
+    /**
+     * Indicate tag handler class used for this component on facelets.
+     * 
+     */
+    String tagHandler() default "";
 }