* @see org.eclipse.jface.text.source.SourceViewerConfiguration#getContentFormatter(org.eclipse.jface.text.source.ISourceViewer)
*/
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;
}