org.semanticweb.elk.matching.conclusions.ClassConclusionMatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elk-proofs Show documentation
Show all versions of elk-proofs Show documentation
Utilities to present tracing results (encoded proofs) to the
user
package org.semanticweb.elk.matching.conclusions;
/*
* #%L
* ELK Reasoner
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2011 - 2015 Department of Computer Science, University of Oxford
* %%
* 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%
*/
public interface ClassConclusionMatch extends ConclusionMatch {
O accept(Visitor visitor);
/**
* A factory for creating instances
*
* @author Yevgeny Kazakov
*
*/
interface Factory
extends BackwardLinkMatch1.Factory, BackwardLinkMatch2.Factory,
BackwardLinkMatch3.Factory, BackwardLinkMatch4.Factory,
ClassInconsistencyMatch1.Factory, ClassInconsistencyMatch2.Factory,
DisjointSubsumerMatch1.Factory, DisjointSubsumerMatch2.Factory,
SubClassInclusionComposedMatch1.Factory,
SubClassInclusionComposedMatch2.Factory,
SubClassInclusionDecomposedMatch1.Factory,
SubClassInclusionDecomposedMatch2.Factory,
ForwardLinkMatch1.Factory, ForwardLinkMatch2.Factory,
ForwardLinkMatch3.Factory, ForwardLinkMatch4.Factory,
PropagationMatch1.Factory, PropagationMatch2.Factory {
// combined interface
}
/**
* The visitor pattern for instances
*
* @author Yevgeny Kazakov
*
* @param
* the type of the output
*/
interface Visitor extends BackwardLinkMatch1.Visitor,
BackwardLinkMatch2.Visitor, BackwardLinkMatch3.Visitor,
BackwardLinkMatch4.Visitor, ClassInconsistencyMatch1.Visitor,
ClassInconsistencyMatch2.Visitor,
DisjointSubsumerMatch1.Visitor,
DisjointSubsumerMatch2.Visitor,
SubClassInclusionComposedMatch1.Visitor,
SubClassInclusionComposedMatch2.Visitor,
SubClassInclusionDecomposedMatch1.Visitor,
SubClassInclusionDecomposedMatch2.Visitor,
ForwardLinkMatch1.Visitor, ForwardLinkMatch2.Visitor,
ForwardLinkMatch3.Visitor, ForwardLinkMatch4.Visitor,
PropagationMatch1.Visitor, PropagationMatch2.Visitor {
// combined interface
}
}