2c2 < * @(#)CompositeFigure.java 5.1 --- > * @(#)CompositeFigure.java 5.2 44,46c44,45 < protected int _nLowestZ = 0; < protected int _nHighestZ = 0; < --- > protected int _nLowestZ; > protected int _nHighestZ; 49a49,50 > _nLowestZ = 0; > _nHighestZ = 0; 53c54 < * Adds a figure to the list of figures. Initializes --- > * Adds a figure to the list of figures. Initializes the 95c96 < while (k.hasMoreElements()) --- > while (k.hasMoreElements()) { 97a99 > } 110,112c112,113 < if (_theQuadTree != null) { < _theQuadTree.clear(); < } --- > > _clearQuadTree(); 131c132 < * @see orphan --- > * @see #orphan 250,251d250 < < 391c390 < * @see moveBy --- > * @see #moveBy 480,490d478 < < /** < * Invalidates the figure. This method informs the listeners < * that the figure's current display box is invalid and should be < * refreshed. < */ < public void invalidate() { < super.invalidate(); < } < < 503d490 < 513,514d499 < < 516d500 < 523d506 < 525d507 < 532,533c514,518 < < --- > private void _clearQuadTree() { > if (_theQuadTree != null) { > _theQuadTree.clear(); > } > }