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

org.kuali.ole.pojo.edi.ControlInfomation 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: 5:52 PM
 * To change this template use File | Settings | File Templates.
 */
public class ControlInfomation {
    // private Control control;
    private List control = new ArrayList();

    public void addControlField(Control control) {
        if (!this.control.contains(control)) {
            this.control.add(control);
        }
    }

    public List getControl() {
        return control;
    }

    public void setControl(List control) {
        this.control = control;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy