byucc.jhdl.synth.graph
Interface SubsetSelector


public interface SubsetSelector

An interface for separating Objects into two classes, those that belong to a particular subset and those that do not.

The SubsetSelector interface has a single method, contains, which accepts an Object as a parameter. The contains method returns true if the Object belongs to the subset defined by the selector and false if it does not.


Method Summary
 boolean contains(java.lang.Object elt)
          Does the given object belong to the subset defined by this SubsetSelector?
 

Method Detail

contains

public boolean contains(java.lang.Object elt)
Does the given object belong to the subset defined by this SubsetSelector?

Returns:
true if the Object belongs to the subset, false otherwise.


Copyright ? 2006 Brigham Young University, Configurable Computing Laboratory. All Rights Reserved.