|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectdiva.graph.tutorial.PrepopulatedTutorial
public class PrepopulatedTutorial
This example shows three alternatives to display a prepopulated graph model in a window. Prepopulated means that there are already nodes in the model before the model was placed in a GraphPane. There was a problem in the initial release which made this break. That problem has been fixed and it will just work now, except for one little gotcha, which is if you set the model while the window is closed, the GraphPane thinks its size is 0x0, so the nodes all get layed out in the upper-left corner of the canvas. The way to fix this is to either set the model once the window is open, or explicitly call a global layout once the window has been opened. More comments below in the individual methods.
Method Summary | |
---|---|
void |
bogusLayout(MutableGraphModel model,
AppContext context)
This is the first thing you'd probably think of, but this happens to be bogus, because the layout is applied to the nodes before the window is showing, meaning that the nodes are layed out in a 0x0 frame, and are all clustered in the upper-left corner. |
void |
layoutPostDisplay(MutableGraphModel model,
AppContext context)
In this version you construct the graph widget with the model, and apply a layout to the graph once the window is showing. |
static void |
main(String[] argv)
|
void |
setModelPostDisplay(MutableGraphModel model,
AppContext context)
In this version you construct the graph widget with the default constructor (giving it an empty graph), and then set the model once the window is showing. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static void main(String[] argv)
public void bogusLayout(MutableGraphModel model, AppContext context)
public void layoutPostDisplay(MutableGraphModel model, AppContext context)
public void setModelPostDisplay(MutableGraphModel model, AppContext context)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |