コード例 #1
0
ファイル: RadioButton.java プロジェクト: trptcolin/limelight
 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);
   }
 }
コード例 #2
0
ファイル: RadioButton.java プロジェクト: trptcolin/limelight
 public void repaint() {
   if (panel != null && panel.getRoot() != null)
     panel.getRoot().addDirtyRegion(panel.getAbsoluteBounds());
 }