|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--soot.toolkits.scalar.ArraySparseSet
Reference implementation for a FlowSet. Items are stored in an Array.
Constructor Summary | |
ArraySparseSet()
|
Method Summary | |
void |
add(java.lang.Object e)
|
void |
add(java.lang.Object obj,
FlowSet destFlow)
Adds obj to dest . |
void |
clear()
Sets this FlowSet to the empty set (more generally, the bottom element of the lattice.) |
java.lang.Object |
clone()
Clones the current FlowSet. |
boolean |
contains(java.lang.Object obj)
Returns true if this FlowSet contains obj . |
void |
copy(FlowSet destFlow)
Copies the current FlowSet into dest. |
void |
difference(FlowSet otherFlow,
FlowSet destFlow)
Returns the set difference (this join ~other) of this FlowSet and other , putting result into dest . |
boolean |
equals(java.lang.Object otherFlow)
|
void |
intersection(FlowSet otherFlow,
FlowSet destFlow)
Returns the intersection (meet) of this FlowSet and other , putting result into dest . |
boolean |
isEmpty()
Returns true if this FlowSet is the empty set. |
void |
remove(java.lang.Object obj,
FlowSet destFlow)
Removes obj from dest . |
int |
size()
Returns the size of the current FlowSet. |
java.util.List |
toList()
Returns a backed list of elements in this set. |
java.lang.String |
toString()
|
void |
union(FlowSet otherFlow,
FlowSet destFlow)
Returns the union (join) of this FlowSet and other , putting result into dest . |
Methods inherited from class java.lang.Object |
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public ArraySparseSet()
Method Detail |
public java.lang.Object clone()
FlowSet
clone
in interface FlowSet
clone
in class java.lang.Object
public void clear()
FlowSet
clear
in interface FlowSet
public int size()
FlowSet
size
in interface FlowSet
public boolean isEmpty()
FlowSet
isEmpty
in interface FlowSet
public java.util.List toList()
toList
in interface FlowSet
public void add(java.lang.Object e)
public void add(java.lang.Object obj, FlowSet destFlow)
FlowSet
obj
to dest
. (optional operation)add
in interface FlowSet
public void remove(java.lang.Object obj, FlowSet destFlow)
FlowSet
obj
from dest
. (optional operation)remove
in interface FlowSet
public void union(FlowSet otherFlow, FlowSet destFlow)
FlowSet
other
, putting result into dest
.union
in interface FlowSet
public void intersection(FlowSet otherFlow, FlowSet destFlow)
FlowSet
other
, putting result into dest
.intersection
in interface FlowSet
public void difference(FlowSet otherFlow, FlowSet destFlow)
FlowSet
other
, putting result into dest
.difference
in interface FlowSet
public boolean contains(java.lang.Object obj)
FlowSet
obj
. (optional operation)contains
in interface FlowSet
public boolean equals(java.lang.Object otherFlow)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public void copy(FlowSet destFlow)
FlowSet
copy
in interface FlowSet
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |