All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.uniroma2.art.coda.interfaces.CODAExtensionInterface Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package it.uniroma2.art.coda.interfaces;

import java.util.Map;

import it.uniroma2.art.coda.exception.parserexception.PRParserException;
import it.uniroma2.art.coda.pearl.model.ConverterMention;

/**
 * This abstract class is the general Extension used in CODA
 * @author Andrea Turbati
 *
 */
public abstract class CODAExtensionInterface{

	protected String id;
	
	protected String description;	
	
	public CODAExtensionInterface(String id, String description){
		this.id = id;
		this.description = description;
	
	}
	
	/**
	 * This method return the id of the module
	 * @return the id of the module
	 */
	public String getId(){
		return id;
	}
	
	/**
	 * Set the description of the module
	 * @param description the description of the module
	 */
	public void setDescription(String description){
		this.description = description;
	}
	
	/**
	 * Get the description of the module
	 * @return the description of the module
	 */
	public String getDescription(){
		return description;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy