View Single Post
  #3 (permalink)  
Old 03-27-2008, 12:47 PM
gaspard gaspard is offline
Member
 
Join Date: Mar 2008
Posts: 7
gaspard is on a distinguished road
I want them in the editor. In fact I managed to have them dispayed using the following code.

Map<String,Object> map = new HashMap<String, Object>();
MarkerUtilities.setLineNumber(map, lineNumber);
map.put(IMarker.MESSAGE, "some message");
MarkerUtilities.createMarker(res, map, MARKER_ID);

Now I have another problem: in the upper code the text "some text" appears when you place the mouse cursor over the marker(from the editor). I want to know if I can introduce some stylized text (f.e. bold or italic characters) in this text or if I can change the font size. Any hints?

Thanks
Reply With Quote