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