It extends {@link java.util.ArrayList}.
It is a list of doublets where each doublet corresponds to a constraint on the tree.
137138139140141142143144145146147
else { curLemma = new Lemma(value.trim()); curContext = new InstantiationContext(); Equations equations = new Equations(); String eq = attributes.getValue("eq"); if (eq != null) equations = Equations.readEquations(eq); String coanchorsVal = attributes.getValue("coanchors");
114115116117118119120121122123124
* Returns all equations of this pattern without coselection equations. * @return equations */ public Equations getEquations() { Equations ret = new Equations(); for(SelectionTemplate template : templates) if (!template.isCoselection()) ret.addAll(template.getEquations()); return ret; }