View Javadoc
1   package org.kuali.rice.krad.uif.element.extension;
2   
3   import org.kuali.rice.krad.uif.element.ContentElementBase;
4   
5   /**
6    * Place-holder content element for representing a flexible radio control.
7    * 
8    * @author Mark Fyffe <mwfyffe@iu.edu>
9    * @version 1.1
10   */
11  public class ShoppingCartRadioComponent extends ContentElementBase {
12  
13  	private static final long serialVersionUID = -5743330838885750100L;
14  
15  	private String propertyName;
16  	private String optionValue;
17  	private String optionLabel;
18  	private boolean selected;
19  
20  	public String getPropertyName() {
21  		return propertyName;
22  	}
23  
24  	public void setPropertyName(String propertyName) {
25  		this.propertyName = propertyName;
26  	}
27  
28  	public String getOptionValue() {
29  		return optionValue;
30  	}
31  
32  	public void setOptionValue(String optionValue) {
33  		this.optionValue = optionValue;
34  	}
35  
36  	public String getOptionLabel() {
37  		return optionLabel;
38  	}
39  
40  	public void setOptionLabel(String optionLabel) {
41  		this.optionLabel = optionLabel;
42  	}
43  
44  	public boolean isSelected() {
45  		return selected;
46  	}
47  
48  	public void setSelected(boolean selected) {
49  		this.selected = selected;
50  	}
51  
52  }