use of org.eclipse.ui.editors.text.DefaultEncodingSupport in project webtools.sourceediting by eclipse.
the class EncodingSupport method initialize.
/*
* (non-Javadoc)
*
* @see
* org.eclipse.ui.editors.text.DefaultEncodingSupport#initialize(org.eclipse
* .ui.texteditor.StatusTextEditor)
*/
public void initialize(StatusTextEditor textEditor) {
super.initialize(textEditor);
fStatusTextEditor = textEditor;
IEncodingSupport encodingSupportDelegate = getEncodingSupportDelegate();
if (encodingSupportDelegate instanceof DefaultEncodingSupport) {
((DefaultEncodingSupport) encodingSupportDelegate).initialize(textEditor);
}
}
Aggregations