Java Code Examples for java.awt.image.ImageFilter#resendTopDownLeftRight()

The following examples show how to use java.awt.image.ImageFilter#resendTopDownLeftRight() . 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: FilteredImageSource.java    From jdk8u-jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 2
Source File: FilteredImageSource.java    From jdk8u-dev-jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 3
Source File: FilteredImageSource.java    From jdk-1.7-annotated with Apache License 2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 4
Source File: FilteredImageSource.java    From jdk8u-jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 5
Source File: FilteredImageSource.java    From jdk8u_jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public synchronized void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 6
Source File: FilteredImageSource.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 7
Source File: FilteredImageSource.java    From openjdk-8-source with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 8
Source File: FilteredImageSource.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 9
Source File: FilteredImageSource.java    From Java8CN with Apache License 2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 10
Source File: FilteredImageSource.java    From jdk1.8-source-analysis with Apache License 2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 11
Source File: FilteredImageSource.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the {@code ImageProducer} interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 12
Source File: FilteredImageSource.java    From Bytecoder with Apache License 2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the {@code ImageProducer} interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public synchronized void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 13
Source File: FilteredImageSource.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 14
Source File: FilteredImageSource.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public synchronized void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 15
Source File: FilteredImageSource.java    From JDKSourceCode1.8 with MIT License 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public synchronized void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 16
Source File: FilteredImageSource.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 17
Source File: FilteredImageSource.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public synchronized void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}
 
Example 18
Source File: FilteredImageSource.java    From dragonwell8_jdk with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Requests that a given ImageConsumer have the image data delivered
 * one more time in top-down, left-right order.  The request is
 * handed to the ImageFilter for further processing, since the
 * ability to preserve the pixel ordering depends on the filter.
 *
 * <p>
 * This method is public as a side effect
 * of this class implementing
 * the <code>ImageProducer</code> interface.
 * It should not be called from user code,
 * and its behavior if called from user code is unspecified.
 *
 * @see ImageConsumer
 */
public synchronized void requestTopDownLeftRightResend(ImageConsumer ic) {
    if (proxies != null) {
        ImageFilter imgf = (ImageFilter) proxies.get(ic);
        if (imgf != null) {
            imgf.resendTopDownLeftRight(src);
        }
    }
}