
it.unitn.disi.smatch.renderers.mapping.IMappingRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s-match Show documentation
Show all versions of s-match Show documentation
A version of S-Match semantic matching framework for Open Data
The newest version!
package it.unitn.disi.smatch.renderers.mapping;
import it.unitn.disi.common.components.IConfigurable;
import it.unitn.disi.smatch.data.mappings.IContextMapping;
import it.unitn.disi.smatch.data.trees.INode;
import it.unitn.disi.smatch.loaders.ILoader;
/**
* An interface for mapping renderers.
*
* @author Aliaksandr Autayeu
*/
public interface IMappingRenderer extends IConfigurable {
/**
* Saves the mapping into a file.
*
* @param mapping a mapping to render
* @param outputFile an output file or DB connection
* @throws MappingRendererException MappingRendererException
*/
void render(IContextMapping mapping, String outputFile) throws MappingRendererException;
/**
* Returns the description of the format.
*
* @return the description of the format
*/
String getDescription();
/**
* Returns the type of the renderer.
*
* @return the type of the renderer
*/
ILoader.LoaderType getType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy