/* * (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.ve.view; import java.util.List; import java.util.Vector; import org.openflexo.components.widget.FIBOntologyEditor; import org.openflexo.foundation.ontology.owl.OWLOntology; import org.openflexo.selection.SelectionListener; import org.openflexo.ve.controller.VEController; import org.openflexo.view.SelectionSynchronizedModuleView; import org.openflexo.view.controller.model.FlexoPerspective; /** * 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<OWLOntology> { private FlexoPerspective declaredPerspective; public OntologyView(OWLOntology ontology, VEController controller, FlexoPerspective perspective) { super(ontology, controller); declaredPerspective = perspective; } @Override public VEController getFlexoController() { return (VEController) 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 OWLOntology getRepresentedObject() { return (OWLOntology) getOntology(); } }