1 /* 2 * Copyright 2007 The Kuali Foundation 3 * 4 * Licensed under the Educational Community License, Version 1.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/ecl1.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.student.r2.lum.lrc.infc; 17 18 import org.kuali.student.r2.common.infc.HasEffectiveDates; 19 import org.kuali.student.r2.common.infc.KeyEntity; 20 21 /** 22 * The Result Scale defines a set of valid ResultValues. A ResultScale 23 * may describe a set of ResultValue entities or describe a numeric 24 * range, but not both. Numeric Ranges are specified using the 25 * ResultValueRange. The valid ResultValues are available through the 26 * service method getResultValuesForScale(). 27 */ 28 29 public interface ResultScale extends KeyEntity, HasEffectiveDates { 30 31 /** 32 * The range contained within this result value group. This is 33 * optional and might not be present for some Result Components 34 * 35 * @name Result Value Range 36 */ 37 public ResultValueRange getResultValueRange(); 38 }