public Activator(IConfigurationElement element) {
fElement = element;
}
AutoActivationDelegate createAutoActivation() {
AutoActivationDelegate activation = null;
if (fElement != null) {
try {
activation = (AutoActivationDelegate) fElement.createExecutableExtension(ATTR_AUTO_ACTIVATION_CLASS);
} catch (CoreException e) {
}