}
@Override
public void processConstantPoolInfo(IterationContext ic, ConstantPoolInfo cpi) {
if(cpi.getType() == ConstantPoolInfo.CLASS) {
ClassInfo ci = (ClassInfo)cpi;
JavaType jt = new JavaType(ci.getName());
String newClassName = this.advisor.newClassNameFor(jt.getType());
if(newClassName != null) {
this.oldClassNames.put(newClassName, jt.getType());
Undoable u = new ModifyClassInfoAction(ic.getCf().getPool(), ci, newClassName + jt.getDimensions());
if (this.batchMode) {