Examples of modelChanged()


Examples of org.beryl.gui.View.modelChanged()

      /* Update all views */
      for (Iterator i=views.iterator(); i.hasNext(); ) {
        View view = (View) i.next();
        /* Dont send events back to their source */
        if (view != event.getSource()) {
          view.modelChanged(event);
        }
      }
    }

    if (modelChangeListeners != null) {
View Full Code Here

Examples of org.eclipse.jface.text.source.IAnnotationModelListener.modelChanged()

    while (e.hasNext()) {
      IAnnotationModelListener l= (IAnnotationModelListener)e.next();
      if (l instanceof IAnnotationModelListenerExtension)
         ((IAnnotationModelListenerExtension)l).modelChanged(event);
      else
        l.modelChanged(this);
    }
  }

  /*
   * @see org.eclipse.ui.internal.texteditor.quickdiff.ILineDifferExtension#suspend()
View Full Code Here

Examples of org.eclipse.jface.text.source.IAnnotationModelListener.modelChanged()

      for (Iterator i = annotationModelListeners.iterator(); i.hasNext(); ) {
        IAnnotationModelListener l = (IAnnotationModelListener) i.next();
        if (l instanceof IAnnotationModelListenerExtension) {
          ((IAnnotationModelListenerExtension) l).modelChanged(event);
        } else {
          l.modelChanged(this);
        }
      }
    }
  }
View Full Code Here

Examples of org.eclipse.jface.text.source.IAnnotationModelListener.modelChanged()

      for (Iterator i = annotationModelListeners.iterator(); i.hasNext();) {
        IAnnotationModelListener l = (IAnnotationModelListener) i.next();
        if (l instanceof IAnnotationModelListenerExtension) {
          ((IAnnotationModelListenerExtension) l).modelChanged(event);
        } else {
          l.modelChanged(this);
        }
      }
    }
  }
View Full Code Here

Examples of org.eclipse.jface.text.source.IAnnotationModelListener.modelChanged()

      for (Iterator i = annotationModelListeners.iterator(); i.hasNext(); ) {
        IAnnotationModelListener l = (IAnnotationModelListener) i.next();
        if (l instanceof IAnnotationModelListenerExtension) {
          ((IAnnotationModelListenerExtension) l).modelChanged(event);
        } else {
          l.modelChanged(this);
        }
      }
    }
  }
View Full Code Here

Examples of org.eclipse.jface.text.source.IAnnotationModelListener.modelChanged()

      for (Iterator i = annotationModelListeners.iterator(); i.hasNext(); ) {
        IAnnotationModelListener l = (IAnnotationModelListener) i.next();
        if (l instanceof IAnnotationModelListenerExtension) {
          ((IAnnotationModelListenerExtension) l).modelChanged(event);
        } else {
          l.modelChanged(this);
        }
      }
    }
  }
View Full Code Here

Examples of org.eclipse.jface.text.source.IAnnotationModelListener.modelChanged()

    while (e.hasNext()) {
      IAnnotationModelListener l= (IAnnotationModelListener)e.next();
      if (l instanceof IAnnotationModelListenerExtension)
         ((IAnnotationModelListenerExtension)l).modelChanged(event);
      else
        l.modelChanged(this);
    }
  }

  /*
   * @see org.eclipse.ui.internal.texteditor.quickdiff.ILineDifferExtension#suspend()
View Full Code Here

Examples of org.eclipse.jst.pagedesigner.editors.palette.IEntryChangeListener.modelChanged()

    if (_listeners == null) {
      return;
    }
    for (final Iterator<IEntryChangeListener> it= _listeners.iterator();it.hasNext();){
      final IEntryChangeListener listener = it.next();
      listener.modelChanged(oldDefinitions, newDefinitions);
   
  }
 
  /**
   * Informs all paletteItemManagers, except the notifying paletteManager, of updates to the customizations
View Full Code Here

Examples of org.eclipse.jst.pagedesigner.editors.palette.IEntryChangeListener.modelChanged()

    if (_listeners == null) {
      return;
    }
    for (final Iterator<IEntryChangeListener> it= _listeners.iterator();it.hasNext();){
      final IEntryChangeListener listener = it.next();
      listener.modelChanged(oldDefinitions, newDefinitions);
   
  }
 
  /**
   * Informs all paletteItemManagers, except the notifying paletteManager, of updates to the customizations
View Full Code Here

Examples of org.openhab.model.core.ModelRepositoryChangeListener.modelChanged()

  }

  private void notifyListeners(String name, EventType type) {
    for(Object listener : listeners.getListeners()) {
      ModelRepositoryChangeListener changeListener = (ModelRepositoryChangeListener) listener;
      changeListener.modelChanged(name, type);
    }
  }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.