package at.gv.egovernment.moa.spss.api.impl; import org.w3c.dom.NodeList; import at.gv.egovernment.moa.spss.api.xmlverify.ReferencesCheckResultInfo; /** * Default implementation of ReferencesCheckResultInfo. * * @author Patrick Peck * @version $Id$ */ public class ReferencesCheckResultInfoImpl implements ReferencesCheckResultInfo { /** Additional information about the references check. */ private NodeList anyOtherInfo; /** The indexes of the failed references. */ private int[] failedReferences = new int[0]; /** * Sets additional information about the references check. * @param anyOtherInfo Additional information about the references check. */ public void setAnyOtherInfo(NodeList anyOtherInfo) { this.anyOtherInfo = anyOtherInfo; } public NodeList getAnyOtherInfo() { return anyOtherInfo; } /** * Sets the indexes of the failed references. * * @param failedReferences The indexes of the failed references. */ public void setFailedReferences(int[] failedReferences) { this.failedReferences = failedReferences; } public int[] getFailedReferences() { return failedReferences; } }