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