Tabnine Logo
Gutter.removeAllTrackingIcons
Code IndexAdd Tabnine to your IDE (free)

How to use
removeAllTrackingIcons
method
in
org.fife.ui.rtextarea.Gutter

Best Java code snippets using org.fife.ui.rtextarea.Gutter.removeAllTrackingIcons (Showing top 3 results out of 315)

origin: bobbylight/RSyntaxTextArea

@Test
public void testRemoveAllTrackingIcons_Simple() throws Exception {
  RTextArea textArea = new RTextArea(PLAIN_TEXT);
  Gutter gutter = new Gutter(textArea);
  Icon icon = new TestIcon();
  textArea.setSize(200, 200);
  gutter.addLineTrackingIcon(0, icon);
  Point p = new Point(0, 4);
  Assert.assertEquals(1, gutter.getTrackingIcons(p).length);
  gutter.removeAllTrackingIcons();
  Assert.assertEquals(0, gutter.getTrackingIcons(p).length);
}
origin: eu.mihosoft.vrl/vrl

  /**
   * Removes all error notifiers from this code editor.
   */
  public void removeErrorNotifiers() {
//        numberView.removeErrorNotifiers();
//        editor.removeErrorNotifier();

    getScrollPane().getGutter().removeAllTrackingIcons();
  }

origin: UNIVALI-LITE/Portugol-Studio

/**
 * *
 * É chamado sempre que o programa é recompilado para criar os
 * ícones de ponto de parada desativados nas linhas que são paráveis
 *
 * @param linhasParaveis
 */
public void criarPontosDeParadaDesativados(Set<Integer> linhasParaveis){
  //remove todos os pontos de parada existentes
  
     Set<Integer> pontosAtivados = getLinhasComPontoDeParadaAtivados();
  RSyntaxUtilities.getGutter(this).removeAllTrackingIcons();
  pontosDeParada.clear();
  for (Integer linha : linhasParaveis) {
    adicionaPontoDeParada(linha);
    if(pontosAtivados.contains(linha)){
      alternaStatusDoPontoDeParada(linha);
    }
  }
}
org.fife.ui.rtextareaGutterremoveAllTrackingIcons

Javadoc

Removes all tracking icons.

Popular methods of Gutter

  • setLineNumberColor
    Sets the color to use to paint line numbers.
  • setBackground
  • <init>
    Constructor.
  • addLineTrackingIcon
    Adds an icon that tracks an offset in the document, and is displayed adjacent to the line numbers. T
  • addOffsetTrackingIcon
    Adds an icon that tracks an offset in the document, and is displayed adjacent to the line numbers. T
  • getBookmarks
    Returns the bookmarks known to this gutter.
  • getLineNumbersEnabled
    Returns true if the line numbers are enabled and visible.
  • isIconRowHeaderEnabled
    Returns whether the icon row header is enabled.
  • setBorderColor
    Sets the color for the "border" line.
  • setIconRowHeaderEnabled
    Toggles whether the icon row header (used for breakpoints, bookmarks, etc.) is enabled.
  • setLineNumberFont
    Sets the font used for line numbers.
  • setLineNumbersEnabled
    Toggles whether or not line numbers are visible.
  • setLineNumberFont,
  • setLineNumbersEnabled,
  • toggleBookmark,
  • add,
  • getBackground,
  • getBorder,
  • getComponent,
  • getComponentCount,
  • remove,
  • repaint

Popular in Java

  • Reading from database using SQL prepared statement
  • getContentResolver (Context)
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JFrame (javax.swing)
  • Top plugins for WebStorm
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