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

it.unipi.di.acube.batframework.data.MultipleAnnotation Maven / Gradle / Ivy

The newest version!
package it.unipi.di.acube.batframework.data;

public class MultipleAnnotation extends Mention {
	private static final long serialVersionUID = 1L;
	
	private int[] candidates;
	
	public MultipleAnnotation(int position, int length, int[] candidates){
		super(position, length);
		this.candidates = candidates;
	}
	
	public int[] getCandidates(){
		return candidates;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy