IContentAssistProcessor[] processors;
if (partitionType == IStructuredPartitions.DEFAULT_PARTITION
|| partitionType == IXMLPartitions.XML_DEFAULT) {
//adding the DozerContentAssistProcessor to XML partions of the sourceview
processors = new IContentAssistProcessor[] { new DozerContentAssistProcessor() };
} else {
processors = super.getContentAssistProcessors(sourceViewer, partitionType);
}
return processors;