 /*______________________________________________________________________________
                                                       WWS Coding Team

    Strategy.java
      7/31/98

      Interface that tells a Traversal Visitor where to go next.
      
      Developed by:     David Wagstaff
                        Jeff Sabin

      Disclaimer:

            This program is an unpublished copyrighted work which is proprietary
            to Novell, Inc. and contains confidential information that is not
            to be reproduced or disclosed to any other person or entity without
            prior written consent from Novell, Inc. in each and every instance.

            WARNING:  Unauthorized reproduction of this program as well as
            unauthorized preparation of derivative works based upon the
            program or distribution of copies by sale, rental, lease or
            lending are violations of federal copyright laws and state trade
            secret laws, punishable by civil and criminal penalties.

______________________________________________________________________________*/

/**
  *
  * Interface that tells a Traversal Visitor where to go next.
  * 
  * @version 1.0 7/31/98
  * @author Jeff Sabin/David Wagstaff
  *
  */
interface Strategy
	{
	public abstract boolean hasMoreChildren(Object o);
	public abstract Object nextChild(Object o);
	}

