Author: abelevich
Date: 2009-10-23 12:30:51 -0400 (Fri, 23 Oct 2009)
New Revision: 15751
Added:
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/html/HtmlSubTable.java
Log:
subtable ui impl
Added:
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/html/HtmlSubTable.java
===================================================================
---
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/html/HtmlSubTable.java
(rev 0)
+++
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/html/HtmlSubTable.java 2009-10-23
16:30:51 UTC (rev 15751)
@@ -0,0 +1,50 @@
+package org.richfaces.component.html;
+
+import javax.el.MethodExpression;
+
+import org.richfaces.component.UISubTable;
+import org.richfaces.model.Ordering;
+
+public class HtmlSubTable extends UISubTable{
+
+ public MethodExpression getFilterMethod() {
+ return null;
+ }
+
+ public String getFilterValue() {
+ return null;
+ }
+
+ public Ordering getSortOrder() {
+ return null;
+ }
+
+ public boolean isSelfSorted() {
+ return false;
+ }
+
+ public boolean isSortable() {
+ return false;
+ }
+
+ public void setFilterMethod(MethodExpression methodExpression) {
+ }
+
+ public void setFilterValue(String filterValue) {
+ }
+
+ public void setSelfSorted(boolean selfSorted) {
+ }
+
+ public void setSortOrder(Ordering sortOrder) {
+ }
+
+ public void setSortable(boolean sortable) {
+ }
+
+ @Override
+ public String getFamily() {
+ return COMPONENT_FAMILY;
+ }
+
+}
Show replies by date