![JAR search and dependency download from the Maven repository](/logo.png)
org.daisy.pipeline.braille.common.XMLTransform Maven / Gradle / Ivy
package org.daisy.pipeline.braille.common;
import java.util.Map;
import javax.xml.namespace.QName;
import org.daisy.common.transform.InputValue;
import org.daisy.common.transform.StringWithNamespaceContext;
import org.daisy.common.transform.XMLInputValue;
import org.daisy.common.transform.XMLOutputValue;
import org.daisy.common.transform.XMLTransformer;
public interface XMLTransform extends Transform {
/**
* Should return a transformer with:
*
* - a "source" input port that accepts a sequence of XML documents ({@link
* XMLInputValue})
* - a "parameter" input port that accepts a map of parameter name/value pairs ({@link
* InputValue}{@code <}{@link Map}{@code <}{@link QName}{@code ,}{@link
* StringWithNamespaceContext}{@code >>})
* - a "result" output port that returns a sequence of XML documents ({@link
* XMLOutputValue})
*
*/
public XMLTransformer fromXmlToXml();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy