edu.cmu.sv.domain.OntologyRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoda Show documentation
Show all versions of yoda Show documentation
A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).
package edu.cmu.sv.domain;
import edu.cmu.sv.domain.ontology.*;
import java.util.Set;
/**
* Created by David Cohen on 3/3/15.
*/
public interface OntologyRegistry {
public Set getVerbs();
public Set getRoles();
public Set getNouns();
public Set getQualities();
public Set getQualityDegrees();
}