// If we get to an object creation, then try
// to figure out where the variable is stored into a field.
Iterator pairs = localUses.getUsesOf(stmt).iterator();
while (pairs.hasNext()) {
UnitValueBoxPair pair = (UnitValueBoxPair) pairs.next();
System.out.println("iat unit = " + pair.getUnit());
if (pair.getUnit() instanceof DefinitionStmt) {
DefinitionStmt useStmt = (DefinitionStmt) pair
.getUnit();
if (useStmt.getLeftOp() instanceof FieldRef) {
SootField field = ((FieldRef) useStmt.getLeftOp())
.getField();