You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2008/03/13 12:39:19 UTC

svn commit: r636726 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java

Author: bommel
Date: Thu Mar 13 04:39:17 2008
New Revision: 636726

URL: http://svn.apache.org/viewvc?rev=636726&view=rev
Log:
(TOBAGO-637) Generate Components, JSP Tags from annotations
Just commited current state. I think 60% of the work is done.

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java?rev=636726&r1=636725&r2=636726&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java Thu Mar 13 04:39:17 2008
@@ -30,6 +30,7 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 import org.apache.myfaces.tobago.taglib.decl.IsInline;
 import org.apache.myfaces.tobago.taglib.decl.IsRendered;
+//import org.apache.myfaces.tobago.taglib.decl.IsReadonly;
 
 /*
  * Created: Aug 5, 2005 6:11:03 PM
@@ -42,7 +43,8 @@
 @Tag(name = "selectOneRadio")
 @BodyContentDescription(anyTagOf = "(<f:selectItems>|<f:selectItem>|<tc:selectItem>)+ <f:facet>* ")
 @UIComponentTag(
-    uiComponent = "org.apache.myfaces.tobago.component.UISelectOne",
+    uiComponent = "org.apache.myfaces.tobago.component.UISelectOneRadio",
+    uiComponentBaseClass = "org.apache.myfaces.tobago.component.UISelectOne",
     rendererType = "SelectOneRadio",
     allowedChildComponenents = {
         "javax.faces.SelectItem",
@@ -58,7 +60,8 @@
             "This facet can contain a UICommand that is invoked in case of a change event from the component",
         allowedChildComponenents = "org.apache.myfaces.tobago.Command")
         })
-public interface SelectOneRadioTagDeclaration extends SelectOneTagDeclaration, IsDisabled, HasId,
+public interface SelectOneRadioTagDeclaration extends SelectOneTagDeclaration, IsDisabled, //IsReadonly,
+    HasId,
     IsInline, HasRenderRange, IsRendered, HasBinding, HasConverter {
 
   /**