Author: alevkovsky
Date: 2008-09-17 07:35:27 -0400 (Wed, 17 Sep 2008)
New Revision: 10460
Modified:
trunk/sandbox/ui/editor/pom.xml
trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java
Log:
correct pom for Editor
Modified: trunk/sandbox/ui/editor/pom.xml
===================================================================
--- trunk/sandbox/ui/editor/pom.xml 2008-09-17 10:30:49 UTC (rev 10459)
+++ trunk/sandbox/ui/editor/pom.xml 2008-09-17 11:35:27 UTC (rev 10460)
@@ -1,14 +1,13 @@
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
+ <groupId>org.richfaces.sandbox</groupId>
<version>3.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>editor</artifactId>
- <name>editor</name>
- <version>3.3.0-SNAPSHOT</version>
+ <name>Editor</name>
<build>
<plugins>
<plugin>
@@ -17,13 +16,14 @@
<version>3.3.0-SNAPSHOT</version>
<executions>
<execution>
+ <id>generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
<execution>
- <id>generate-test-sources</id>
+ <id>generate-test-sources</id>
<phase>generate-test-sources</phase>
<goals>
<goal>generate-tests</goal>
@@ -32,7 +32,7 @@
</executions>
<configuration>
<library>
- <prefix>org.richfaces.ui</prefix>
+ <prefix>org.richfaces</prefix>
<taglib>
<shortName>editor</shortName>
</taglib>
@@ -43,25 +43,9 @@
</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.3.0-SNAPSHOT</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>combobox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java
===================================================================
--- trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java 2008-09-17
10:30:49 UTC (rev 10459)
+++ trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java 2008-09-17
11:35:27 UTC (rev 10460)
@@ -13,9 +13,13 @@
* @author Alexandr Levkovsky
*
*/
-public abstract class UIEditor extends UIComponentBase{
+public abstract class UIEditor extends UIComponentBase {
- public static final String COMPONENT_TYPE = "org.richfaces.Editor";
-
- public static final String COMPONENT_FAMILY = "org.richfaces.Editor";
+ public static final String COMPONENT_TYPE = "org.richfaces.Editor";
+
+ public static final String COMPONENT_FAMILY = "org.richfaces.Editor";
+
+ public boolean getRendersChildren() {
+ return true;
+ }
}