}
static Log log = LogFactory.getLog(_JabRefPlugin.class);
public List<ExportFormatTemplateExtension> getExportFormatTemplateExtensions(){
ExtensionPoint extPoint = getManager().getRegistry().getExtensionPoint(getId(), "ExportFormatTemplate");
List<ExportFormatTemplateExtension> result = new ArrayList<ExportFormatTemplateExtension>();
for (Extension ext : extPoint.getConnectedExtensions()) {
try {
result.add(new ExportFormatTemplateExtension(getManager().getPlugin(
ext.getDeclaringPluginDescriptor().getId()), ext));
} catch (PluginLifecycleException e) {
log.error("Failed to activate plug-in " + ext.getDeclaringPluginDescriptor().getId(), e);