/* * 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.contextfree.figure; import net.sf.jame.contextfree.CFDGBuilder; import net.sf.jame.contextfree.figure.extension.FigureExtensionConfig; import net.sf.jame.core.common.ConfigurableExtensionReferenceElement; import net.sf.jame.core.config.AbstractConfigElement; import net.sf.jame.core.config.ConfigContext; import net.sf.jame.core.config.ConfigElement; import net.sf.jame.core.extension.ConfigurableExtensionReference; /** * @author Andrea Medeghini */ public class FigureConfigElement extends AbstractConfigElement { private static final long serialVersionUID = 1L; public static final String CLASS_ID = "Figure"; private final ConfigurableExtensionReferenceElement<FigureExtensionConfig> extensionElement = new ConfigurableExtensionReferenceElement<FigureExtensionConfig>(); /** * Constructs a new element. */ public FigureConfigElement() { super(FigureConfigElement.CLASS_ID); } /** * @see net.sf.jame.core.config.AbstractConfigElement#setContext(net.sf.jame.core.config.ConfigContext) */ @Override public void setContext(final ConfigContext context) { super.setContext(context); extensionElement.setContext(context); } /** * @return */ @Override public FigureConfigElement clone() { final FigureConfigElement element = new FigureConfigElement(); if (getExtensionReference() != null) { element.setExtensionReference(getExtensionReference().clone()); } return element; } /** * */ public void copyFrom(ConfigElement source) { FigureConfigElement figureElement = (FigureConfigElement) source; if (figureElement.getExtensionReference() != null) { setExtensionReference(figureElement.getExtensionReference().clone()); } } /** * @return */ public ConfigurableExtensionReferenceElement<FigureExtensionConfig> getExtensionElement() { return extensionElement; } /** * @return */ public ConfigurableExtensionReference<FigureExtensionConfig> getExtensionReference() { return extensionElement.getReference(); } /** * @param reference */ public void setExtensionReference(final ConfigurableExtensionReference<FigureExtensionConfig> reference) { extensionElement.setReference(reference); } /** * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } final FigureConfigElement other = (FigureConfigElement) obj; if (extensionElement == null) { if (other.extensionElement != null) { return false; } } else if (!extensionElement.equals(other.extensionElement)) { return false; } return true; } /** * @see net.sf.jame.core.config.AbstractConfigElement#dispose() */ @Override public void dispose() { extensionElement.dispose(); super.dispose(); } public void toCFDG(CFDGBuilder builder) { if (extensionElement.getReference() != null) { if (extensionElement.getReference().getExtensionConfig() != null) { extensionElement.getReference().getExtensionConfig().toCFDG(builder); } } } }