01: /* Radio.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: 2007/08/16 18:10:17 , Created by Dennis.Chen
10: }}IS_NOTE
11:
12: Copyright (C) 2007 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: This program is distributed under GPL Version 2.0 in the hope that
16: it will be useful, but WITHOUT ANY WARRANTY.
17: }}IS_RIGHT
18: */
19: package org.zkoss.jsf.zul;
20:
21: import org.zkoss.jsf.zul.impl.BranchComponent;
22: import org.zkoss.zk.ui.Component;
23:
24: /**
25: * Radio is a JSF component implementation for {@link org.zkoss.zul.Radio},
26: * <p/>
27: * Note : This component doen't implements ValueHolder, that means you can't bind it to a bean value for user input.
28: * To bind raido value to bean for user input, please use {@link Radiogroup}
29: * <p/>
30: * This component should be declared nested under {@link org.zkoss.jsf.zul.Page}.
31: * <p/>To know more ZK component features you can refer to <a href="http://www.zkoss.org/">http://www.zkoss.org/</a>
32: *
33: * @author Dennis.Chen
34: *
35: */
36: public class Radio extends BranchComponent {
37:
38: }
|