Package org.eclipse.jface.text.source
Class AnnotationPainter.SquigglesStrategy
java.lang.Object
org.eclipse.jface.text.source.AnnotationPainter.SquigglesStrategy
- All Implemented Interfaces:
- AnnotationPainter.IDrawingStrategy
- Enclosing class:
- AnnotationPainter
@Deprecated
public static class AnnotationPainter.SquigglesStrategy
extends Object
implements AnnotationPainter.IDrawingStrategy
Deprecated.
Squiggles drawing strategy.
- Since:
- 3.0
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoiddraw(Annotation annotation, GC gc, StyledText textWidget, int offset, int length, Color color) Deprecated.Draws a decoration for an annotation onto the specified GC at the given text range.
- 
Constructor Details- 
SquigglesStrategypublic SquigglesStrategy()Deprecated.
 
- 
- 
Method Details- 
drawpublic void draw(Annotation annotation, GC gc, StyledText textWidget, int offset, int length, Color color) Deprecated.Description copied from interface:AnnotationPainter.IDrawingStrategyDraws a decoration for an annotation onto the specified GC at the given text range. There are two different invocation modes of thedrawmethod:- drawing mode: the passed GC is the graphics context of a paint event occurring on the text widget. The strategy should draw the decoration onto the graphics context, such that the decoration appears at the given range in the text widget.
- clearing mode: the passed GC is null. In this case the strategy must invalidate enough of the text widget's client area to cover any decoration drawn in drawing mode. This can usually be accomplished by calling textWidget.redrawRange(offset, length, true).
 - Specified by:
- drawin interface- AnnotationPainter.IDrawingStrategy
- Parameters:
- annotation- the annotation to be drawn
- gc- the graphics context,- nullwhen in clearing mode
- textWidget- the text widget to draw on
- offset- the offset of the line
- length- the length of the line
- color- the color of the line
 
 
- 
AnnotationPainter.UnderlineStrategy