jist.swans
Class Rewriter.ModifyTypeInfo

java.lang.Object
  extended by jist.swans.Rewriter.ModifyTypeInfo
Enclosing class:
Rewriter

private static class Rewriter.ModifyTypeInfo
extends java.lang.Object

Used by ModifyTypeTraversal to guide modification.

Since:
SWANS1.0
Author:
Rimon Barr <barr+jist@cs.cornell.edu>

Field Summary
 boolean addJistPostInit
          whether to add a postinit call after constructor.
 java.lang.String newName
          name of replacement type.
 org.apache.bcel.generic.Type newType
          replacement type.
 java.lang.String oldName
          name of type to replace.
 org.apache.bcel.generic.Type oldType
          type to replace.
 
Constructor Summary
Rewriter.ModifyTypeInfo(java.lang.String oldName, java.lang.String newName, boolean addJistPostInit)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

oldName

public java.lang.String oldName
name of type to replace.


oldType

public org.apache.bcel.generic.Type oldType
type to replace.


newName

public java.lang.String newName
name of replacement type.


newType

public org.apache.bcel.generic.Type newType
replacement type.


addJistPostInit

public boolean addJistPostInit
whether to add a postinit call after constructor.

Constructor Detail

Rewriter.ModifyTypeInfo

public Rewriter.ModifyTypeInfo(java.lang.String oldName,
                               java.lang.String newName,
                               boolean addJistPostInit)