JBoss Rich Faces SVN: r17398 - in root/examples/richfaces-showcase/trunk/src/main: java/org/richfaces/demo/region and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 07:07:02 -0400 (Sun, 30 May 2010)
New Revision: 17398
Modified:
root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/common/navigation/DemoDescriptor.java
root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/region/RegionBean.java
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/region/region.xhtml
Log:
region sample corrected
Modified: root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/common/navigation/DemoDescriptor.java
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/common/navigation/DemoDescriptor.java 2010-05-30 10:51:31 UTC (rev 17397)
+++ root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/common/navigation/DemoDescriptor.java 2010-05-30 11:07:02 UTC (rev 17398)
@@ -1,11 +1,16 @@
package org.richfaces.demo.common.navigation;
+import java.io.Serializable;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
-public class DemoDescriptor extends BaseDescriptor {
+public class DemoDescriptor extends BaseDescriptor implements Serializable {
+ /**
+ *
+ */
+ private static final long serialVersionUID = 8753024677503886789L;
private static final String BASE_SAMPLES_DIR = "/richfaces/";
private List<SampleDescriptor> samples;
@@ -17,7 +22,7 @@
}
return samples.get(0);
}
-
+
@XmlElementWrapper(name = "samples")
@XmlElement(name = "sample")
public List<SampleDescriptor> getSamples() {
Modified: root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/region/RegionBean.java
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/region/RegionBean.java 2010-05-30 10:51:31 UTC (rev 17397)
+++ root/examples/richfaces-showcase/trunk/src/main/java/org/richfaces/demo/region/RegionBean.java 2010-05-30 11:07:02 UTC (rev 17398)
@@ -15,8 +15,8 @@
*
*/
private static final long serialVersionUID = -3844974441732156513L;
- private UserBean user1;
- private UserBean user2;
+ private UserBean user1 = new UserBean();
+ private UserBean user2 = new UserBean();
public UserBean getUser1() {
return user1;
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/region/region.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/region/region.xhtml 2010-05-30 10:51:31 UTC (rev 17397)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/region/region.xhtml 2010-05-30 11:07:02 UTC (rev 17398)
@@ -24,11 +24,11 @@
just wrapped to region without any additional execute definitions.</p>
<h:form>
<h:panelGrid columns="2">
- <rich:panel id="userInfoPanel1">
+ <h:panelGrid>
<f:facet name="header">
User Info Panel explicitly execute'd by Id
</f:facet>
- <h:panelGrid columns="2">
+ <h:panelGrid columns="2" id="userInfoPanel1">
<h:outputText value="User Name: " />
<h:inputText value="#{regionBean.user1.name}">
<a4j:ajax render="echopanel1" event="blur"
@@ -40,7 +40,7 @@
execute="userInfoPanel1" />
</h:inputText>
</h:panelGrid>
- </rich:panel>
+ </h:panelGrid>
<h:panelGrid columns="2" id="echopanel1">
<f:facet name="header">
Echo Panel
@@ -54,23 +54,23 @@
</h:form>
<h:form>
<h:panelGrid columns="2">
- <rich:panel>
+ <h:panelGrid>
<f:facet name="header">
User Info Panel with Region
</f:facet>
<a4j:region>
<h:panelGrid columns="2">
<h:outputText value="User Name: " />
- <h:inputText value="#{regionBean.user1.name}">
+ <h:inputText value="#{regionBean.user2.name}">
<a4j:ajax render="echopanel2" event="blur" />
</h:inputText>
<h:outputText value="User email: " />
- <h:inputText value="#{regionBean.user1.email}">
+ <h:inputText value="#{regionBean.user2.email}">
<a4j:ajax render="echopanel2" event="blur" />
</h:inputText>
</h:panelGrid>
</a4j:region>
- </rich:panel>
+ </h:panelGrid>
<h:panelGrid columns="2" id="echopanel2">
<f:facet name="header">
Echo Panel
14 years, 7 months
JBoss Rich Faces SVN: r17397 - in root/examples/richfaces-showcase/trunk/src/main: webapp/richfaces/status and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 06:51:31 -0400 (Sun, 30 May 2010)
New Revision: 17397
Modified:
root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/referencedusage.xhtml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/simple.xhtml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/viewusage.xhtml
Log:
status demos corrections.
Modified: root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2010-05-30 10:36:54 UTC (rev 17396)
+++ root/examples/richfaces-showcase/trunk/src/main/resources/org/richfaces/demo/data/common/navigation.xml 2010-05-30 10:51:31 UTC (rev 17397)
@@ -139,6 +139,10 @@
<name>a4j:status</name>
<samples>
<sample>
+ <id>viewusage</id>
+ <name>Common status for view</name>
+ </sample>
+ <sample>
<id>simple</id>
<name>Status Simple</name>
</sample>
@@ -146,10 +150,6 @@
<id>referencedusage</id>
<name>Referenced status</name>
</sample>
- <sample>
- <id>viewusage</id>
- <name>Common status for view</name>
- </sample>
</samples>
</demo>
<demo new="true">
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/referencedusage.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/referencedusage.xhtml 2010-05-30 10:36:54 UTC (rev 17396)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/referencedusage.xhtml 2010-05-30 10:51:31 UTC (rev 17397)
@@ -3,38 +3,41 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:rich="http://java.sun.com/jsf/composite/rich">
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://java.sun.com/jsf/composite/rich">
<ui:composition>
- <p>
- Example of status which referenced from the components
- </p>
- <h:panelGrid columns="3" width="300px;">
- <rich:panel>
- <f:facet name="header">
- <h:outputText value="User Details Panel" />
- </f:facet>
- <h:panelGrid columns="3">
- <h:outputText value="User name:" />
- <h:inputText value="#{userBean.name}" >
- <a4j:ajax status="nameStatus" event="keyup"/>
- </h:inputText>
- <a4j:status name="nameStatus">
- <f:facet name="start">
- <h:graphicImage value="/images/ai.gif"/>
- </f:facet>
- </a4j:status>
- <h:outputText value="Adress:" />
- <h:inputText value="#{userBean.address}">
- <a4j:ajax status="adressStatus" event="keyup"/>
- </h:inputText>
- <a4j:status name="adressStatus">
- <f:facet name="start">
- <h:graphicImage value="/images/ai.gif"/>
- </f:facet>
- </a4j:status>
- </h:panelGrid>
- </rich:panel>
- </h:panelGrid>
+ <p>Example of status which referenced from the components</p>
+ <p>There are two inputs with Ajax behaviors attached. And there are two statuses which
+ are referenced from that behaviors. <b>status</b> attribute at Ajax tags defined with
+ corresponding statuses <b>name</b> attributes values.</p>
+ <h:form>
+ <h:panelGrid columns="3" width="300px;">
+ <rich:panel>
+ <f:facet name="header">
+ <h:outputText value="User Details Panel" />
+ </f:facet>
+ <h:panelGrid columns="3">
+ <h:outputText value="User name:" />
+ <h:inputText value="#{userBean.name}">
+ <a4j:ajax status="nameStatus" event="keyup" />
+ </h:inputText>
+ <a4j:status name="nameStatus">
+ <f:facet name="start">
+ <h:graphicImage value="/images/ai.gif" style="width:16px; height:16px;"/>
+ </f:facet>
+ </a4j:status>
+ <h:outputText value="Adress:" />
+ <h:inputText value="#{userBean.address}">
+ <a4j:ajax status="adressStatus" event="keyup" />
+ </h:inputText>
+ <a4j:status name="adressStatus">
+ <f:facet name="start">
+ <h:graphicImage value="/images/ai.gif" style="width:16px; height:16px;"/>
+ </f:facet>
+ </a4j:status>
+ </h:panelGrid>
+ </rich:panel>
+ </h:panelGrid>
+ </h:form>
</ui:composition>
</html>
\ No newline at end of file
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/simple.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/simple.xhtml 2010-05-30 10:36:54 UTC (rev 17396)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/simple.xhtml 2010-05-30 10:51:31 UTC (rev 17397)
@@ -1,41 +1,39 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:rich="http://java.sun.com/jsf/composite/rich"
- xmlns:a4j="http://richfaces.org/a4j">
-
- <ui:composition>
- <p>
- Example of form scoped status
- </p>
- <h:form>
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:rich="http://java.sun.com/jsf/composite/rich"
+ xmlns:a4j="http://richfaces.org/a4j">
+
+<ui:composition>
+ <p>Example of form scoped status. It's defined within a form and
+ handles all Ajax requests within this form</p>
+ <h:form>
<rich:panel id="psnel">
<f:facet name="header">
<h:outputText value="Panel with status" />
</f:facet>
<h:panelGrid columns="2">
- <h:panelGrid columns="2">
- <f:ajax event="keyup">
- <h:outputText value="User name:" />
- <h:inputText value="#{userBean.name}"/>
- <h:outputText value="Adress:" />
- <h:inputText value="#{userBean.address}"/>
- </f:ajax>
+ <h:panelGrid columns="2">
+ <a4j:ajax event="keyup">
+ <h:outputText value="User name:" />
+ <h:inputText value="#{userBean.name}" />
+ <h:outputText value="Adress:" />
+ <h:inputText value="#{userBean.address}" />
+ </a4j:ajax>
+ </h:panelGrid>
+ <a4j:status>
+ <f:facet name="start">
+ <h:graphicImage value="/images/ai.gif" />
+ </f:facet>
+ </a4j:status>
</h:panelGrid>
- <a4j:status>
- <f:facet name="start">
- <h:graphicImage value="/images/ai.gif"/>
- </f:facet>
- </a4j:status>
- </h:panelGrid>
- <h:commandButton value="Submit" type="button" action="#{userBean.store}">
- <f:ajax render="out"/>
- </h:commandButton>
- <h:outputText value="#{userBean.recordStatus}" id="out"/>
+ <a4j:commandButton value="Submit" type="button"
+ action="#{userBean.store}" render="out" execute="@form" />
+ <h:outputText value="#{userBean.recordStatus}" id="out" />
</rich:panel>
- </h:form>
- </ui:composition>
-
+ </h:form>
+</ui:composition>
+
</html>
\ No newline at end of file
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/viewusage.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/viewusage.xhtml 2010-05-30 10:36:54 UTC (rev 17396)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/status/viewusage.xhtml 2010-05-30 10:51:31 UTC (rev 17397)
@@ -19,7 +19,8 @@
</ul>
</p>
<p>
- Example of View scoped status
+ Example of View scoped status. It should be defined outside of any form and will
+ handle all the Ajax requests within the view.
</p>
<h:panelGrid columns="3">
<h:form>
@@ -28,15 +29,15 @@
<h:outputText value="User Details Panel" />
</f:facet>
<h:panelGrid columns="2">
- <f:ajax event="keyup">
+ <a4j:ajax event="keyup">
<h:outputText value="User name:" />
<h:inputText value="#{userBean.name}"/>
<h:outputText value="Adress:" />
<h:inputText value="#{userBean.address}"/>
- </f:ajax>
+ </a4j:ajax>
</h:panelGrid>
<h:commandButton value="Submit" type="button" action="#{userBean.store}">
- <f:ajax render="out"/>
+ <a4j:ajax render="out"/>
</h:commandButton>
<h:outputText value="#{userBean.recordStatus}" id="out"/>
</rich:panel>
@@ -47,11 +48,9 @@
<h:outputText value="Simple search panel" />
</f:facet>
<h:inputText value="Search..."/>
- <h:commandButton value="Submit" type="button">
- <f:ajax />
- </h:commandButton>
+ <a4j:commandButton value="Submit" type="button"/>
</rich:panel>
- </h:form>
+ </h:form>
<a4j:status>
<f:facet name="start">
<h:graphicImage value="/images/ai.gif"/>
14 years, 7 months
JBoss Rich Faces SVN: r17396 - root/ui/core/trunk/ui/src/main/java/org/richfaces/renderkit/html.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 06:36:54 -0400 (Sun, 30 May 2010)
New Revision: 17396
Modified:
root/ui/core/trunk/ui/src/main/java/org/richfaces/renderkit/html/AjaxStatusRenderer.java
Log:
https://jira.jboss.org/browse/RF-8715
Modified: root/ui/core/trunk/ui/src/main/java/org/richfaces/renderkit/html/AjaxStatusRenderer.java
===================================================================
--- root/ui/core/trunk/ui/src/main/java/org/richfaces/renderkit/html/AjaxStatusRenderer.java 2010-05-30 09:57:40 UTC (rev 17395)
+++ root/ui/core/trunk/ui/src/main/java/org/richfaces/renderkit/html/AjaxStatusRenderer.java 2010-05-30 10:36:54 UTC (rev 17396)
@@ -37,6 +37,7 @@
import org.ajax4jsf.renderkit.RendererUtils;
import org.ajax4jsf.renderkit.RendererUtils.HTML;
import org.ajax4jsf.renderkit.RendererUtils.ScriptHashVariableWrapper;
+import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.component.AbstractAjaxStatus;
import org.richfaces.component.util.HtmlUtil;
@@ -47,6 +48,7 @@
@ResourceDependency(library = "javax.faces", name = "jsf.js"),
@ResourceDependency(name = "jquery.js"),
@ResourceDependency(name = "richfaces.js")})
+@JsfRenderer(type = "org.richfaces.StatusRenderer", family = AbstractAjaxStatus.COMPONENT_FAMILY)
public class AjaxStatusRenderer extends RendererBase {
private static final String START = "start";
14 years, 7 months
JBoss Rich Faces SVN: r17395 - in root/examples/richfaces-showcase/trunk/src/main/webapp: richfaces/outputPanel and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 05:57:40 -0400 (Sun, 30 May 2010)
New Revision: 17395
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/resources/rich/messages.xhtml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/compositemessages.xhtml
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/simple.xhtml
Log:
outputPanel samples fixed
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/resources/rich/messages.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/resources/rich/messages.xhtml 2010-05-30 09:51:44 UTC (rev 17394)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/resources/rich/messages.xhtml 2010-05-30 09:57:40 UTC (rev 17395)
@@ -21,7 +21,7 @@
<h:outputStylesheet name="rich/css/messages.css" />
<a4j:outputPanel ajaxRendered="true" layout="none">
<h:messages layout="#{cc.attrs.layout}"
- showSummary="true" style="#{cc.attrs.style}"
+ showSummary="true" style="color:red; #{cc.attrs.style}"
styleClass="rich-message #{cc.attrs.styleClass}" />
</a4j:outputPanel>
</composite:implementation>
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/compositemessages.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/compositemessages.xhtml 2010-05-30 09:51:44 UTC (rev 17394)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/compositemessages.xhtml 2010-05-30 09:57:40 UTC (rev 17395)
@@ -30,8 +30,10 @@
</h:panelGrid>
<rich:messages/>
</h:panelGrid>
- <a4j:commandButton value="Submit" type="button" action="#{userBean.store}" render="out"/>
- <h:outputText value="#{userBean.recordStatus}" id="out"/>
+ <a4j:commandButton value="Submit" type="button" action="#{userBean.store}" execute="@form"/>
+ <a4j:outputPanel ajaxRendered="true">
+ <h:outputText value="#{userBean.recordStatus}" id="out" rendered="#{facesContext.maximumSeverity == null}"/>
+ </a4j:outputPanel>
</rich:panel>
</h:form>
</ui:composition>
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/simple.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/simple.xhtml 2010-05-30 09:51:44 UTC (rev 17394)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/outputPanel/simple.xhtml 2010-05-30 09:57:40 UTC (rev 17395)
@@ -34,7 +34,7 @@
<f:verbatim>
This code does not work as expected. The expected echo text does not appear
- below even the condition for <code>'renderer'</code> returns <code>true</code>.
+ below even the condition for <code>'rendered'</code> returns <code>true</code>.
Also, the error message does not appear when the length of the text reaches the limit.
</f:verbatim>
<f:verbatim>
@@ -64,7 +64,7 @@
<a4j:outputPanel layout="block">
<h:form>
- <a4j:outputPanel layout="block">
+ <a4j:outputPanel layout="block" ajaxRendered="true">
<h:message for="text2" style="color:red" />
</a4j:outputPanel>
14 years, 7 months
JBoss Rich Faces SVN: r17394 - root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/param.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 05:51:44 -0400 (Sun, 30 May 2010)
New Revision: 17394
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/param/clientParam.xhtml
Log:
client param sample fixed.
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/param/clientParam.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/param/clientParam.xhtml 2010-05-30 09:39:44 UTC (rev 17393)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/param/clientParam.xhtml 2010-05-30 09:51:44 UTC (rev 17394)
@@ -20,14 +20,14 @@
assignTo="#{paramBean.screenHeight}" noEscape="true" />
</a4j:commandButton>
<br />
- <rich:panel id="infoPanel">
- <h:panelGrid columns="2" >
+
+ <h:panelGrid columns="2" id="infoPanel">
<h:outputText value="Width:" />
<h:outputText value="#{paramBean.screenWidth}" />
<h:outputText value="Height:" />
<h:outputText value="#{paramBean.screenHeight}" />
</h:panelGrid>
- </rich:panel>
+
</h:form>
</ui:composition>
14 years, 7 months
JBoss Rich Faces SVN: r17393 - root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/ajax.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 05:39:44 -0400 (Sun, 30 May 2010)
New Revision: 17393
Modified:
root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/ajax/selectsUpdates.xhtml
Log:
obsolette debug script removed
Modified: root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/ajax/selectsUpdates.xhtml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/ajax/selectsUpdates.xhtml 2010-05-30 09:38:16 UTC (rev 17392)
+++ root/examples/richfaces-showcase/trunk/src/main/webapp/richfaces/ajax/selectsUpdates.xhtml 2010-05-30 09:39:44 UTC (rev 17393)
@@ -13,8 +13,7 @@
<h:selectOneMenu value="#{selectsBean.currentType}"
valueChangeListener="#{selectsBean.valueChanged}">
<f:selectItems value="#{selectsBean.firstList}" />
- <a4j:ajax event="valueChange" render="second" execute="@this"
- onbegin="if (confirm('Really want to change?')) {alert('1');return false;}"/>
+ <a4j:ajax event="valueChange" render="second" execute="@this" />
</h:selectOneMenu>
<a4j:outputPanel id="second" layout="block">
<h:selectOneMenu value="#{selectsBean.currentType}" rendered="#{not empty selectsBean.currentType}">
14 years, 7 months
JBoss Rich Faces SVN: r17392 - root/examples/richfaces-showcase/trunk/src/main/resources/META-INF.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2010-05-30 05:38:16 -0400 (Sun, 30 May 2010)
New Revision: 17392
Removed:
root/examples/richfaces-showcase/trunk/src/main/resources/META-INF/a4j.taglib.xml
Log:
workaround to empty a4j taglib generations by CDK removed
Deleted: root/examples/richfaces-showcase/trunk/src/main/resources/META-INF/a4j.taglib.xml
===================================================================
--- root/examples/richfaces-showcase/trunk/src/main/resources/META-INF/a4j.taglib.xml 2010-05-29 00:25:41 UTC (rev 17391)
+++ root/examples/richfaces-showcase/trunk/src/main/resources/META-INF/a4j.taglib.xml 2010-05-30 09:38:16 UTC (rev 17392)
@@ -1,1032 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<facelet-taglib xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd" version="2.0" id="a4j">
- <namespace>http://richfaces.org/a4j</namespace>
- <tag>
- <tag-name>commandLink</tag-name>
- <component>
- <component-type>org.richfaces.CommandLink</component-type>
- <renderer-type>org.richfaces.CommandLinkRenderer</renderer-type>
- </component>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>action</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>actionExpression</name>
- <type>javax.el.MethodExpression</type>
- </attribute>
- <attribute>
- <description><p> MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, <span class="changed_added_2_0">or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened".</span> </p></description>
- <name>actionListener</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase.</description>
- <name>immediate</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>limitRender</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>onclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ondblclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeydown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeypress</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeyup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousedown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousemove</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseout</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseover</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>style</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>styleClass</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>repeat</tag-name>
- <component>
- <component-type>org.richfaces.Repeat</component-type>
- <renderer-type>org.richfaces.RepeatRenderer</renderer-type>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>mediaOutput</tag-name>
- <component>
- <component-type>org.richfaces.MediaOutput</component-type>
- <renderer-type>org.richfaces.MediaOutputRenderer</renderer-type>
- <handler-class>org.richfaces.view.facelets.html.MediaOutputHandler</handler-class>
- </component>
- <attribute>
- <name>accesskey</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>align</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>archive</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <name>border</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>cacheable</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>charset</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>classid</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>codebase</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>codetype</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Converter instance registered with this component.</description>
- <name>converter</name>
- <type>javax.faces.convert.Converter</type>
- </attribute>
- <attribute>
- <name>coords</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Get EL binding to method in user bean to send resource. Method will called with two parameters - restored data object and servlet output stream. @return MethodBinding to createContent</description>
- <name>createContent</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <name>declare</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>dir</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Get Element name for rendering ( imj , a , object, applet ). @return</description>
- <name>element</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>expires</name>
- <type>java.util.Date</type>
- </attribute>
- <attribute>
- <name>hreflang</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>hspace</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ismap</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>lang</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>lastModified</name>
- <type>java.util.Date</type>
- </attribute>
- <attribute>
- <name>mimeType</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onblur</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ondblclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onfocus</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeydown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeypress</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeyup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousedown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousemove</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseout</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseover</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>rel</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>rev</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>shape</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>standby</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>style</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>styleClass</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>tabindex</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>target</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>title</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>type</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Get URI attribute for resource ( src for images, href for links etc ). @return</description>
- <name>uriAttribute</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>usemap</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- <attribute>
- <name>vspace</name>
- <type>java.lang.String</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>attachQueue</tag-name>
- <component>
- <component-type>org.richfaces.AttachQueue</component-type>
- <renderer-type>org.richfaces.AttachQueueRenderer</renderer-type>
- <handler-class>org.richfaces.view.facelets.html.AttachQueueHandler</handler-class>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ignoreDupResponses</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>onrequestdequeue</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onrequestqueue</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>queueId</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>requestDelay</name>
- <type>int</type>
- </attribute>
- <attribute>
- <name>requestGroupingId</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>timeout</name>
- <type>int</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>region</tag-name>
- <component>
- <component-type>org.richfaces.Region</component-type>
- <renderer-type>org.richfaces.RegionRenderer</renderer-type>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>param</tag-name>
- <component>
- <component-type>org.richfaces.UIParameter</component-type>
- <renderer-type>org.richfaces.UIParameterRenderer</renderer-type>
- <handler-class>org.richfaces.view.facelets.html.AbstractParameterHandler</handler-class>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Name of the parameter associated with this component.</description>
- <name>name</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>Value of the parameter associated with this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>status</tag-name>
- <component>
- <component-type>org.richfaces.Status</component-type>
- <renderer-type>org.richfaces.StatusRenderer</renderer-type>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>Converter instance registered with this component.</description>
- <name>converter</name>
- <type>javax.faces.convert.Converter</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onerror</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onstart</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onstop</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onsuccess</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>push</tag-name>
- <component>
- <component-type>org.richfaces.Push</component-type>
- <renderer-type>org.richfaces.PushRenderer</renderer-type>
- <handler-class>org.richfaces.view.facelets.html.AjaxPushHandler</handler-class>
- </component>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>action</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>actionExpression</name>
- <type>javax.el.MethodExpression</type>
- </attribute>
- <attribute>
- <description><p> MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, <span class="changed_added_2_0">or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened".</span> </p></description>
- <name>actionListener</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <name>enabled</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>eventProducer</name>
- <type>javax.el.MethodExpression</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase.</description>
- <name>immediate</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>@return time in mc for polling interval.</description>
- <name>interval</name>
- <type>int</type>
- </attribute>
- <attribute>
- <name>onbeforedomupdate</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onbegin</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>oncomplete</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ondataavailable</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>commandButton</tag-name>
- <component>
- <component-type>org.richfaces.CommandButton</component-type>
- <renderer-type>org.richfaces.CommandButtonRenderer</renderer-type>
- </component>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>action</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>actionExpression</name>
- <type>javax.el.MethodExpression</type>
- </attribute>
- <attribute>
- <description><p> MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, <span class="changed_added_2_0">or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened".</span> </p></description>
- <name>actionListener</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase.</description>
- <name>immediate</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>limitRender</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>onclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ondblclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeydown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeypress</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeyup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousedown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousemove</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseout</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseover</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>style</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>styleClass</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>outputPanel</tag-name>
- <component>
- <component-type>org.richfaces.OutputPanel</component-type>
- <renderer-type>org.richfaces.OutputPanelRenderer</renderer-type>
- </component>
- <attribute>
- <name>ajaxRendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <name>dir</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>keepTransient</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>lang</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>layout</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ondblclick</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeydown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeypress</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onkeyup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousedown</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmousemove</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseout</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseover</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onmouseup</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>style</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>styleClass</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>title</name>
- <type>java.lang.String</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>poll</tag-name>
- <component>
- <component-type>org.richfaces.Poll</component-type>
- <renderer-type>org.richfaces.PollRenderer</renderer-type>
- <handler-class>org.richfaces.view.facelets.html.AjaxPollHandler</handler-class>
- </component>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>action</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>actionExpression</name>
- <type>javax.el.MethodExpression</type>
- </attribute>
- <attribute>
- <description><p> MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, <span class="changed_added_2_0">or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened".</span> </p></description>
- <name>actionListener</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <name>enabled</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase.</description>
- <name>immediate</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>interval</name>
- <type>int</type>
- </attribute>
- <attribute>
- <name>onbeforedomupdate</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onbegin</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>oncomplete</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ontimer</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>jsFunction</tag-name>
- <component>
- <component-type>org.richfaces.Function</component-type>
- <renderer-type>org.richfaces.FunctionRenderer</renderer-type>
- </component>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>action</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.</description>
- <name>actionExpression</name>
- <type>javax.el.MethodExpression</type>
- </attribute>
- <attribute>
- <description><p> MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, <span class="changed_added_2_0">or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened".</span> </p></description>
- <name>actionListener</name>
- <type>javax.faces.el.MethodBinding</type>
- </attribute>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <name>execute</name>
- <type>java.lang.Object</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase.</description>
- <name>immediate</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>limitRender</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>name</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onbeforedomupdate</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onbegin</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>oncomplete</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>render</name>
- <type>java.lang.Object</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>status</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>The current value of this component.</description>
- <name>value</name>
- <type>java.lang.Object</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>log</tag-name>
- <component>
- <component-type>org.richfaces.AjaxLog</component-type>
- <renderer-type>org.richfaces.AjaxLogRenderer</renderer-type>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>level</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>style</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>styleClass</name>
- <type>java.lang.String</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>queue</tag-name>
- <component>
- <component-type>org.richfaces.Queue</component-type>
- <renderer-type>org.richfaces.QueueRenderer</renderer-type>
- </component>
- <attribute>
- <description>The value binding expression used to wire up this component to a component property of a JavaBean class</description>
- <name>binding</name>
- <type>javax.faces.component.UIComponent</type>
- </attribute>
- <attribute>
- <description>The component identifier for this component. This value must be unique within the closest parent component that is a naming container.</description>
- <name>id</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>ignoreDupResponses</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>name</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onbeforedomupdate</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>oncomplete</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onerror</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onevent</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onrequestdequeue</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onrequestqueue</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>onsubmit</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <description>Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.</description>
- <name>rendered</name>
- <type>boolean</type>
- </attribute>
- <attribute>
- <name>requestDelay</name>
- <type>int</type>
- </attribute>
- <attribute>
- <name>status</name>
- <type>java.lang.String</type>
- </attribute>
- <attribute>
- <name>timeout</name>
- <type>int</type>
- </attribute>
- </tag>
- <tag>
- <tag-name>ajax</tag-name>
- <behavior>
- <behavior-id>org.ajax4jsf.behavior.Ajax</behavior-id>
- <handler-class>org.richfaces.view.facelets.html.AjaxHandler</handler-class>
- </behavior>
- </tag>
-</facelet-taglib>
14 years, 7 months
JBoss Rich Faces SVN: r17391 - root/build/resources/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-05-28 20:25:41 -0400 (Fri, 28 May 2010)
New Revision: 17391
Modified:
root/build/resources/trunk/checkout.sh
Log:
Updated checkout script for new changes
Modified: root/build/resources/trunk/checkout.sh
===================================================================
--- root/build/resources/trunk/checkout.sh 2010-05-29 00:13:10 UTC (rev 17390)
+++ root/build/resources/trunk/checkout.sh 2010-05-29 00:25:41 UTC (rev 17391)
@@ -69,7 +69,7 @@
for module in "${FINAL_LIST[@]}"
do
- url="$SVNBASE/$module/trunk"
+ url="$SVNBASE/$module"
moduledir=$DESTINATION/$module/trunk
echo
@@ -106,21 +106,20 @@
# Listing of all modules to be checked out
# $1 = path to module ( before trunk/tag/branch )
MAIN_MODULE_ARRAY=(
- "build/parent"
- "build/bom"
- "build/resources"
- "commons"
- "core"
- "dist"
- "ui/core"
- "ui/dist"
- # other ui modules when in place
- # "ui/inputs"
+ "build/parent/trunk"
+ "build/bom/trunk"
+ "build/resources/trunk"
+ "commons/trunk"
+ "core/trunk"
+ "dist/trunk"
+ "ui/core/trunk"
+ "ui/dist/trunk"
+ "ui/misc/trunk"
+ "ui/iteration/trunk"
)
CDK_MODULE_ARRAY=(
- "cdk"
- "cdk-sandbox"
+ "cdk/trunk"
)
DOC_QE_MODULE_ARRAY=(
@@ -131,34 +130,25 @@
EXAMPLE_ARCHETYPE_MODULE_ARRAY=(
# For each example
# "examples/<example>"
- "examples/dist"
- "examples/core-demo"
- "examples/repeater-demo"
- "examples/richfaces-showcase"
-
+ "examples"
+ # TODO - Clean up examples so it does not need root aggregator
+
# For each archetype
# "archetype/<archetype>"
- # TODO - populate after we have archetypes
+ "archetype"
+ # TODO - Clean up archetype so it does not need root aggregator
+
)
SANDBOX_MODULE_ARRAY=(
+ # cdk sandbox
+ "cdk-sandbox/trunk"
+
# For each example in sandbox
# "examples-sandbox/<example>"
# For each component in sandbox
# "ui-sandbox/<component>"
- "ui-sandbox/calendar"
- "ui-sandbox/componentcontrol"
- "ui-sandbox/datafilterslider"
- "ui-sandbox/datascroller"
- "ui-sandbox/drag-drop"
- "ui-sandbox/fileupload"
- "ui-sandbox/numberinputs"
- "ui-sandbox/selects"
- "ui-sandbox/tables"
- "ui-sandbox/togglepanels"
- "ui-sandbox/tree"
- "ui-sandbox/tree-model"
)
while getopts "tecsahrd:v" OPTION
14 years, 7 months
JBoss Rich Faces SVN: r17390 - in root: cdk/trunk/docs and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-05-28 20:13:10 -0400 (Fri, 28 May 2010)
New Revision: 17390
Added:
root/cdk/trunk/docs/
root/cdk/trunk/docs/guide/
root/cdk/trunk/docs/pom.xml
Removed:
root/docs/trunk/Component_Development_Kit_Guide/
Modified:
root/cdk/trunk/docs/guide/pom.xml
root/cdk/trunk/pom.xml
root/docs/trunk/pom.xml
Log:
prepare CDK for release
Copied: root/cdk/trunk/docs/guide (from rev 17389, root/docs/trunk/Component_Development_Kit_Guide)
Modified: root/cdk/trunk/docs/guide/pom.xml
===================================================================
--- root/docs/trunk/Component_Development_Kit_Guide/pom.xml 2010-05-28 22:36:10 UTC (rev 17389)
+++ root/cdk/trunk/docs/guide/pom.xml 2010-05-29 00:13:10 UTC (rev 17390)
@@ -3,16 +3,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>${docname}-${translation}</artifactId>
- <version>1.0</version>
+ <groupId>org.richfaces.cdk.docs</groupId>
+ <artifactId>guide-${translation}</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>${bookname}-(${translation})</name>
<parent>
- <groupId>org.jboss.richfaces</groupId>
+ <groupId>org.jboss.richfaces.cdk</groupId>
<artifactId>docs</artifactId>
- <version>1.0</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<properties>
@@ -199,7 +199,7 @@
</format>
</formats>
<imageResource>
- <directory>${docname}/${translation}</directory>
+ <directory>guide/${translation}</directory>
<includes>
<include>images/*</include>
</includes>
@@ -236,7 +236,7 @@
<sourceDocumentName>${docname}.xml</sourceDocumentName>
<sourceDirectory>.</sourceDirectory>
<imageResource>
- <directory>${translation}</directory>
+ <directory>${project.basedir}/${translation}</directory>
<includes>
<include>images/*</include>
</includes>
Copied: root/cdk/trunk/docs/pom.xml (from rev 17389, root/docs/trunk/pom.xml)
===================================================================
--- root/cdk/trunk/docs/pom.xml (rev 0)
+++ root/cdk/trunk/docs/pom.xml 2010-05-29 00:13:10 UTC (rev 17390)
@@ -0,0 +1,29 @@
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <artifactId>docs</artifactId>
+ <packaging>pom</packaging>
+ <name>Components Development Kit documentation</name>
+ <modules>
+ <module>guide</module>
+ </modules>
+ <!-- Minimal build configuration -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <!--inherited>false</inherited-->
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
+
Modified: root/cdk/trunk/pom.xml
===================================================================
--- root/cdk/trunk/pom.xml 2010-05-28 22:36:10 UTC (rev 17389)
+++ root/cdk/trunk/pom.xml 2010-05-29 00:13:10 UTC (rev 17390)
@@ -1,75 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<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
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>JSF Components Development Kit (CDK) aggregator project.</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- </properties>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>aggregator</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>JSF Components Development Kit (CDK)</name>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ </properties>
- <modules>
- <module>bom</module>
- <module>parent</module>
- <module>plugins</module>
- <module>archetypes</module>
- </modules>
- <!-- SCM and distribution management -->
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/cdk/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/cdk/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
- </scm>
+ <modules>
+ <module>bom</module>
+ <module>parent</module>
+ <module>plugins</module>
+ <module>archetypes</module>
+ <module>docs</module>
+ </modules>
+ <!-- SCM and distribution management -->
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/cdk/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/cdk/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
+ </scm>
- <distributionManagement>
- <downloadUrl>
- http://labs.jboss.com/portal/jbossrichfaces/downloads
+ <distributionManagement>
+ <downloadUrl>
+ http://labs.jboss.com/portal/jbossrichfaces/downloads
</downloadUrl>
- <repository>
- <id>jboss-releases-repository</id>
- <uniqueVersion>false</uniqueVersion>
- <url>${releaseRepository}</url>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots-repository</id>
- <uniqueVersion>true</uniqueVersion>
- <url>${snapshotRepository}</url>
- </snapshotRepository>
- <!--site>
+ <repository>
+ <id>jboss-releases-repository</id>
+ <uniqueVersion>false</uniqueVersion>
+ <url>${releaseRepository}</url>
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <uniqueVersion>true</uniqueVersion>
+ <url>${snapshotRepository}</url>
+ </snapshotRepository>
+ <!--site>
<url>file:target/site2</url>
</site-->
- </distributionManagement>
+ </distributionManagement>
- <!-- Minimal build configuration -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <tagBase>https://svn.jboss.org/repos/richfaces/root/cdk/tags</tagBase>
- <!-- As we need access to our own artifacts -->
- <preparationGoals>install</preparationGoals>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <inherited>false</inherited>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <!-- Minimal build configuration -->
+ <build>
+ <finalName>cdk</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ <tagBase>https://svn.jboss.org/repos/richfaces/root/cdk/tags</tagBase>
+ <!-- As we need access to our own artifacts -->
+ <preparationGoals>install</preparationGoals>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <inherited>false</inherited>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <!--
+ NOTE: We don't need a groupId specification because the group is
+ org.apache.maven.plugins ...which is assumed by default.
+ -->
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-5</version>
+ <configuration>
+ <descriptorRefs>
+ <descriptorRef>project</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
+ <phase>package</phase> <!-- append to the packaging phase. -->
+ <goals>
+ <goal>single</goal> <!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>
Modified: root/docs/trunk/pom.xml
===================================================================
--- root/docs/trunk/pom.xml 2010-05-28 22:36:10 UTC (rev 17389)
+++ root/docs/trunk/pom.xml 2010-05-29 00:13:10 UTC (rev 17390)
@@ -8,7 +8,6 @@
<artifactId>docs</artifactId>
<packaging>pom</packaging>
<modules>
- <module>Component_Development_Kit_Guide</module>
<module>Component_Reference</module>
<module>Developer_Guide</module>
<module>Migration_Guide</module>
14 years, 7 months
JBoss Rich Faces SVN: r17389 - root/examples/core-demo/trunk/src/main/java/org/richfaces/demo.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-05-28 18:36:10 -0400 (Fri, 28 May 2010)
New Revision: 17389
Modified:
root/examples/core-demo/trunk/src/main/java/org/richfaces/demo/CommandBean.java
Log:
Fixed Checkstyle problem in demo
Modified: root/examples/core-demo/trunk/src/main/java/org/richfaces/demo/CommandBean.java
===================================================================
--- root/examples/core-demo/trunk/src/main/java/org/richfaces/demo/CommandBean.java 2010-05-28 21:35:24 UTC (rev 17388)
+++ root/examples/core-demo/trunk/src/main/java/org/richfaces/demo/CommandBean.java 2010-05-28 22:36:10 UTC (rev 17389)
@@ -12,49 +12,49 @@
@SessionScoped
public class CommandBean implements Serializable {
- private static final long serialVersionUID = 3485896940723796437L;
+ private static final long serialVersionUID = 3485896940723796437L;
- private String name;
+ private String name;
- private boolean pollEnabled;
+ private boolean pollEnabled;
- public boolean isPollEnabled() {
- return pollEnabled;
- }
+ public boolean isPollEnabled() {
+ return pollEnabled;
+ }
- public void setPollEnabled(boolean pollEnabled) {
- this.pollEnabled = pollEnabled;
- }
+ public void setPollEnabled(boolean pollEnabled) {
+ this.pollEnabled = pollEnabled;
+ }
- public void setName(String name) {
- this.name = name;
- }
+ public void setName(String name) {
+ this.name = name;
+ }
- public String getName() {
- return name;
- }
+ public String getName() {
+ return name;
+ }
- public void submit() {
- name = "Hello " + name;
- }
+ public void submit() {
+ name = "Hello " + name;
+ }
- public void reset() {
- name = "";
- }
+ public void reset() {
+ name = "";
+ }
- public Date getDate() {
- return new Date();
- }
+ public Date getDate() {
+ return new Date();
+ }
- public void listener(AjaxBehaviorEvent event) {
- System.out.println("CommandBean.listener()");
- }
+ public void listener(AjaxBehaviorEvent event) {
+ System.out.println("CommandBean.listener()");
+ }
- public void enablePoll(ActionEvent event) {
- setPollEnabled(true);
- }
+ public void enablePoll(ActionEvent event) {
+ setPollEnabled(true);
+ }
- public void disablePoll(ActionEvent event) {
- setPollEnabled(false);
- }
+ public void disablePoll(ActionEvent event) {
+ setPollEnabled(false);
+ }
}
14 years, 7 months