[richfaces-svn-commits] JBoss Rich Faces SVN: r2459 - trunk/ui/dataTable/src/main/java/org/richfaces/component.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Fri Aug 24 04:37:10 EDT 2007
Author: akushunin
Date: 2007-08-24 04:37:09 -0400 (Fri, 24 Aug 2007)
New Revision: 2459
Added:
trunk/ui/dataTable/src/main/java/org/richfaces/component/Row.java
Log:
renderedColumsn methos ranamed to columns
Added: trunk/ui/dataTable/src/main/java/org/richfaces/component/Row.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/component/Row.java (rev 0)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/component/Row.java 2007-08-24 08:37:09 UTC (rev 2459)
@@ -0,0 +1,39 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces 3.0 - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.component;
+
+import java.util.Iterator;
+
+/**
+ * Marker interface for table columns, rendered as entire row.
+ * @author shura
+ *
+ */
+public interface Row extends Column {
+
+ /**
+ * Get iterator for all columns contained in this row.
+ * @return
+ */
+ public Iterator columns();
+
+}
\ No newline at end of file
Property changes on: trunk/ui/dataTable/src/main/java/org/richfaces/component/Row.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
More information about the richfaces-svn-commits
mailing list