[richfaces-svn-commits] JBoss Rich Faces SVN: r5027 - trunk/ui/columns/src/main/java/org/richfaces/taglib.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Dec 27 04:51:12 EST 2007


Author: andrei_exadel
Date: 2007-12-27 04:51:12 -0500 (Thu, 27 Dec 2007)
New Revision: 5027

Modified:
   trunk/ui/columns/src/main/java/org/richfaces/taglib/ColumnsTag.java
Log:
RF-1790, RF-1782

Modified: trunk/ui/columns/src/main/java/org/richfaces/taglib/ColumnsTag.java
===================================================================
--- trunk/ui/columns/src/main/java/org/richfaces/taglib/ColumnsTag.java	2007-12-27 09:03:36 UTC (rev 5026)
+++ trunk/ui/columns/src/main/java/org/richfaces/taglib/ColumnsTag.java	2007-12-27 09:51:12 UTC (rev 5027)
@@ -47,9 +47,6 @@
     /** Data table */
     private UIComponent dataTable;
 
-    /** Previous created column */
-    private UIComponent previous;
-
     /**
      * <p>
      * The {@link UIComponent} that is being encoded by this tag, if any.
@@ -194,38 +191,6 @@
 	this._colspan = __colspan;
     }
 
-    /**
-     * dir Direction indication for text that does not inherit directionality.
-     * Valid values are "LTR" (left-to-right) and "RTL" (right-to-left)
-     */
-    private ValueExpression _dir;
-
-    /**
-     * Direction indication for text that does not inherit directionality. Valid
-     * values are "LTR" (left-to-right) and "RTL" (right-to-left) Setter for dir
-     * 
-     * @param dir -
-     *                new value
-     */
-    public void setDir(ValueExpression __dir) {
-	this._dir = __dir;
-    }
-
-    /**
-     * first A zero-relative row number of the first row to display
-     */
-    private ValueExpression _first;
-
-    /**
-     * A zero-relative row number of the first row to display Setter for first
-     * 
-     * @param first -
-     *                new value
-     */
-    public void setFirst(ValueExpression __first) {
-	this._first = __first;
-    }
-
     /*
      * (non-Javadoc)
      * 
@@ -294,42 +259,8 @@
     public void setHeaderClass(ValueExpression __headerClass) {
 	this._headerClass = __headerClass;
     }
-
+   
     /**
-     * lang Code describing the language used in the generated markup for this
-     * component
-     */
-    private ValueExpression _lang;
-
-    /**
-     * Code describing the language used in the generated markup for this
-     * component Setter for lang
-     * 
-     * @param lang -
-     *                new value
-     */
-    public void setLang(ValueExpression __lang) {
-	this._lang = __lang;
-    }
-
-    /**
-     * rows A number of rows to display, or zero for all remaining rows in the
-     * table
-     */
-    private ValueExpression _rows;
-
-    /**
-     * A number of rows to display, or zero for all remaining rows in the table
-     * Setter for rows
-     * 
-     * @param rows -
-     *                new value
-     */
-    public void setRows(ValueExpression __rows) {
-	this._rows = __rows;
-    }
-
-    /**
      * rowspan Corresponds to the HTML rowspan attribute
      */
     private ValueExpression _rowspan;
@@ -394,23 +325,6 @@
     }
 
     /**
-     * title Advisory title information about markup elements generated for this
-     * component
-     */
-    private ValueExpression _title;
-
-    /**
-     * Advisory title information about markup elements generated for this
-     * component Setter for title
-     * 
-     * @param title -
-     *                new value
-     */
-    public void setTitle(ValueExpression __title) {
-	this._title = __title;
-    }
-
-    /**
      * value The current value for this component
      */
     private ValueExpression _value;
@@ -607,7 +521,6 @@
 
 	this.component = component;
 	this.parentTag = getParentUIComponentClassicTagBase(pageContext);
-	this.previous = component;
 
 	return component;
     }
@@ -651,7 +564,7 @@
 	prepare();
 
 	if (created) {
-	    dataTable.getChildren().clear();
+	    //dataTable.getChildren().clear();
 	    created = false;
 	}
 




More information about the richfaces-svn-commits mailing list