View Javadoc

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.time.timesummary;
17  
18  import java.io.Serializable;
19  import java.math.BigDecimal;
20  
21  import org.kuali.kpme.tklm.api.time.timesummary.AssignmentColumnContract;
22  
23  public class AssignmentColumn implements Serializable, AssignmentColumnContract {
24  
25  	private static final long serialVersionUID = 879042466570649820L;
26  	
27  	private String cssClass;
28  	private BigDecimal amount = BigDecimal.ZERO;
29  	private BigDecimal total = BigDecimal.ZERO;
30  	private boolean weeklyTotal;
31  	
32  	public String getCssClass() {
33  		return cssClass;
34  	}
35  	
36  	public void setCssClass(String cssClass) {
37  		this.cssClass = cssClass;
38  	}
39  	
40  	public BigDecimal getAmount() {
41  		return amount;
42  	}
43  	
44  	public void setAmount(BigDecimal amount) {
45  		this.amount = amount;
46  	}
47  	
48  	public BigDecimal getTotal() {
49  		return total;
50  	}
51  	
52  	public void setTotal(BigDecimal total) {
53  		this.total = total;
54  	}
55  
56  	public boolean isWeeklyTotal() {
57  		return weeklyTotal;
58  	}
59  
60  	public void setWeeklyTotal(boolean weeklyTotal) {
61  		this.weeklyTotal = weeklyTotal;
62  	}
63  
64  }