![JAR search and dependency download from the Maven repository](/logo.png)
it.unipi.di.acube.batframework.data.MultipleAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bat-framework Show documentation
Show all versions of bat-framework Show documentation
A framework to compare entity annotation systems.
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