package lexicon;

public class VerbRule {

	String suffix;
	String morphAnalysis;
	String constraint;
	
	public VerbRule(String suffix, String morphAnalysis, String constraint) {
		this.suffix = suffix;
		this.morphAnalysis = morphAnalysis;
		this.constraint = constraint;
	}

	public VerbRule() {		
		// TODO Auto-generated constructor stub
		this.suffix = "";
		this.morphAnalysis = "";
		this.constraint = "";
	}
	
}
