1. /*
  2. * @(#)Node.java 1.3 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.impl.orbutil.graph ;
  8. import java.util.Set ;
  9. /** Node in a graph.
  10. */
  11. public interface Node
  12. {
  13. /** Get all the children of this node.
  14. */
  15. Set /* Set<Node> */ getChildren() ;
  16. }