package edu.neu.ccs.demeter.aplib; import java.util.Collection; /** * A traversal strategy: a high-level, generic description of a set of * paths through a family of class graphs. */ public interface StrategyI { boolean isSimpleStrategy(); SimpleStrategyI toSimpleStrategy(); boolean isStrategyCombination(); StrategyCombinationI toStrategyCombination(); }