Java Code Examples for sun.swing.SwingUtilities2.RepaintListener#repaintPerformed()

The following examples show how to use sun.swing.SwingUtilities2.RepaintListener#repaintPerformed() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RepaintManager.java    From jdk1.8-source-analysis with Apache License 2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 2
Source File: RepaintManager.java    From dragonwell8_jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 3
Source File: RepaintManager.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 4
Source File: RepaintManager.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 5
Source File: RepaintManager.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 6
Source File: RepaintManager.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 7
Source File: RepaintManager.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 8
Source File: RepaintManager.java    From Bytecoder with Apache License 2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 9
Source File: RepaintManager.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 10
Source File: RepaintManager.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 11
Source File: RepaintManager.java    From Java8CN with Apache License 2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 12
Source File: RepaintManager.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 13
Source File: RepaintManager.java    From jdk8u_jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 14
Source File: RepaintManager.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}
 
Example 15
Source File: RepaintManager.java    From jdk8u-dev-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Notify the attached repaint listeners that an area of the {@code c} component
 * has been immediately repainted, that is without scheduling a repaint runnable,
 * due to performing a "blit" (via calling the {@code copyArea} method).
 *
 * @param c the component
 * @param x the x coordinate of the area
 * @param y the y coordinate of the area
 * @param w the width of the area
 * @param h the height of the area
 */
void notifyRepaintPerformed(JComponent c, int x, int y, int w, int h) {
    for (RepaintListener l : repaintListeners) {
        l.repaintPerformed(c, x, y, w, h);
    }
}