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 8 package com.sun.corba.se.impl.orbutil.graph ; 9 10 import java.util.Set ; 11 12 /** Node in a graph. 13 */ 14 public interface Node 15 { 16 /** Get all the children of this node. 17 */ 18 Set /* Set<Node> */ getChildren() ; 19 } 20