本文整理汇总了Java中javax.imageio.event.IIOReadUpdateListener.thumbnailPassComplete方法的典型用法代码示例。如果您正苦于以下问题:Java IIOReadUpdateListener.thumbnailPassComplete方法的具体用法?Java IIOReadUpdateListener.thumbnailPassComplete怎么用?Java IIOReadUpdateListener.thumbnailPassComplete使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.imageio.event.IIOReadUpdateListener
的用法示例。
在下文中一共展示了IIOReadUpdateListener.thumbnailPassComplete方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: processThumbnailPassComplete
import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
* Broadcasts the end of a thumbnail progressive pass to all
* registered <code>IIOReadUpdateListener</code>s by calling their
* <code>thumbnailPassComplete</code> method. Subclasses may use this
* method as a convenience.
*
* @param theThumbnail the <code>BufferedImage</code> thumbnail
* being updated.
*/
protected void processThumbnailPassComplete(BufferedImage theThumbnail) {
if (updateListeners == null) {
return;
}
int numListeners = updateListeners.size();
for (int i = 0; i < numListeners; i++) {
IIOReadUpdateListener listener =
(IIOReadUpdateListener)updateListeners.get(i);
listener.thumbnailPassComplete(this, theThumbnail);
}
}
示例2: processThumbnailPassComplete
import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
* Broadcasts the end of a thumbnail progressive pass to all
* registered {@code IIOReadUpdateListener}s by calling their
* {@code thumbnailPassComplete} method. Subclasses may use this
* method as a convenience.
*
* @param theThumbnail the {@code BufferedImage} thumbnail
* being updated.
*/
protected void processThumbnailPassComplete(BufferedImage theThumbnail) {
if (updateListeners == null) {
return;
}
int numListeners = updateListeners.size();
for (int i = 0; i < numListeners; i++) {
IIOReadUpdateListener listener =
updateListeners.get(i);
listener.thumbnailPassComplete(this, theThumbnail);
}
}
示例3: processThumbnailPassComplete
import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
* Notifies all installed update progress listeners, by calling
* their thumbnailPassComplete methods, that a progressive pass has
* completed on a thumbnail.
*
* @param thumbnail the thumbnail that has being updated
*/
protected void processThumbnailPassComplete(BufferedImage thumbnail)
{
if (updateListeners != null)
{
Iterator it = updateListeners.iterator();
while (it.hasNext())
{
IIOReadUpdateListener listener = (IIOReadUpdateListener) it.next();
listener.thumbnailPassComplete(this, thumbnail);
}
}
}
示例4: processThumbnailPassComplete
import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
* Notifies all installed update progress listeners, by calling
* their thumbnailPassComplete methods, that a progressive pass has
* completed on a thumbnail.
*
* @param thumbnail the thumbnail that has being updated
*/
protected void processThumbnailPassComplete(BufferedImage thumbnail)
{
if (updateListeners != null)
{
Iterator it = updateListeners.iterator();
while (it.hasNext())
{
IIOReadUpdateListener listener = (IIOReadUpdateListener) it.next();
listener.thumbnailPassComplete(this, thumbnail);
}
}
}
示例5: processThumbnailPassComplete
import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
protected void processThumbnailPassComplete(final BufferedImage theThumbnail) {
if (updateListeners != null) {
for (final IIOReadUpdateListener listener : updateListeners) {
listener.thumbnailPassComplete(this, theThumbnail);
}
}
}