You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2009/09/02 12:51:32 UTC

svn commit: r810450 - /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnEventTagDeclaration.java

Author: lofwyr
Date: Wed Sep  2 10:51:32 2009
New Revision: 810450

URL: http://svn.apache.org/viewvc?rev=810450&view=rev
Log:
TOBAGO-790: 
 - tc:columnEvent has now attribute rendered

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnEventTagDeclaration.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnEventTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnEventTagDeclaration.java?rev=810450&r1=810449&r2=810450&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnEventTagDeclaration.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnEventTagDeclaration.java Wed Sep  2 10:51:32 2009
@@ -18,24 +18,17 @@
  */
 
 import org.apache.myfaces.tobago.apt.annotation.Tag;
-import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
+import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
-import org.apache.myfaces.tobago.taglib.decl.HasId;
-import org.apache.myfaces.tobago.taglib.decl.HasBinding;
-
-/**
- * @since 1.0.13
- */
+import org.apache.myfaces.tobago.taglib.decl.HasIdBindingAndRendered;
 
 @Tag(name = "columnEvent")
 @UIComponentTag(uiComponent = "org.apache.myfaces.tobago.component.UIColumnEvent")
-public interface ColumnEventTagDeclaration extends TobagoTagDeclaration, HasId, HasBinding {
+public interface ColumnEventTagDeclaration extends TobagoTagDeclaration, HasIdBindingAndRendered {
 
   @TagAttribute
   @UIComponentTagAttribute()
   void setEvent(String event);
 
 }
-
-