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.kns.question; 017 018import java.util.ArrayList; 019 020/** 021 * This class is a base class to implement questions types. 022 * 023 * 024 * "confirmation questions") rather than specific questions. 025 * 026 * @deprecated Only used in KNS classes, use KRAD. 027 */ 028@Deprecated 029public class QuestionBase implements Question { 030 String question; 031 ArrayList buttons; 032 033 /** 034 * default constructor 035 * 036 * @param question the question to assign to this question prompt 037 * @param buttons the buttons associated with it 038 */ 039 public QuestionBase(String question, ArrayList buttons) { 040 this.question = question; 041 this.buttons = buttons; 042 } 043 044 /** 045 * returns the index associated with a specified button 046 * 047 * @param btnText the text of the button 048 * @return the index of this button 049 */ 050 public String getButtonIndex(String btnText) { 051 return "" + buttons.indexOf(btnText); 052 } 053 054 /** 055 * @return Returns the buttons. 056 */ 057 public ArrayList getButtons() { 058 return buttons; 059 } 060 061 /** 062 * @param buttons The buttons to set. 063 */ 064 public void setButtons(ArrayList buttons) { 065 this.buttons = buttons; 066 } 067 068 /** 069 * @return Returns the question. 070 */ 071 public String getQuestion() { 072 return question; 073 } 074 075 /** 076 * @param question The question to set. 077 */ 078 public void setQuestion(String question) { 079 this.question = question; 080 } 081}