Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ Why don't my markers appear in the editor's vertical ruler?"

m
Line 1: Line 1:
Text editors in Eclipse can display markers in a number of ways. Most commonly, they appear as icons in the vertical rule on the left-hand side of the editor pane.  Markers can also optionally be displayed as squiggly underlays in the text and in the overview ruler on the right-hand side of the editor. How each type of marker is displayed is chosen by the user on the editor preference pages ('''Workbench &gt; Editors &gt; Text Editor &gt; Annotations''' and '''Java &gt; Editor &gt; Annotations'''). The <tt>IMarker</tt> interface declares a number of frequently used marker types. Any created marker that has either the <tt>LINE_NUMBER</tt> or <tt>CHAR_START</tt> and <tt>CHAR_END</tt> attributes set will be displayed by editors.  These attributes must exist when the marker is created for the marker to appear in an editor. The most common mistake is to create the marker and then add the attributes in a separate operation.  The text framework provides a utility class called  <tt>MarkerUtilities</tt> to make this easier for you. Here is a sample snippet that adds a marker correctly:
+
Text editors in Eclipse can display markers in a number of ways. Most commonly, they appear as icons in the vertical ruler on the left-hand side of the editor pane.  Markers can also optionally be displayed as squiggly underlays in the text and in the overview ruler on the right-hand side of the editor. How each type of marker is displayed is chosen by the user on the editor preference pages ('''Workbench &gt; Editors &gt; Text Editor &gt; Annotations''' and '''Java &gt; Editor &gt; Annotations'''). The <tt>IMarker</tt> interface declares a number of frequently used marker types. Any created marker that has either the <tt>LINE_NUMBER</tt> or <tt>CHAR_START</tt> and <tt>CHAR_END</tt> attributes set will be displayed by editors.  These attributes must exist when the marker is created for the marker to appear in an editor. The most common mistake is to create the marker and then add the attributes in a separate operation.  The text framework provides a utility class called  <tt>MarkerUtilities</tt> to make this easier for you. Here is a sample snippet that adds a marker correctly:
 
<pre>
 
<pre>
 
   int lineNumber = ...;
 
   int lineNumber = ...;

Revision as of 16:12, 31 March 2011

Text editors in Eclipse can display markers in a number of ways. Most commonly, they appear as icons in the vertical ruler on the left-hand side of the editor pane. Markers can also optionally be displayed as squiggly underlays in the text and in the overview ruler on the right-hand side of the editor. How each type of marker is displayed is chosen by the user on the editor preference pages (Workbench > Editors > Text Editor > Annotations and Java > Editor > Annotations). The IMarker interface declares a number of frequently used marker types. Any created marker that has either the LINE_NUMBER or CHAR_START and CHAR_END attributes set will be displayed by editors. These attributes must exist when the marker is created for the marker to appear in an editor. The most common mistake is to create the marker and then add the attributes in a separate operation. The text framework provides a utility class called MarkerUtilities to make this easier for you. Here is a sample snippet that adds a marker correctly:

   int lineNumber = ...;
   HashMap map = new HashMap();
   MarkerUtilities.setLineNumber(map, lineNumber);
   MarkerUtilities.createMarker(resource, map, IMarker.TEXT);


See Also:

FAQ How do I create my own tasks, problems, bookmarks, and so on?


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top