package org.openlca.ecospold; import java.util.List; import org.w3c.dom.Element; public interface IFlowData { /** * Gets the value of the exchange property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the exchange property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExchange().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link IExchange } * * */ public abstract List<IExchange> getExchange(); /** * Gets the value of the allocation property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the allocation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAllocation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link IAllocation } * * */ public abstract List<IAllocation> getAllocation(); /** * Gets the value of the any property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the any property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAny().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * {@link Element } * * */ public abstract List<Object> getAny(); }