tweak comments

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3652 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-06-12 14:16:29 +00:00
parent 06d6ff8c8f
commit c004352dd9
2 changed files with 3 additions and 10 deletions

View File

@ -15,16 +15,12 @@ import com.ibm.wala.ipa.callgraph.propagation.InstanceKey;
import com.ibm.wala.ipa.callgraph.propagation.PointerKey;
/**
* An extension of a heap model that returns a {@link PointerKey}
* to represent an array length field
* An extension of a heap model that returns a {@link PointerKey} to represent an array length field
*/
public interface ExtendedHeapModel extends HeapModel {
/**
*
* @param I
* an InstanceKey representing an abstract array
* @return the PointerKey that acts as a representation for the arraylength
* field of this abstract array
* @param I an InstanceKey representing an abstract array
* @return the PointerKey that acts as a representation for the arraylength field of this abstract array
*/
PointerKey getPointerKeyForArrayLength(InstanceKey I);
}

View File

@ -45,9 +45,6 @@ import com.ibm.wala.util.intset.OrdinalSet;
*
* For each call graph node, what heap locations (as determined by a heap model) may it read or write, including it's callees
* transitively
*
* @author sjfink
*
*/
public class ModRef {