1 /** 2 * Copyright 2005-2015 The Kuali Foundation 3 * 4 * Licensed under the Educational Community License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.opensource.org/licenses/ecl2.php 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.kuali.rice.kns.question; 17 18 import java.util.ArrayList; 19 20 /** 21 * This interface defines methods that are required to support c Confirmation Question. 22 * 23 * @deprecated Only used in KNS classes, use KRAD. 24 */ 25 @Deprecated 26 public interface Question { 27 /** 28 * returns the index associated with a specified button 29 * 30 * @param btnText the text of the button 31 * @return the index of this button 32 */ 33 public String getButtonIndex(String btnText); 34 35 /** 36 * @return Returns the buttons. 37 */ 38 public abstract ArrayList getButtons(); 39 40 /** 41 * @param buttons The buttons to set. 42 */ 43 public abstract void setButtons(ArrayList buttons); 44 45 /** 46 * @return Returns the question. 47 */ 48 public abstract String getQuestion(); 49 50 /** 51 * @param question The question to set. 52 */ 53 public abstract void setQuestion(String question); 54 }