I am trying to write a right to left editor as an Eclipse plugin for languages like Arabic. Anyone has an idea how can I make it? My editor Class is like the following:
public class ArabicEditor extends TextEditor implements org.eclipse.ui.texteditor.ITextEditor
In the constructor I wrote like this:
Window.setDefaultOrientation(SWT.RIGHT_TO_LEFT);
But it does not work.