当前位置: 首页>>代码示例>>Java>>正文


Java AnnotationChangeEvent类代码示例

本文整理汇总了Java中org.jfree.chart.event.AnnotationChangeEvent的典型用法代码示例。如果您正苦于以下问题:Java AnnotationChangeEvent类的具体用法?Java AnnotationChangeEvent怎么用?Java AnnotationChangeEvent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AnnotationChangeEvent类属于org.jfree.chart.event包,在下文中一共展示了AnnotationChangeEvent类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: annotationChanged

import org.jfree.chart.event.AnnotationChangeEvent; //导入依赖的package包/类
/**
 * Receives notification of a change to an {@link Annotation} added to
 * this plot.
 *
 * @param event  information about the event (not used here).
 *
 * @since 1.0.14
 */
@Override
public void annotationChanged(AnnotationChangeEvent event) {
    if (getParent() != null) {
        getParent().annotationChanged(event);
    }
    else {
        PlotChangeEvent e = new PlotChangeEvent(this);
        notifyListeners(e);
    }
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:19,代码来源:XYPlot.java

示例2: annotationChanged

import org.jfree.chart.event.AnnotationChangeEvent; //导入依赖的package包/类
/**
 * Receives notification of a change to an {@link Annotation} added to
 * this plot.
 *
 * @param event  information about the event (not used here).
 *
 * @since 1.0.14
 */
@Override
public void annotationChanged(AnnotationChangeEvent event) {
    if (getParent() != null) {
        getParent().annotationChanged(event);
    } else {
        PlotChangeEvent e = new PlotChangeEvent(this);
        notifyListeners(e);
    }
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:18,代码来源:CategoryPlot.java

示例3: notifyListeners

import org.jfree.chart.event.AnnotationChangeEvent; //导入依赖的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

示例4: annotationChanged

import org.jfree.chart.event.AnnotationChangeEvent; //导入依赖的package包/类
/**
 * Receives notification of a change to an {@link Annotation} added to
 * this plot.
 *
 * @param event  information about the event (not used here).
 *
 * @since 1.0.14
 */
public void annotationChanged(AnnotationChangeEvent event) {
    if (getParent() != null) {
        getParent().annotationChanged(event);
    }
    else {
        PlotChangeEvent e = new PlotChangeEvent(this);
        notifyListeners(e);
    }
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:18,代码来源:XYPlot.java

示例5: fireAnnotationChanged

import org.jfree.chart.event.AnnotationChangeEvent; //导入依赖的package包/类
/**
 * Notifies all registered listeners that the annotation has changed.
 *
 * @see #addChangeListener(AnnotationChangeListener)
 */
protected void fireAnnotationChanged() {
    if (notify) {
        notifyListeners(new AnnotationChangeEvent(this, this));
    }
}
 
开发者ID:mdzio,项目名称:ccu-historian,代码行数:11,代码来源:AbstractAnnotation.java


注:本文中的org.jfree.chart.event.AnnotationChangeEvent类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。