List<AgigaTypedDependency> agigaDeps = new ArrayList<AgigaTypedDependency>();
// Loop through the dep tags
AutoPilot basicDepRelAp = new AutoPilot(vn);
basicDepRelAp.selectElement(AgigaConstants.DEP);
while (basicDepRelAp.iterate()) {
// Read the type, governor, and dependent
String type = vn.toString(vn.getAttrVal(AgigaConstants.DEP_TYPE));
require (vn.toElement(VTDNav.FC, AgigaConstants.GOVERNOR));
int governorId = vn.parseInt(vn.getText());
require (vn.toElement(VTDNav.NS, AgigaConstants.DEPENDENT));