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