![JAR search and dependency download from the Maven repository](/logo.png)
org.kuali.ole.pojo.edi.MonetarySummary Maven / Gradle / Ivy
package org.kuali.ole.pojo.edi;
import java.util.ArrayList;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: palanivel
* Date: 7/26/13
* Time: 4:58 PM
* To change this template use File | Settings | File Templates.
*/
public class MonetarySummary {
private List monetarySummaryInformation = new ArrayList<>();
public void addMonetarySummaryInformation(MonetarySummaryInformation monetarySummaryInformation) {
if (!this.monetarySummaryInformation.contains(monetarySummaryInformation)) {
this.monetarySummaryInformation.add(monetarySummaryInformation);
}
}
public List getMonetarySummaryInformation() {
return monetarySummaryInformation;
}
public void setMonetarySummaryInformation(List monetarySummaryInformation) {
this.monetarySummaryInformation = monetarySummaryInformation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy