/* * 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.core.extension.sl; import net.sf.jame.core.CoreResources; import net.sf.jame.core.extension.ConfigurableExtension; import net.sf.jame.core.extension.ConfigurableExtensionDescriptor; import net.sf.jame.core.extension.ConfigurableExtensionRuntime; import net.sf.jame.core.extension.ExtensionConfig; import java.text.MessageFormat; /** * SL configurable extension builder. * * @author Andrea Medeghini * @param <T> the extension runtime type. * @param <V> the extension configuration type. */ public class SLConfigurableExtensionBuilder<T extends ConfigurableExtensionRuntime<? extends V>, V extends ExtensionConfig> { private final String cfgElementName; /** * Constructs a new builder. * * @param cfgElementName the element name. */ public SLConfigurableExtensionBuilder(final String cfgElementName) { if (cfgElementName == null) { throw new IllegalArgumentException("cfgElementName is null"); } this.cfgElementName = cfgElementName; } /** * Creates an extension from a configuration element. * * @param cfgElement the configuration element. * @return the extension. * @throws SLExtensionBuilderException if the extension can't be created. */ public ConfigurableExtension<T, V> createExtension(final ConfigurableExtensionDescriptor<T, V> extensionDescriptor) throws SLExtensionBuilderException { return this.createExtension(extensionDescriptor, this.cfgElementName); } private ConfigurableExtension<T, V> createExtension(final ConfigurableExtensionDescriptor<T, V> extensionDescriptor, final String cfgElementName) throws SLExtensionBuilderException { try { if (validate(extensionDescriptor)) { return new SLConfigurableExtension<T, V>(extensionDescriptor); } } catch (final Exception e) { throw new SLExtensionBuilderException(e); } throw new SLExtensionBuilderException(MessageFormat.format(CoreResources.getInstance().getString("builder.error"), new Object[] { cfgElementName, ""/*TODO*/})); } /** * Validates the element. * * @param extensionDescriptor the extension descriptor. * @return true if the element is valid. */ public boolean validate(final ConfigurableExtensionDescriptor<T, V> extensionDescriptor) { return true; } public String getCfgElementName() { return cfgElementName; } }