it.unibz.inf.ontop.protege.views.DatasourcesManagerView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontop-protege Show documentation
Show all versions of ontop-protege Show documentation
Ontop OBDA plugin for protégé
package it.unibz.inf.ontop.protege.views;
/*
* #%L
* ontop-protege4
* %%
* Copyright (C) 2009 - 2013 KRDB Research Centre. Free University of Bozen Bolzano.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import it.unibz.inf.ontop.model.impl.OBDAModelImpl;
import it.unibz.inf.ontop.protege.core.OBDAModelManager;
import it.unibz.inf.ontop.protege.core.OBDAModelManagerListener;
import it.unibz.inf.ontop.protege.panels.DatasourceParameterEditorPanel;
import org.protege.editor.owl.ui.view.AbstractOWLViewComponent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.awt.*;
public class DatasourcesManagerView extends AbstractOWLViewComponent implements OBDAModelManagerListener {
private static final long serialVersionUID = -4515710047558710080L;
private static final Logger log = LoggerFactory.getLogger(DatasourcesManagerView.class);
DatasourceParameterEditorPanel editor;
OBDAModelManager obdaModelManager = null;
@Override
protected void disposeOWLView() {
obdaModelManager.removeListener(this);
}
@Override
protected void initialiseOWLView() throws Exception {
obdaModelManager = (OBDAModelManager) getOWLEditorKit().get(OBDAModelImpl.class.getName());
obdaModelManager.addListener(this);
//OWLModelManager owlModelManager = getOWLEditorKit().getOWLModelManager();
setLayout(new BorderLayout());
//editor = new DatasourceParameterEditorPanel(obdaModelManager.getActiveOBDAModel(), owlModelManager);
editor = new DatasourceParameterEditorPanel(getOWLEditorKit());
add(editor, BorderLayout.NORTH);
log.debug("Datasource browser initialized");
}
@Override
public void activeOntologyChanged() {
editor.setNewDatasource(obdaModelManager.getActiveOBDAModel());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy