View Javadoc
1   package org.kuali.ole.pojo.edi;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: palanivel
9    * Date: 9/20/13
10   * Time: 6:33 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class AllowanceMonetaryDetail {
14  
15      private List<AllowanceMonetaryLineItemInformation> allowanceMonetaryLineItemInformation = new ArrayList<>();
16  
17  
18      public void addAllowanceMonetaryLineItemInformation(AllowanceMonetaryLineItemInformation allowanceMonetaryLineItemInformation) {
19          if (!this.allowanceMonetaryLineItemInformation.contains(allowanceMonetaryLineItemInformation)) {
20              this.allowanceMonetaryLineItemInformation.add(allowanceMonetaryLineItemInformation);
21          }
22      }
23  
24      public List<AllowanceMonetaryLineItemInformation> getAllowanceMonetaryLineItemInformation() {
25          return allowanceMonetaryLineItemInformation;
26      }
27  
28      public void setAllowanceMonetaryLineItemInformation(List<AllowanceMonetaryLineItemInformation> allowanceMonetaryLineItemInformation) {
29          this.allowanceMonetaryLineItemInformation = allowanceMonetaryLineItemInformation;
30      }
31  }