KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > jsf > JsfManagedBean


1 package test.jsf;
2
3 /**
4  * @author <a HREF="mailto:markus.plattner at plattners.de">Markus Plattner</a>
5  * Date: 28.06.2004
6  * Time: 00:30:10
7  *
8  * @jsf.bean name="jsfBean" scope="session"
9  *
10  * @jsf.navigation from="from_1" to="to_1" result="result_1"
11  * @jsf.navigation from="from_2" to="to_2" result="result_2"
12  * @jsf.navigation from="from_1" to="to_1" result="ergebnis_2"
13  */

14 public class JsfManagedBean {
15
16     /**
17      * @jsf.managed-property value-ref="${v.ref}"
18      */

19     public void setRef(String JavaDoc r) {
20
21     }
22     /**
23      * @jsf.managed-property value="1"
24      */

25     public void setSelectedEditor(String JavaDoc tab) {
26     }
27 }
28
Popular Tags