Author: nbelaevski
Date: 2008-07-14 11:57:29 -0400 (Mon, 14 Jul 2008)
New Revision: 9582
Modified:
trunk/ui/tree/src/test/java/org/richfaces/component/ListRowKeyTest.java
Log:
Tree DnD Enhancements
Modified: trunk/ui/tree/src/test/java/org/richfaces/component/ListRowKeyTest.java
===================================================================
--- trunk/ui/tree/src/test/java/org/richfaces/component/ListRowKeyTest.java 2008-07-14
15:55:00 UTC (rev 9581)
+++ trunk/ui/tree/src/test/java/org/richfaces/component/ListRowKeyTest.java 2008-07-14
15:57:29 UTC (rev 9582)
@@ -173,6 +173,11 @@
public Iterator<Object> iterator() {
throw new UnsupportedOperationException();
}
+
+ @Override
+ public TreeRowKey<Object> getParentKey() {
+ throw new UnsupportedOperationException();
+ }
};
@@ -264,6 +269,11 @@
public Iterator<Object> iterator() {
return new ArrayIterator(data);
}
+
+ @Override
+ public TreeRowKey<Object> getParentKey() {
+ throw new UnsupportedOperationException();
+ }
};
Show replies by date