001    /**
002     * Copyright 2004-2013 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     */
016    package org.kuali.hr.time.timesummary;
017    
018    import java.io.Serializable;
019    import java.math.BigDecimal;
020    
021    public class AssignmentColumn implements Serializable {
022    
023            private static final long serialVersionUID = 879042466570649820L;
024            
025            private String cssClass;
026            private BigDecimal amount = BigDecimal.ZERO;
027            private BigDecimal total = BigDecimal.ZERO;
028            private boolean weeklyTotal;
029            
030            public String getCssClass() {
031                    return cssClass;
032            }
033            
034            public void setCssClass(String cssClass) {
035                    this.cssClass = cssClass;
036            }
037            
038            public BigDecimal getAmount() {
039                    return amount;
040            }
041            
042            public void setAmount(BigDecimal amount) {
043                    this.amount = amount;
044            }
045            
046            public BigDecimal getTotal() {
047                    return total;
048            }
049            
050            public void setTotal(BigDecimal total) {
051                    this.total = total;
052            }
053    
054            public boolean isWeeklyTotal() {
055                    return weeklyTotal;
056            }
057    
058            public void setWeeklyTotal(boolean weeklyTotal) {
059                    this.weeklyTotal = weeklyTotal;
060            }
061    
062    }