⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listeneriterator.java

📁 ZK 基础介绍 功能操作 模块 结合数据库操作
💻 JAVA
字号:
/* ListenerIterator.java{{IS_NOTE	Purpose:			Description:			History:		Mon Jun  4 16:12:35     2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT	This program is distributed under GPL Version 2.0 in the hope that	it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zk.ui.impl;import java.util.List;import java.util.Iterator;/** * Used to iterate the event listener. * * <p>It resolves a bug of LinkedList: * LinkedList's hasNext() and hasPrevious() doesn't check * concurrent-modification. * Thus, if the 2nd last listener is removed, hasNext() simply return * false (and the last listener is ignored) rather than throwing * ConcurrentModificationException. Refer to Bug 1730532. * * @author tomyeh */public class ListenerIterator implements Iterator {	private final List _org;	private final int _orgsz;	private final Iterator _it;	public ListenerIterator(List list) {		_org = list;		_orgsz = list.size();		_it = list.iterator();	}	public boolean hasNext() {		if (_orgsz != _org.size())			throw new java.util.ConcurrentModificationException();		return _it.hasNext();	}	public Object next() {		return _it.next();	}	public void remove() {		throw new UnsupportedOperationException();	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -