IContentAssistCalculator beanRef = new BeanReferenceContentAssistCalculator();
registerContentAssistCalculator("aspect", "ref", beanRef);
registerContentAssistCalculator("advisor", "advice-ref", beanRef);
registerContentAssistCalculator("delegate-ref", beanRef);
registerContentAssistCalculator("include", "name", beanRef);
registerContentAssistCalculator("implement-interface", new ClassContentAssistCalculator(true));
registerContentAssistCalculator("pointcut-ref", new PointcutReferenceContentAssistCalculator());
registerContentAssistCalculator("default-impl", new DefaultImplContentAssistCalculator());
registerContentAssistCalculator("method", new AdviceMethodContentAssistCalculator());
}