/* * JAME 6.2.1 * http://jame.sourceforge.net * * Copyright 2001, 2016 Andrea Medeghini * * This file is part of JAME. * * JAME is an application for creating fractals and other graphics artifacts. * * JAME is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JAME is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with JAME. If not, see <http://www.gnu.org/licenses/>. * */ package net.sf.jame.devtools; import net.sf.jame.core.extension.Extension; import net.sf.jame.core.extension.ExtensionNotFoundException; import net.sf.jame.core.extension.ExtensionRegistry; import net.sf.jame.devtools.descriptor.extension.DescriptorExtensionRegistry; import net.sf.jame.devtools.descriptor.extension.DescriptorExtensionRuntime; import net.sf.jame.devtools.processor.extension.ProcessorExtensionRegistry; import net.sf.jame.devtools.processor.extension.ProcessorExtensionRuntime; /** * The twister registry. * * @author Andrea Medeghini */ public class DevToolsRegistry { private ExtensionRegistry<ProcessorExtensionRuntime> processorRegistry; private ExtensionRegistry<DescriptorExtensionRuntime> descriptorRegistry; private static class RegistryHolder { private static final DevToolsRegistry instance = new DevToolsRegistry(); } private DevToolsRegistry() { setProcessorRegistry(new ProcessorExtensionRegistry()); setDescriptorRegistry(new DescriptorExtensionRegistry()); } /** * @return */ public static DevToolsRegistry getInstance() { return RegistryHolder.instance; } /** * Returns a processor extension. * * @param extensionId the extensionId. * @return the extension. * @throws ExtensionNotFoundException */ public Extension<ProcessorExtensionRuntime> getProcessorExtension(final String extensionId) throws ExtensionNotFoundException { return processorRegistry.getExtension(extensionId); } /** * Returns a descriptor extension. * * @param extensionId the extensionId. * @return the extension. * @throws ExtensionNotFoundException */ public Extension<DescriptorExtensionRuntime> getDescriptorExtension(final String extensionId) throws ExtensionNotFoundException { return descriptorRegistry.getExtension(extensionId); } private void setProcessorRegistry(final ExtensionRegistry<ProcessorExtensionRuntime> processorRegistry) { this.processorRegistry = processorRegistry; } private void setDescriptorRegistry(final ExtensionRegistry<DescriptorExtensionRuntime> descriptorRegistry) { this.descriptorRegistry = descriptorRegistry; } /** * @return the processorRegistry */ public ExtensionRegistry<ProcessorExtensionRuntime> getProcessorRegistry() { return processorRegistry; } /** * @return the descriptorRegistry */ public ExtensionRegistry<DescriptorExtensionRuntime> getDescriptorRegistry() { return descriptorRegistry; } }