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/11/04 11:50:47 UTC

svn commit: r832704 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIToolBar.java

Author: lofwyr
Date: Wed Nov  4 10:50:44 2009
New Revision: 832704

URL: http://svn.apache.org/viewvc?rev=832704&view=rev
Log:
TOBAGO-606: ToolBar is now a LayoutComponent

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

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIToolBar.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIToolBar.java?rev=832704&r1=832703&r2=832704&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIToolBar.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIToolBar.java Wed Nov  4 10:50:44 2009
@@ -1,5 +1,7 @@
 package org.apache.myfaces.tobago.component;
 
+import org.apache.myfaces.tobago.layout.LayoutComponent;
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -17,12 +19,7 @@
  * limitations under the License.
  */
 
-
-/*
- * Date: 11.02.2006
- * Time: 14:48:46
- */
-public abstract class AbstractUIToolBar extends javax.faces.component.UIPanel {
+public abstract class AbstractUIToolBar extends javax.faces.component.UIPanel implements LayoutComponent {
 
   public static final String LABEL_BOTTOM = "bottom";
   public static final String LABEL_RIGHT = "right";