src/share/classes/java/awt/peer/ComponentPeer.java

Print this page

        

@@ -455,22 +455,18 @@
      *
      * @param numBuffers the number of buffers to create
      * @param caps the buffer capabilities
      *
      * @throws AWTException if flip buffering is not supported
-     *
-     * @see Component.FlipBufferStrategy#createBuffers
      */
     void createBuffers(int numBuffers, BufferCapabilities caps)
          throws AWTException;
 
     /**
      * Returns the back buffer as image.
      *
      * @return the back buffer as image
-     *
-     * @see Component.FlipBufferStrategy#getBackBuffer
      */
     Image getBackBuffer();
 
     /**
      * Move the back buffer to the front buffer.

@@ -478,19 +474,15 @@
      * @param x1 the area to be flipped, upper left X coordinate
      * @param y1 the area to be flipped, upper left Y coordinate
      * @param x2 the area to be flipped, lower right X coordinate
      * @param y2 the area to be flipped, lower right Y coordinate
      * @param flipAction the flip action to perform
-     *
-     * @see Component.FlipBufferStrategy#flip
      */
     void flip(int x1, int y1, int x2, int y2, BufferCapabilities.FlipContents flipAction);
 
     /**
      * Destroys all created buffers.
-     *
-     * @see Component.FlipBufferStrategy#destroyBuffers
      */
     void destroyBuffers();
 
     /**
      * Reparents this peer to the new parent referenced by