package syntaxLearner.corpus; /** * @author Omer Shapira * A context referring to the Vocabulary */ public class VocabularyContext extends Context { public VocabularyContext(int t1, int t2) { super(t1, t2); } }