_portToInsideIndexArrayField.put(port, indexArrayField);
// Initialize the index fields.
for (Iterator methods = _modelClass.getMethods().iterator(); methods
.hasNext();) {
SootMethod method = (SootMethod) methods.next();
JimpleBody body = (JimpleBody) method.retrieveActiveBody();
Object insertPoint = body.getUnits().getLast();
// Insert code into all the init methods.
if (!method.getName().equals("<init>")) {
continue;
}
Local indexesLocal = Jimple.v().newLocal("indexes",
ArrayType.v(IntType.v(), 1));