*/
public IContentFormatter getContentFormatter( ISourceViewer sourceViewer )
{
ContentFormatter formatter = new ContentFormatter();
IFormattingStrategy formattingStrategy = new ACIFormattingStrategy( sourceViewer );
formatter.enablePartitionAwareFormatting( false );
formatter.setFormattingStrategy( formattingStrategy, IDocument.DEFAULT_CONTENT_TYPE );
return formatter;
}
}