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

justhalf.nlp.reader.acereader.ACEObject Maven / Gradle / Ivy

package justhalf.nlp.reader.acereader;

import java.util.List;

public abstract class ACEObject {
	
	public String id;
	
	public ACEObject(String id){
		this.id = id;
	}
	
	public abstract > List mentions();
	public abstract  T type();
	public abstract  T subtype();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy