001/**
002 * Copyright 2005-2015 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.kuali.rice.core.api.util.KeyValue;
019import org.kuali.rice.krad.uif.util.KeyMessage;
020import org.kuali.rice.krad.uif.view.View;
021import java.util.List;
022
023/**
024 * Indicates <code>Control</code> types that can hold more than one value for selection
025 *
026 * @author Kuali Rice Team (rice.collab@kuali.org)
027 */
028public interface MultiValueControl {
029
030    /**
031     * <code>List</code> of values the control can accept. Each value consists
032     * of a key and a label. The key is the what will be submitted back if the
033     * user selects the choice, the label is what will be displayed to the user
034     * for the choice.
035     * <p>
036     * <code>KeyLabelPair</code> instances are usually generated by the
037     * <code>KeyValueFinder</code> associated with the <code>Field</code> for
038     * which the control belongs
039     * </p>
040     *
041     * @return List of KeyLabelPair instances
042     */
043    public List<KeyValue> getOptions();
044
045    /**
046     * Sets the List of <code>KeyValue</code> pairs that make up the options for the control
047     *
048     * @param options
049     */
050    public void setOptions(List<KeyValue> options);
051
052    /**
053     * Gets the richOptions which contain Message objects with the translated rich message structures, which then can
054     * be used by templates to output the appropriate content.
055     *
056     * @return richOptions which include a message object with the translated value content
057     */
058    public List<KeyMessage> getRichOptions();
059}