Tabnine Logo
IProjectionListener
Code IndexAdd Tabnine to your IDE (free)

How to use
IProjectionListener
in
org.eclipse.jface.text.source.projection

Best Java code snippets using org.eclipse.jface.text.source.projection.IProjectionListener (Showing top 4 results out of 315)

origin: org.eclipse.platform/org.eclipse.jface.text

/**
 * Notifies all registered projection listeners
 * that projection mode has been enabled.
 */
protected void fireProjectionEnabled() {
  if (fProjectionListeners != null) {
    Iterator<IProjectionListener> e= new ArrayList<>(fProjectionListeners).iterator();
    while (e.hasNext()) {
      IProjectionListener l= e.next();
      l.projectionEnabled();
    }
  }
}
origin: org.eclipse.platform/org.eclipse.jface.text

/**
 * Notifies all registered projection listeners
 * that projection mode has been disabled.
 */
protected void fireProjectionDisabled() {
  if (fProjectionListeners != null) {
    Iterator<IProjectionListener> e= new ArrayList<>(fProjectionListeners).iterator();
    while (e.hasNext()) {
      IProjectionListener l= e.next();
      l.projectionDisabled();
    }
  }
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface.text

/**
 * Notifies all registered projection listeners
 * that projection mode has been disabled.
 */
protected void fireProjectionDisabled() {
  if (fProjectionListeners != null) {
    Iterator<IProjectionListener> e= new ArrayList<>(fProjectionListeners).iterator();
    while (e.hasNext()) {
      IProjectionListener l= e.next();
      l.projectionDisabled();
    }
  }
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface.text

/**
 * Notifies all registered projection listeners
 * that projection mode has been enabled.
 */
protected void fireProjectionEnabled() {
  if (fProjectionListeners != null) {
    Iterator<IProjectionListener> e= new ArrayList<>(fProjectionListeners).iterator();
    while (e.hasNext()) {
      IProjectionListener l= e.next();
      l.projectionEnabled();
    }
  }
}
org.eclipse.jface.text.source.projectionIProjectionListener

Javadoc

Implementers registered with a org.eclipse.jface.text.source.projection.ProjectionViewer get informed when the projection mode of the viewer gets enabled and when it gets disabled.

Most used methods

  • projectionDisabled
    Tells this listener that projection has been disabled.
  • projectionEnabled
    Tells this listener that projection has been enabled.

Popular in Java

  • Start an intent from android
  • notifyDataSetChanged (ArrayAdapter)
  • getExternalFilesDir (Context)
  • startActivity (Activity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • JButton (javax.swing)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now