View Javadoc

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