Example #1
0
 public void repaint(Rectangle dirtyBounds) {
   if (panel != null && panel.getRoot() != null) {
     Point location = panel.getAbsoluteLocation();
     dirtyBounds.translate(location.x, location.y);
     panel.getRoot().addDirtyRegion(dirtyBounds);
   }
 }
Example #2
0
 public void repaint() {
   if (panel != null && panel.getRoot() != null)
     panel.getRoot().addDirtyRegion(panel.getAbsoluteBounds());
 }