All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kuali.ole.pojo.edi.QuantityInformation Maven / Gradle / Ivy

The newest version!
package org.kuali.ole.pojo.edi;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by IntelliJ IDEA.
 * User: palanivel
 * Date: 3/6/12
 * Time: 4:35 PM
 * To change this template use File | Settings | File Templates.
 */
public class QuantityInformation {
    private List qunatity = new ArrayList();

    public void addQuantity(Qunatity quantity) {
        if (!this.qunatity.contains(quantity)) {
            this.qunatity.add(quantity);
        }
    }

    public List getQunatity() {
        return qunatity;
    }

    public void setQunatity(List qunatity) {
        this.qunatity = qunatity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy