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 2015/09/17 13:32:35 UTC

svn commit: r1703579 - /myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/css/CssItem.java

Author: lofwyr
Date: Thu Sep 17 11:32:35 2015
New Revision: 1703579

URL: http://svn.apache.org/r1703579
Log:
TOBAGO-1492: Possibility to add a CSS class to a component

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/css/CssItem.java

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/css/CssItem.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/css/CssItem.java?rev=1703579&r1=1703578&r2=1703579&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/css/CssItem.java (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/renderkit/css/CssItem.java Thu Sep 17 11:32:35 2015
@@ -19,10 +19,12 @@
 
 package org.apache.myfaces.tobago.renderkit.css;
 
+import java.io.Serializable;
+
 /**
  * TBD: preliminary
  */
-public interface CssItem {
+public interface CssItem extends Serializable {
 
   String getName();
 }