Author: konstantin.mishin
Date: 2007-10-31 13:31:00 -0400 (Wed, 31 Oct 2007)
New Revision: 3649
Added:
trunk/sandbox/ui/columns/
trunk/sandbox/ui/columns/pom.xml
trunk/sandbox/ui/columns/src/
trunk/sandbox/ui/columns/src/main/
trunk/sandbox/ui/columns/src/main/config/
trunk/sandbox/ui/columns/src/main/config/component/
trunk/sandbox/ui/columns/src/main/config/component/README
trunk/sandbox/ui/columns/src/main/java/
trunk/sandbox/ui/columns/src/main/java/org/
trunk/sandbox/ui/columns/src/main/java/org/richfaces/
trunk/sandbox/ui/columns/src/main/java/org/richfaces/sandbox/
trunk/sandbox/ui/columns/src/main/java/org/richfaces/sandbox/ui/
trunk/sandbox/ui/columns/src/main/java/org/richfaces/sandbox/ui/component/
trunk/sandbox/ui/columns/src/main/java/org/richfaces/sandbox/ui/component/README
trunk/sandbox/ui/columns/src/main/resources/
trunk/sandbox/ui/columns/src/main/templates/
trunk/sandbox/ui/columns/src/main/templates/README
trunk/sandbox/ui/columns/src/test/
trunk/sandbox/ui/columns/src/test/java/
trunk/sandbox/ui/columns/src/test/java/org/
trunk/sandbox/ui/columns/src/test/java/org/richfaces/
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/ui/
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/ui/component/
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/ui/component/JSFComponentTest.java
Modified:
trunk/sandbox/ui/pom.xml
Log:
New component: columns
Property changes on: trunk/sandbox/ui/columns
___________________________________________________________________
Name: svn:ignore
+ .settings
target
.classpath
.project
Added: trunk/sandbox/ui/columns/pom.xml
===================================================================
--- trunk/sandbox/ui/columns/pom.xml (rev 0)
+++ trunk/sandbox/ui/columns/pom.xml 2007-10-31 17:31:00 UTC (rev 3649)
@@ -0,0 +1,56 @@
+<?xml version="1.0"?><project>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces.sandbox</groupId>
+ <version>3.2.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.sandbox.ui</groupId>
+ <artifactId>columns</artifactId>
+ <name>columns</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.sandbox.ui</prefix>
+ <taglib>
+ <shortName>columns</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Added: trunk/sandbox/ui/columns/src/main/config/component/README
===================================================================
Added: trunk/sandbox/ui/columns/src/main/java/org/richfaces/sandbox/ui/component/README
===================================================================
Added: trunk/sandbox/ui/columns/src/main/templates/README
===================================================================
Added:
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/ui/component/JSFComponentTest.java
===================================================================
---
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/ui/component/JSFComponentTest.java
(rev 0)
+++
trunk/sandbox/ui/columns/src/test/java/org/richfaces/sandbox/ui/component/JSFComponentTest.java 2007-10-31
17:31:00 UTC (rev 3649)
@@ -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.sandbox.ui.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 );
+ }
+}
Modified: trunk/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2007-10-31 16:52:29 UTC (rev 3648)
+++ trunk/sandbox/ui/pom.xml 2007-10-31 17:31:00 UTC (rev 3649)
@@ -17,5 +17,6 @@
<module>treeTable</module>
<module>listShuttle</module>
<module>orderingList</module>
+ <module>columns</module>
</modules>
</project>
\ No newline at end of file
Show replies by date