/* * (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.vpm.view; import java.util.List; import java.util.Vector; import org.openflexo.components.widget.FIBOntologyEditor; import org.openflexo.foundation.FlexoModelObject; import org.openflexo.foundation.ontology.AbstractOntologyObject; import org.openflexo.foundation.ontology.FlexoOntology; import org.openflexo.selection.SelectionListener; import org.openflexo.view.SelectionSynchronizedModuleView; import org.openflexo.view.controller.model.FlexoPerspective; import org.openflexo.vpm.controller.VPMController; /** * This class represent the module view for an ontology.<br> * Underlying representation is supported by FIBOntologyEditor implementation. * * @author sylvain * */ @SuppressWarnings("serial") public class OntologyView extends FIBOntologyEditor implements SelectionSynchronizedModuleView<AbstractOntologyObject> { private FlexoPerspective declaredPerspective; public OntologyView(FlexoOntology object, VPMController controller, FlexoPerspective perspective) { super(object, controller); declaredPerspective = perspective; controller.manageResource((FlexoModelObject) object); } @Override public VPMController getFlexoController() { return (VPMController) super.getFlexoController(); } @Override public FlexoPerspective getPerspective() { return declaredPerspective; } @Override public void deleteView() { deleteModuleView(); } @Override public void deleteModuleView() { super.deleteView(); getFlexoController().removeModuleView(this); } @Override public List<SelectionListener> getSelectionListeners() { Vector<SelectionListener> reply = new Vector<SelectionListener>(); reply.add(this); return reply; } @Override public void willHide() { } @Override public void willShow() { } @Override public AbstractOntologyObject getRepresentedObject() { return (AbstractOntologyObject) getOntology(); } }