throws ParseException {
String module = null;
ArrayList groups = null;
ArrayList vars = new ArrayList();
Node child;
for (int i = 0; i < node.getChildCount(); i++) {
child = node.getChildAt(i);
switch (child.getId()) {
case Asn1Constants.SNMP_MODULE_IMPORT:
module = getStringValue(child, 0);
popContext();
break;
case Asn1Constants.VALUE_LIST:
groups = child.getAllValues();
break;
case Asn1Constants.SNMP_VARIATION_PART:
vars.add(getValue(child, 0));
break;
}