/*
* Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.imageio.spi;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
/**
* A node in a directed graph. In addition to an arbitrary
* Object
containing user data associated with the node,
* each node maintains a Set
s of nodes which are pointed
* to by the current node (available from getOutNodes
).
* The in-degree of the node (that is, number of nodes that point to
* the current node) may be queried.
*
*/
class DigraphNode implements Cloneable, Serializable {
/** The data associated with this node. */
protected Object data;
/**
* A Set
of neighboring nodes pointed to by this
* node.
*/
protected Set outNodes = new HashSet();
/** The in-degree of the node. */
protected int inDegree = 0;
/**
* A Set
of neighboring nodes that point to this
* node.
*/
private Set inNodes = new HashSet();
public DigraphNode(Object data) {
this.data = data;
}
/** Returns the Object
referenced by this node. */
public Object getData() {
return data;
}
/**
* Returns an Iterator
containing the nodes pointed
* to by this node.
*/
public Iterator getOutNodes() {
return outNodes.iterator();
}
/**
* Adds a directed edge to the graph. The outNodes list of this
* node is updated and the in-degree of the other node is incremented.
*
* @param node a DigraphNode
.
*
* @return true
if the node was not previously the
* target of an edge.
*/
public boolean addEdge(DigraphNode node) {
if (outNodes.contains(node)) {
return false;
}
outNodes.add(node);
node.inNodes.add(this);
node.incrementInDegree();
return true;
}
/**
* Returns true
if an edge exists between this node
* and the given node.
*
* @param node a DigraphNode
.
*
* @return true
if the node is the target of an edge.
*/
public boolean hasEdge(DigraphNode node) {
return outNodes.contains(node);
}
/**
* Removes a directed edge from the graph. The outNodes list of this
* node is updated and the in-degree of the other node is decremented.
*
* @return true
if the node was previously the target
* of an edge.
*/
public boolean removeEdge(DigraphNode node) {
if (!outNodes.contains(node)) {
return false;
}
outNodes.remove(node);
node.inNodes.remove(this);
node.decrementInDegree();
return true;
}
/**
* Removes this node from the graph, updating neighboring nodes
* appropriately.
*/
public void dispose() {
Object[] inNodesArray = inNodes.toArray();
for(int i=0; i