2fc86f89b3
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@336 542714f4-19e9-0310-aa3c-eee0fc999fb1
25 lines
720 B
Java
25 lines
720 B
Java
//
|
|
// $Id: LayoutManager.java,v 1.2 2001/09/13 19:08:30 mdb Exp $
|
|
|
|
package com.threerings.nodemap;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* The layout manager class provides an interface that lays out nodes
|
|
* in a node map via some preordained desirable methodology.
|
|
*/
|
|
public interface LayoutManager
|
|
{
|
|
/**
|
|
* Lay out the nodes in the list in the fashion dictated by this
|
|
* particular layout manager. The node positions are updated via
|
|
* {@link Node#setLocation} such that subsequent rendering of the
|
|
* nodes will place them in appropriate positions.
|
|
*
|
|
* @param root the root node for the graph.
|
|
* @param nodes the list of nodes.
|
|
*/
|
|
public void layout (Node root, List nodes);
|
|
}
|