495051525354555657
/** * @see edu.indiana.extreme.xbaya.graph.Node#getGUI() */ public synchronized NodeGUI getGUI() { if (this.gui == null) { this.gui = new DynamicNodeGUI(this); } return this.gui; }