gate.composite.CombiningMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alignment Show documentation
Show all versions of alignment Show documentation
A selection of tools for processing parallel texts.
The newest version!
package gate.composite;
import java.io.Serializable;
import java.util.Map;
import gate.compound.CompoundDocument;
/**
* This interface declares a method that needs to be implemented by the
* implementors of this interface. The purpose is to allow users to combine
* various documents into a single document called Composite document.
*
* @author niraj
*/
public interface CombiningMethod extends Serializable {
/**
* This method takes an instance of compound document and after creating
* an instance of a composite document based on the provided parameters returns
* it.
*/
public CompositeDocument combine(CompoundDocument compoundDocument,
Map parameters) throws CombiningMethodException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy