* Construct a new instance of graph demo, which does the work of
* setting up the graphs and displaying itself.
* @param argv Command line arguments, currently ignored.
*/
public static void main(String[] argv) {
AppContext context = new BasicFrame("Basic Graph Demo");
new BasicGraphDemo(context);
}