001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.uif.control;
017
018import org.apache.commons.lang.StringUtils;
019import org.kuali.rice.krad.datadictionary.parse.BeanTag;
020import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
021import org.kuali.rice.krad.datadictionary.parse.BeanTags;
022
023import java.util.ArrayList;
024import java.util.List;
025
026/**
027 * Represents a group of HTML Radio controls. Provides preset options for the
028 * user to choose by a series of radio controls. Only one option can be selected
029 *
030 * @author Kuali Rice Team (rice.collab@kuali.org)
031 */
032@BeanTags({@BeanTag(name = "verticalRadioControl", parent = "Uif-VerticalRadioControl"),
033        @BeanTag(name = "horizontalRadioControl", parent = "Uif-HorizontalRadioControl")})
034public class RadioGroupControl extends MultiValueControlBase {
035    private static final long serialVersionUID = 8800478332086081970L;
036    private List<String> fieldsetClasses;
037
038    private String delimiter;
039
040    public RadioGroupControl() {
041        super();
042        fieldsetClasses = new ArrayList<String>();
043    }
044
045    /**
046     * Delimiter string to be rendered between the radio group options, defaults
047     * to none
048     *
049     * @return delimiter string
050     */
051    @BeanTagAttribute
052    public String getDelimiter() {
053        return this.delimiter;
054    }
055
056    /**
057     * Setter for the string delimiter for each radio option
058     *
059     * @param delimiter delimeter to render between options
060     */
061    public void setDelimiter(String delimiter) {
062        this.delimiter = delimiter;
063    }
064
065    /**
066     * Get fieldsetClasses which are the classes that will be applied to this component's fieldset when generated
067     *
068     * @return css classes for the fieldset
069     */
070    @BeanTagAttribute
071    public List<String> getFieldsetClasses() {
072        return fieldsetClasses;
073    }
074
075    /**
076     * Set fieldsetClasses
077     *
078     * @param fieldsetClasses css classes for the fieldset
079     */
080    public void setFieldsetClasses(List<String> fieldsetClasses) {
081        this.fieldsetClasses = fieldsetClasses;
082    }
083
084    /**
085     * Builds the HTML class attribute string by combining the fieldsetClasses list
086     * with a space delimiter
087     *
088     * @return class attribute string
089     */
090    public String getFieldsetClassesAsString() {
091        if (fieldsetClasses != null) {
092            return StringUtils.join(fieldsetClasses, " ");
093        }
094
095        return "";
096    }
097}