* allow developers to extend the CFE code easily and more reliably in the future
* resulting in fewer hacks and changes to the core code.
* @param sourceViewer
*/
private void setupPrimaryCFEContentAssist(ISourceViewer sourceViewer) {
CFEPrimaryAssist mainCFAssistant = new CFEPrimaryAssist(sourceViewer,assistant);
// we only do the assist partition types here (excludes comment partitions)
for (int i=0;i<PartitionTypes.ASSIST_PARTITION_TYPES.length;i++) {
assistant.setContentAssistProcessor(mainCFAssistant,PartitionTypes.ASSIST_PARTITION_TYPES[i]);
}
}