Author: maksimkaszynski
Date: 2007-10-02 10:51:09 -0400 (Tue, 02 Oct 2007)
New Revision: 3192
Added:
trunk/ui/treeTable/
trunk/ui/treeTable/pom.xml
trunk/ui/treeTable/src/
trunk/ui/treeTable/src/main/
trunk/ui/treeTable/src/main/config/
trunk/ui/treeTable/src/main/config/component/
trunk/ui/treeTable/src/main/config/component/README
trunk/ui/treeTable/src/main/java/
trunk/ui/treeTable/src/main/java/org/
trunk/ui/treeTable/src/main/java/org/richfaces/
trunk/ui/treeTable/src/main/java/org/richfaces/component/
trunk/ui/treeTable/src/main/java/org/richfaces/component/README
trunk/ui/treeTable/src/main/resources/
trunk/ui/treeTable/src/main/templates/
trunk/ui/treeTable/src/main/templates/README
trunk/ui/treeTable/src/test/
trunk/ui/treeTable/src/test/java/
trunk/ui/treeTable/src/test/java/org/
trunk/ui/treeTable/src/test/java/org/richfaces/
trunk/ui/treeTable/src/test/java/org/richfaces/component/
trunk/ui/treeTable/src/test/java/org/richfaces/component/JSFComponentTest.java
Log:
initial placement of treeTable
Added: trunk/ui/treeTable/pom.xml
===================================================================
--- trunk/ui/treeTable/pom.xml (rev 0)
+++ trunk/ui/treeTable/pom.xml 2007-10-02 14:51:09 UTC (rev 3192)
@@ -0,0 +1,37 @@
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>treeTable</artifactId>
+ <name>treeTable</name>
+ <version>3.2.0-SNAPSHOT</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>treeTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Added: trunk/ui/treeTable/src/main/config/component/README
===================================================================
Added: trunk/ui/treeTable/src/main/java/org/richfaces/component/README
===================================================================
Added: trunk/ui/treeTable/src/main/templates/README
===================================================================
Added: trunk/ui/treeTable/src/test/java/org/richfaces/component/JSFComponentTest.java
===================================================================
--- trunk/ui/treeTable/src/test/java/org/richfaces/component/JSFComponentTest.java
(rev 0)
+++
trunk/ui/treeTable/src/test/java/org/richfaces/component/JSFComponentTest.java 2007-10-02
14:51:09 UTC (rev 3192)
@@ -0,0 +1,53 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * 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 junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+import javax.faces.component.UIComponent;
+
+/**
+ * Unit test for simple Component.
+ */
+public class JSFComponentTest
+ extends TestCase
+{
+ /**
+ * Create the test case
+ *
+ * @param testName name of the test case
+ */
+ public JSFComponentTest( String testName )
+ {
+ super( testName );
+ }
+
+
+ /**
+ * Rigourous Test :-)
+ */
+ public void testComponent()
+ {
+ assertTrue( true );
+ }
+}
Show replies by date