package at.gv.egovernment.moa.spss.api.xmlverify; import java.io.InputStream; /** * Encapsulates a binary transform parameter. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface TransformParameterBinary extends TransformParameter { /** * Gets the binary transform parameter. * * @return An InputStream from which the binary content can * be read. */ public InputStream getBinaryContent(); }