I\'m trying to draw a border over a Text in SWT... This is what I got for now:
Text
public class BorderedText extends Text {
public Borde
You have two possibilities:
You can create a new Text widget with SWT.BORDER as a style argument. This would give you a nice looking border.
You can use the StyledText widget. The StyledText widget enables you to define margins.