harpoon.IR.Quads
Interface HANDLER.ProtectedSet

Enclosing interface:
HANDLER

public static interface HANDLER.ProtectedSet

An interface to specify which Quads a particular HANDLER protects.


Method Summary
 void insert(Quad q)
          Add a quad into the protected set.
 boolean isProtected(Quad q)
          Determines whether the specified Quad is a member of the protected set.
 Iterator iterator()
          Iterate through all the elements of the protected set.
 void remove(Quad q)
          Remove a quad from the protected set.
 int size()
          Return the number of protected quads in the set.
 

Method Detail

isProtected

public boolean isProtected(Quad q)
Determines whether the specified Quad is a member of the protected set.


iterator

public Iterator iterator()
Iterate through all the elements of the protected set.


size

public int size()
Return the number of protected quads in the set.


remove

public void remove(Quad q)
Remove a quad from the protected set.


insert

public void insert(Quad q)
Add a quad into the protected set.