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

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

package justhalf.nlp.reader.acereader;

public class ACEEventArgumentSpec {
	
	public final String roleName;
	public final ACEEventArgumentType[] argTypes;

	public ACEEventArgumentSpec(String roleName, ACEEventArgumentType... argTypes) {
		this.roleName = roleName;
		this.argTypes = argTypes;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy