< prev index next >

src/java.desktop/share/classes/javax/swing/RepaintManager.java

Print this page

        

@@ -406,10 +406,11 @@
      * If <i>c</i> already has a dirty region, the rectangle <i>(x,y,w,h)</i>
      * will be unioned with the region that should be redrawn.
      *
      * @see JComponent#repaint
      */
+    @SuppressWarnings("deprecation")
     private void addDirtyRegion0(Container c, int x, int y, int w, int h) {
         /* Special cases we don't have to bother with.
          */
         if ((w <= 0) || (h <= 0) || (c == null)) {
             return;

@@ -519,14 +520,16 @@
      * @param w Width of the region to repaint
      * @param h Height of the region to repaint
      * @see JApplet#repaint
      * @since 1.6
      */
+    @SuppressWarnings("deprecation")
     public void addDirtyRegion(Applet applet, int x, int y, int w, int h) {
         addDirtyRegion0(applet, x, y, w, h);
     }
 
+    @SuppressWarnings("deprecation")
     void scheduleHeavyWeightPaints() {
         Map<Container,Rectangle> hws;
 
         synchronized(this) {
             if (hwDirtyComponents.size() == 0) {
< prev index next >