[richfaces-svn-commits] JBoss Rich Faces SVN: r18746 - trunk/ui/core/ui/src/main/java/org/richfaces/component.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Wed Aug 18 05:24:38 EDT 2010
Author: nbelaevski
Date: 2010-08-18 05:24:37 -0400 (Wed, 18 Aug 2010)
New Revision: 18746
Modified:
trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractAjaxStatus.java
trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java
trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractOutputPanel.java
Log:
https://jira.jboss.org/browse/RF-9098
Modified: trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractAjaxStatus.java
===================================================================
--- trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractAjaxStatus.java 2010-08-18 07:00:26 UTC (rev 18745)
+++ trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractAjaxStatus.java 2010-08-18 09:24:37 UTC (rev 18746)
@@ -29,12 +29,14 @@
import org.richfaces.cdk.annotations.EventName;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.JsfRenderer;
+import org.richfaces.cdk.annotations.Tag;
+import org.richfaces.cdk.annotations.TagType;
/**
* @author Nick Belaevski
*
*/
- at JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.StatusRenderer"))
+ at JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.StatusRenderer"), tag = @Tag(type = TagType.Facelets))
public abstract class AbstractAjaxStatus extends UIOutput {
public static final String COMPONENT_TYPE = "org.richfaces.Status";
Modified: trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java
===================================================================
--- trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java 2010-08-18 07:00:26 UTC (rev 18745)
+++ trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractCommandButton.java 2010-08-18 09:24:37 UTC (rev 18746)
@@ -29,12 +29,14 @@
import org.richfaces.cdk.annotations.EventName;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.JsfRenderer;
+import org.richfaces.cdk.annotations.Tag;
+import org.richfaces.cdk.annotations.TagType;
/**
* @author Nick Belaevski
*
*/
- at JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.CommandButtonRenderer"))
+ at JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.CommandButtonRenderer"), tag = @Tag(type = TagType.Facelets))
public abstract class AbstractCommandButton extends AbstractActionComponent {
public static final String COMPONENT_TYPE = "org.richfaces.CommandButton";
Modified: trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractOutputPanel.java
===================================================================
--- trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractOutputPanel.java 2010-08-18 07:00:26 UTC (rev 18745)
+++ trunk/ui/core/ui/src/main/java/org/richfaces/component/AbstractOutputPanel.java 2010-08-18 09:24:37 UTC (rev 18746)
@@ -30,13 +30,15 @@
import org.richfaces.cdk.annotations.EventName;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.JsfRenderer;
+import org.richfaces.cdk.annotations.Tag;
+import org.richfaces.cdk.annotations.TagType;
/**
* @author asmirnov at exadel.com (latest modification by $Author: alexsmirnov $)
* @version $Revision: 1.1.2.1 $ $Date: 2007/01/09 18:58:26 $
*
*/
- at JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.OutputPanelRenderer"))
+ at JsfComponent(renderer = @JsfRenderer(type = "org.richfaces.OutputPanelRenderer"), tag = @Tag(type = TagType.Facelets))
public abstract class AbstractOutputPanel extends UIPanel implements AjaxOutput {
public static final String COMPONENT_TYPE = "org.richfaces.OutputPanel";
More information about the richfaces-svn-commits
mailing list