| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ResultScale |
|
| 1.0;1 |
| 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.KeyEntity; | |
| 19 | import org.kuali.student.r2.common.infc.HasEffectiveDates; | |
| 20 | import java.util.List; | |
| 21 | ||
| 22 | /** | |
| 23 | * The Result Scale defines a set of valid ResultValues. A ResultScale | |
| 24 | * may describe a set of ResultValue entities or describe a numeric | |
| 25 | * range, but not both. Numeric Ranges are specified using the | |
| 26 | * ResultValueRange. The valid ResultValues are available through the | |
| 27 | * service method getResultValuesForScale(). | |
| 28 | */ | |
| 29 | ||
| 30 | public interface ResultScale extends KeyEntity, HasEffectiveDates { | |
| 31 | ||
| 32 | /** | |
| 33 | * The range contained within this result value group. This is | |
| 34 | * optional and might not be present for some Result Components | |
| 35 | * | |
| 36 | * @name Result Value Range | |
| 37 | */ | |
| 38 | public ResultValueRange getResultValueRange(); | |
| 39 | } |