From richfaces-svn-commits at lists.jboss.org Thu Aug 27 07:30:08 2009
Content-Type: multipart/mixed; boundary="===============9170118028938033929=="
MIME-Version: 1.0
From: richfaces-svn-commits at lists.jboss.org
To: richfaces-svn-commits at lists.jboss.org
Subject: [richfaces-svn-commits] JBoss Rich Faces SVN: r15338 - in
root/examples/trunk/components/core-demo/src/main: webapp and 1 other
directory.
Date: Thu, 27 Aug 2009 07:30:07 -0400
Message-ID: <200908271130.n7RBU77A016718@svn01.web.mwc.hst.phx2.redhat.com>
--===============9170118028938033929==
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Author: abelevich
Date: 2009-08-27 07:30:06 -0400 (Thu, 27 Aug 2009)
New Revision: 15338
Added:
root/examples/trunk/components/core-demo/src/main/java/org/richfaces/dem=
o/SupportBean.java
root/examples/trunk/components/core-demo/src/main/webapp/support.xhtml
Removed:
root/examples/trunk/components/core-demo/src/main/webapp/pages/
Log:
developers sample a4j:ajax =
Added: root/examples/trunk/components/core-demo/src/main/java/org/richfaces=
/demo/SupportBean.java
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- root/examples/trunk/components/core-demo/src/main/java/org/richfaces/de=
mo/SupportBean.java (rev 0)
+++ root/examples/trunk/components/core-demo/src/main/java/org/richfaces/de=
mo/SupportBean.java 2009-08-27 11:30:06 UTC (rev 15338)
@@ -0,0 +1,36 @@
+package org.richfaces.demo;
+
+import javax.faces.bean.ManagedBean;
+import javax.faces.bean.SessionScoped;
+import javax.faces.event.AjaxBehaviorEvent;
+import javax.faces.event.BehaviorEvent;
+
+(a)SessionScoped
+(a)ManagedBean(name=3D"supportBean")
+public class SupportBean {
+ =
+ private String text1;
+ =
+ private String text2;
+ =
+ public String getText1() {
+ return text1;
+ }
+
+ public void setText1(String text1) {
+ this.text1 =3D text1;
+ }
+
+ public String getText2() {
+ return text2;
+ }
+
+ public void setText2(String text2) {
+ this.text2 =3D text2;
+ }
+
+ public void behaviorListener(AjaxBehaviorEvent event) {
+ System.out.println("SupportBean.behaviorListener()");
+ }
+ =
+}
Added: root/examples/trunk/components/core-demo/src/main/webapp/support.xht=
ml
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- root/examples/trunk/components/core-demo/src/main/webapp/support.xhtml =
(rev 0)
+++ root/examples/trunk/components/core-demo/src/main/webapp/support.xhtml =
2009-08-27 11:30:06 UTC (rev 15338)
@@ -0,0 +1,66 @@
+
+
+
+ Richfaces Ajax Sample
+ =
+
+
+
+ =
+
+
+
+
+
+
+
+
+ =
+ =
+ =
+
+
+
+ =
+
+
+ test
+
+
+
+ =
+
+
+ =
+
+
+
+
+
+
+ =
+
+
+
+ =
+
+
+
+
+
+ =
+
+
+ =
+ =
+
+ =
+ =
\ No newline at end of file
--===============9170118028938033929==--