/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo 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. * * OpenFlexo 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 OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.foundation.ie.cl; import org.openflexo.foundation.ie.IEObject; import org.openflexo.foundation.rm.FlexoProject; import org.openflexo.foundation.rm.XMLStorageResourceData; import org.openflexo.foundation.validation.Validable; /** * Abstract class implemented by all objects involved in Component Library coding * * @author sguerin * */ public abstract class IECLObject extends IEObject implements Validable { private FlexoComponentLibrary _componentLibrary; // ========================================================================== // ============================= Constructor // ================================ // ========================================================================== /** * Never use this constructor except for ComponentLibrary */ public IECLObject(FlexoProject project) { super(project); } /** * Default constructor */ public IECLObject(FlexoComponentLibrary componentLibrary) { super(componentLibrary.getProject()); setComponentLibrary(componentLibrary); } public FlexoComponentLibrary getComponentLibrary() { return _componentLibrary; } public void setComponentLibrary(FlexoComponentLibrary aComponentLibrary) { _componentLibrary = aComponentLibrary; } /** * Returns reference to the main object in which this XML-serializable object is contained relating to storing scheme: here it's the * component library * * @return the component library */ @Override public XMLStorageResourceData getXMLResourceData() { return getComponentLibrary(); } }