1 /** 2 * Copyright 2004-2014 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.kpme.tklm.api.time.timesummary; 17 18 import java.math.BigDecimal; 19 20 21 22 /** 23 * <p>AssignmentColumnContract interface</p> 24 * 25 */ 26 public interface AssignmentColumnContract { 27 28 /** 29 * The cssClass associated with the AssignmentColumn 30 * 31 * <p> 32 * cssClass for an AssignmentColumn 33 * <p> 34 * 35 * @return cssClass for AssignmentColumn 36 */ 37 public String getCssClass(); 38 39 /** 40 * The amount associated with the AssignmentColumn 41 * 42 * <p> 43 * amount for an AssignmentColumn 44 * <p> 45 * 46 * @return amount for AssignmentColumn 47 */ 48 public BigDecimal getAmount(); 49 50 /** 51 * The total associated with the AssignmentColumn 52 * 53 * <p> 54 * total for an AssignmentColumn 55 * <p> 56 * 57 * @return total for AssignmentColumn 58 */ 59 public BigDecimal getTotal(); 60 61 /** 62 * The weeklyTotal flag of the AssignmentColumn 63 * 64 * <p> 65 * weeklyTotal flag of an AssignmentColumn 66 * <p> 67 * 68 * @return weeklyTotal for AssignmentColumn 69 */ 70 public boolean isWeeklyTotal(); 71 72 }