All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.coode.dlquery.DLQueryResultsSectionItem Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package org.coode.dlquery;

import org.protege.editor.core.ui.list.MListItem;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLObject;
/*
 * Copyright (C) 2007, University of Manchester
 *
 * Modifications to the initial code base are copyright of their
 * respective authors, or their employers as appropriate.  Authorship
 * of the modifications may be determined from the ChangeLog placed at
 * the end of this file.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.

 * This library 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
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */


/**
 * Author: Matthew Horridge
* The University Of Manchester
* Bio-Health Informatics Group
* Date: 27-Feb-2007

*/ public class DLQueryResultsSectionItem implements MListItem { private final OWLObject object; private final OWLAxiom axiom; public DLQueryResultsSectionItem(OWLObject object, OWLAxiom axiom) { this.object = object; this.axiom = axiom; } public OWLObject getOWLObject() { return object; } public OWLAxiom getAxiom() { return axiom; } public String toString() { return object.toString(); } public boolean isEditable() { return false; } public void handleEdit() { } public boolean isDeleteable() { return false; } public boolean handleDelete() { return false; } public String getTooltip() { return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy