harpoon.IR.Quads
Interface HANDLER.ProtectedSet

Enclosing class:
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<Quad> 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

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


iterator

Iterator<Quad> iterator()
Iterate through all the elements of the protected set.


size

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


remove

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


insert

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