本文整理汇总了Java中org.jfree.chart.event.AnnotationChangeListener类的典型用法代码示例。如果您正苦于以下问题:Java AnnotationChangeListener类的具体用法?Java AnnotationChangeListener怎么用?Java AnnotationChangeListener使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AnnotationChangeListener类属于org.jfree.chart.event包,在下文中一共展示了AnnotationChangeListener类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: notifyListeners
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Notifies all registered listeners that the annotation has changed.
*
* @param event contains information about the event that triggered the
* notification.
*
* @see #addChangeListener(AnnotationChangeListener)
* @see #removeChangeListener(AnnotationChangeListener)
*/
protected void notifyListeners(AnnotationChangeEvent event) {
Object[] listeners = this.listenerList.getListenerList();
for (int i = listeners.length - 2; i >= 0; i -= 2) {
if (listeners[i] == AnnotationChangeListener.class) {
((AnnotationChangeListener) listeners[i + 1]).annotationChanged(
event);
}
}
}
开发者ID:mdzio,项目名称:ccu-historian,代码行数:21,代码来源:AbstractAnnotation.java
示例2: addChangeListener
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Registers an object for notification of changes to the annotation.
*
* @param listener the object to register.
*/
public void addChangeListener(AnnotationChangeListener listener);
开发者ID:mdzio,项目名称:ccu-historian,代码行数:7,代码来源:Annotation.java
示例3: removeChangeListener
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Deregisters an object for notification of changes to the annotation.
*
* @param listener the object to deregister.
*/
public void removeChangeListener(AnnotationChangeListener listener);
开发者ID:mdzio,项目名称:ccu-historian,代码行数:7,代码来源:Annotation.java
示例4: addChangeListener
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Registers an object to receive notification of changes to the
* annotation.
*
* @param listener the object to register.
*
* @see #removeChangeListener(AnnotationChangeListener)
*/
@Override
public void addChangeListener(AnnotationChangeListener listener) {
this.listenerList.add(AnnotationChangeListener.class, listener);
}
开发者ID:mdzio,项目名称:ccu-historian,代码行数:13,代码来源:AbstractAnnotation.java
示例5: removeChangeListener
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Deregisters an object so that it no longer receives notification of
* changes to the annotation.
*
* @param listener the object to deregister.
*
* @see #addChangeListener(AnnotationChangeListener)
*/
@Override
public void removeChangeListener(AnnotationChangeListener listener) {
this.listenerList.remove(AnnotationChangeListener.class, listener);
}
开发者ID:mdzio,项目名称:ccu-historian,代码行数:13,代码来源:AbstractAnnotation.java
示例6: addChangeListener
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Registers an object to receive notification of changes to the
* annotation.
*
* @param listener the object to register.
*
* @see #removeChangeListener(AnnotationChangeListener)
*/
public void addChangeListener(AnnotationChangeListener listener) {
this.listenerList.add(AnnotationChangeListener.class, listener);
}
开发者ID:SpoonLabs,项目名称:astor,代码行数:12,代码来源:AbstractAnnotation.java
示例7: removeChangeListener
import org.jfree.chart.event.AnnotationChangeListener; //导入依赖的package包/类
/**
* Deregisters an object so that it no longer receives notification of
* changes to the annotation.
*
* @param listener the object to deregister.
*
* @see #addChangeListener(AnnotationChangeListener)
*/
public void removeChangeListener(AnnotationChangeListener listener) {
this.listenerList.remove(AnnotationChangeListener.class, listener);
}
开发者ID:SpoonLabs,项目名称:astor,代码行数:12,代码来源:AbstractAnnotation.java
注:本文中的org.jfree.chart.event.AnnotationChangeListener类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论