Uses of Interface
soot.SootFieldRef

Packages that use SootFieldRef
soot Base Soot classes, shared by different intermediate representations. 
soot.baf Public classes for the Baf intermediate representation. 
soot.baf.internal Internal, messy, implementation-specific classes for the Baf intermediate representation. 
soot.dava   
soot.dava.internal.javaRep   
soot.grimp Public classes for the Grimp intermediate representation. 
soot.grimp.internal Internal, messy, implementation-specific classes for the Grimp intermediate representation. 
soot.jimple Public classes for the Jimple intermediate representation. 
soot.jimple.internal Internal, messy, implementation-specific classes for the Jimple intermediate representation. 
 

Uses of SootFieldRef in soot
 

Methods in soot that return SootFieldRef
 SootFieldRef Scene.makeFieldRef(SootClass declaringClass, String name, Type type, boolean isStatic)
          Create an unresolved reference to a field.
 SootFieldRef SootField.makeRef()
           
 

Methods in soot with parameters of type SootFieldRef
abstract  void AbstractUnitPrinter.fieldRef(SootFieldRef f)
           
 void BriefUnitPrinter.fieldRef(SootFieldRef f)
           
abstract  void LabeledUnitPrinter.fieldRef(SootFieldRef f)
           
 void NormalUnitPrinter.fieldRef(SootFieldRef f)
           
 void UnitPrinter.fieldRef(SootFieldRef f)
           
 

Uses of SootFieldRef in soot.baf
 

Methods in soot.baf that return SootFieldRef
 SootFieldRef FieldArgInst.getFieldRef()
           
 

Methods in soot.baf with parameters of type SootFieldRef
 StaticGetInst Baf.newStaticGetInst(SootFieldRef fieldRef)
           
 StaticPutInst Baf.newStaticPutInst(SootFieldRef fieldRef)
           
 FieldGetInst Baf.newFieldGetInst(SootFieldRef fieldRef)
           
 FieldPutInst Baf.newFieldPutInst(SootFieldRef fieldRef)
           
 

Uses of SootFieldRef in soot.baf.internal
 

Methods in soot.baf.internal that return SootFieldRef
 SootFieldRef BFieldGetInst.getFieldRef()
           
 SootFieldRef BFieldPutInst.getFieldRef()
           
 SootFieldRef BStaticGetInst.getFieldRef()
           
 SootFieldRef BStaticPutInst.getFieldRef()
           
 

Constructors in soot.baf.internal with parameters of type SootFieldRef
BFieldGetInst(SootFieldRef fieldRef)
           
BFieldPutInst(SootFieldRef fieldRef)
           
BStaticGetInst(SootFieldRef fieldRef)
           
BStaticPutInst(SootFieldRef fieldRef)
           
 

Uses of SootFieldRef in soot.dava
 

Methods in soot.dava with parameters of type SootFieldRef
 void DavaUnitPrinter.fieldRef(SootFieldRef f)
           
 

Uses of SootFieldRef in soot.dava.internal.javaRep
 

Constructors in soot.dava.internal.javaRep with parameters of type SootFieldRef
DInstanceFieldRef(Value base, SootFieldRef fieldRef, HashSet thisLocals)
           
DStaticFieldRef(SootFieldRef fieldRef, String myClassName)
           
DStaticFieldRef(SootFieldRef fieldRef, boolean supressDeclaringClass)
           
 

Uses of SootFieldRef in soot.grimp
 

Methods in soot.grimp with parameters of type SootFieldRef
 StaticFieldRef Grimp.newStaticFieldRef(SootFieldRef f)
          Constructs a StaticFieldRef(SootFieldRef) grammar chunk.
 InstanceFieldRef Grimp.newInstanceFieldRef(Value base, SootFieldRef f)
          Constructs a InstanceFieldRef(Value, SootFieldRef) grammar chunk.
 

Uses of SootFieldRef in soot.grimp.internal
 

Constructors in soot.grimp.internal with parameters of type SootFieldRef
GInstanceFieldRef(Value base, SootFieldRef fieldRef)
           
 

Uses of SootFieldRef in soot.jimple
 

Fields in soot.jimple declared as SootFieldRef
protected  SootFieldRef StaticFieldRef.fieldRef
           
 

Methods in soot.jimple that return SootFieldRef
 SootFieldRef FieldRef.getFieldRef()
           
 SootFieldRef StaticFieldRef.getFieldRef()
           
 

Methods in soot.jimple with parameters of type SootFieldRef
 void FieldRef.setFieldRef(SootFieldRef sfr)
           
 StaticFieldRef Jimple.newStaticFieldRef(SootFieldRef f)
          Constructs a StaticFieldRef(SootFieldRef) grammar chunk.
 InstanceFieldRef Jimple.newInstanceFieldRef(Value base, SootFieldRef f)
          Constructs a InstanceFieldRef(Local, SootFieldRef) grammar chunk.
 void StaticFieldRef.setFieldRef(SootFieldRef fieldRef)
           
 

Constructors in soot.jimple with parameters of type SootFieldRef
StaticFieldRef(SootFieldRef fieldRef)
           
 

Uses of SootFieldRef in soot.jimple.internal
 

Fields in soot.jimple.internal declared as SootFieldRef
protected  SootFieldRef AbstractInstanceFieldRef.fieldRef
           
 

Methods in soot.jimple.internal that return SootFieldRef
 SootFieldRef AbstractInstanceFieldRef.getFieldRef()
           
 

Methods in soot.jimple.internal with parameters of type SootFieldRef
 void AbstractInstanceFieldRef.setFieldRef(SootFieldRef fieldRef)
           
 

Constructors in soot.jimple.internal with parameters of type SootFieldRef
AbstractInstanceFieldRef(ValueBox baseBox, SootFieldRef fieldRef)
           
JInstanceFieldRef(Value base, SootFieldRef fieldRef)