类org.eclipse.jface.text.source.IAnnotationModelListenerExtension源码实例Demo

下面列出了怎么用org.eclipse.jface.text.source.IAnnotationModelListenerExtension的API类实例代码及写法,或者点击链接到github查看源代码。

/**
 * @see IAnnotationModelListenerExtension#modelChanged(AnnotationModelEvent)
 */
public void modelChanged(AnnotationModelEvent event) {
	Object[] listeners= fListenerList.getListeners();
	for (int i= 0; i < listeners.length; i++) {
		Object curr= listeners[i];
		if (curr instanceof IAnnotationModelListenerExtension) {
			((IAnnotationModelListenerExtension) curr).modelChanged(event);
		}
	}
}
 
 类所在包
 同包方法