Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.semanticweb.elk.reasoner.indexing.classes.ModifiableIndexedAxiomInferenceBaseFactory Maven / Gradle / Ivy
package org.semanticweb.elk.reasoner.indexing.classes;
/*-
* #%L
* ELK Reasoner Core
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2011 - 2017 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%
*/
import org.semanticweb.elk.owl.interfaces.ElkClassAssertionAxiom;
import org.semanticweb.elk.owl.interfaces.ElkDeclarationAxiom;
import org.semanticweb.elk.owl.interfaces.ElkDifferentIndividualsAxiom;
import org.semanticweb.elk.owl.interfaces.ElkDisjointClassesAxiom;
import org.semanticweb.elk.owl.interfaces.ElkDisjointUnionAxiom;
import org.semanticweb.elk.owl.interfaces.ElkEquivalentClassesAxiom;
import org.semanticweb.elk.owl.interfaces.ElkEquivalentObjectPropertiesAxiom;
import org.semanticweb.elk.owl.interfaces.ElkObjectPropertyAssertionAxiom;
import org.semanticweb.elk.owl.interfaces.ElkObjectPropertyDomainAxiom;
import org.semanticweb.elk.owl.interfaces.ElkObjectPropertyRangeAxiom;
import org.semanticweb.elk.owl.interfaces.ElkReflexiveObjectPropertyAxiom;
import org.semanticweb.elk.owl.interfaces.ElkSameIndividualAxiom;
import org.semanticweb.elk.owl.interfaces.ElkSubClassOfAxiom;
import org.semanticweb.elk.owl.interfaces.ElkSubObjectPropertyOfAxiom;
import org.semanticweb.elk.owl.interfaces.ElkTransitiveObjectPropertyAxiom;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkClassAssertionAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDeclarationAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDifferentIndividualsAxiomBinaryConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDifferentIndividualsAxiomNaryConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointClassesAxiomBinaryConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointClassesAxiomNaryConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointUnionAxiomBinaryConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointUnionAxiomEquivalenceConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointUnionAxiomNaryConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointUnionAxiomOwlNothingConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkDisjointUnionAxiomSubClassConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkEquivalentClassesAxiomEquivalenceConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkEquivalentClassesAxiomSubClassConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkEquivalentObjectPropertiesAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkObjectPropertyAssertionAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkObjectPropertyDomainAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkObjectPropertyRangeAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkReflexiveObjectPropertyAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkSameIndividualAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkSubClassOfAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkSubObjectPropertyOfAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableElkTransitiveObjectPropertyAxiomConversion;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedAxiomInference;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedClass;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedClassExpression;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedClassExpressionList;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedEntity;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedIndividual;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedObjectIntersectionOf;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedObjectProperty;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedPropertyChain;
public class ModifiableIndexedAxiomInferenceBaseFactory
implements ModifiableIndexedAxiomInference.Factory {
@Override
public ModifiableElkClassAssertionAxiomConversion getElkClassAssertionAxiomConversion(
ElkClassAssertionAxiom originalAxiom,
ModifiableIndexedIndividual instance,
ModifiableIndexedClassExpression type) {
return new ModifiableElkClassAssertionAxiomConversionImpl(originalAxiom,
instance, type);
}
@Override
public ModifiableElkDeclarationAxiomConversion getElkDeclarationAxiomConversion(
ElkDeclarationAxiom originalAxiom, ModifiableIndexedEntity entity) {
return new ModifiableElkDeclarationAxiomConversionImpl(originalAxiom,
entity);
}
@Override
public ModifiableElkDifferentIndividualsAxiomBinaryConversion getElkDifferentIndividualsAxiomBinaryConversion(
ElkDifferentIndividualsAxiom originalAxiom,
int firstIndividualPosition, int secondIndividualPosition,
ModifiableIndexedObjectIntersectionOf conjunction,
ModifiableIndexedClass bottom) {
return new ModifiableElkDifferentIndividualsAxiomBinaryConversionImpl(
originalAxiom, firstIndividualPosition,
secondIndividualPosition, conjunction, bottom);
}
@Override
public ModifiableElkDifferentIndividualsAxiomNaryConversion getElkDifferentIndividualsAxiomNaryConversion(
ElkDifferentIndividualsAxiom originalAxiom,
ModifiableIndexedClassExpressionList differentIndividuals) {
return new ModifiableElkDifferentIndividualsAxiomNaryConversionImpl(
originalAxiom, differentIndividuals);
}
@Override
public ModifiableElkDisjointClassesAxiomBinaryConversion getElkDisjointClassesAxiomBinaryConversion(
ElkDisjointClassesAxiom originalAxiom, int firstClassPosition,
int secondClassPosition,
ModifiableIndexedObjectIntersectionOf conjunction,
ModifiableIndexedClass bottom) {
return new ModifiableElkDisjointClassesAxiomBinaryConversionImpl(
originalAxiom, firstClassPosition, secondClassPosition,
conjunction, bottom);
}
@Override
public ModifiableElkDisjointClassesAxiomNaryConversion getElkDisjointClassesAxiomNaryConversion(
ElkDisjointClassesAxiom originalAxiom,
ModifiableIndexedClassExpressionList disjointClasses) {
return new ModifiableElkDisjointClassesAxiomNaryConversionImpl(
originalAxiom, disjointClasses);
}
@Override
public ModifiableElkDisjointUnionAxiomBinaryConversion getElkDisjointUnionAxiomBinaryConversion(
ElkDisjointUnionAxiom originalAxiom, int firstDisjunctPosition,
int secondDisjunctPosition,
ModifiableIndexedObjectIntersectionOf conjunction,
ModifiableIndexedClass bottom) {
return new ModifiableElkDisjointUnionAxiomBinaryConversionImpl(
originalAxiom, firstDisjunctPosition, secondDisjunctPosition,
conjunction, bottom);
}
@Override
public ModifiableElkDisjointUnionAxiomEquivalenceConversion getElkDisjointUnionAxiomEquivalenceConversion(
ElkDisjointUnionAxiom originalAxiom,
ModifiableIndexedClass definedClass,
ModifiableIndexedClassExpression definition) {
return new ModifiableElkDisjointUnionAxiomEquivalenceConversionImpl(
originalAxiom, definedClass, definition);
}
@Override
public ModifiableElkDisjointUnionAxiomNaryConversion getElkDisjointUnionAxiomNaryConversion(
ElkDisjointUnionAxiom originalAxiom,
ModifiableIndexedClassExpressionList disjointClasses) {
return new ModifiableElkDisjointUnionAxiomNaryConversionImpl(
originalAxiom, disjointClasses);
}
@Override
public ModifiableElkDisjointUnionAxiomSubClassConversion getElkDisjointUnionAxiomSubClassConversion(
ElkDisjointUnionAxiom originalAxiom, int disjunctPosition,
ModifiableIndexedClassExpression disjunct,
ModifiableIndexedClass definedClass) {
return new ModifiableElkDisjointUnionAxiomSubClassConversionImpl(
originalAxiom, disjunctPosition, disjunct, definedClass);
}
@Override
public ModifiableElkEquivalentClassesAxiomEquivalenceConversion getElkEquivalentClassesAxiomEquivalenceConversion(
ElkEquivalentClassesAxiom originalAxiom, int firstMemberPosition,
int secondMemberPosition,
ModifiableIndexedClassExpression firstMember,
ModifiableIndexedClassExpression secondMember) {
return new ModifiableElkEquivalentClassesAxiomEquivalenceConversionImpl(
originalAxiom, firstMemberPosition, secondMemberPosition,
firstMember, secondMember);
}
@Override
public ModifiableElkEquivalentClassesAxiomSubClassConversion getElkEquivalentClassesAxiomSubClassConversion(
ElkEquivalentClassesAxiom originalAxiom, int subClassPosition,
int superClassPosition, ModifiableIndexedClassExpression subClass,
ModifiableIndexedClassExpression superClass) {
return new ModifiableElkEquivalentClassesAxiomSubClassConversionImpl(
originalAxiom, subClassPosition, superClassPosition, subClass,
superClass);
}
@Override
public ModifiableElkEquivalentObjectPropertiesAxiomConversion getElkEquivalentObjectPropertiesAxiomConversion(
ElkEquivalentObjectPropertiesAxiom originalAxiom,
int subPropertyPosition, int superPropertyPosition,
ModifiableIndexedObjectProperty subProperty,
ModifiableIndexedObjectProperty superProperty) {
return new ModifiableElkEquivalentObjectPropertiesAxiomConversionImpl(
originalAxiom, subPropertyPosition, superPropertyPosition,
subProperty, superProperty);
}
@Override
public ModifiableElkObjectPropertyAssertionAxiomConversion getElkObjectPropertyAssertionAxiomConversion(
ElkObjectPropertyAssertionAxiom originalAxiom,
ModifiableIndexedClassExpression subClass,
ModifiableIndexedClassExpression superClass) {
return new ModifiableElkObjectPropertyAssertionAxiomConversionImpl(
originalAxiom, subClass, superClass);
}
@Override
public ModifiableElkObjectPropertyDomainAxiomConversion getElkObjectPropertyDomainAxiomConversion(
ElkObjectPropertyDomainAxiom originalAxiom,
ModifiableIndexedClassExpression subClass,
ModifiableIndexedClassExpression superClass) {
return new ModifiableElkObjectPropertyDomainAxiomConversionImpl(
originalAxiom, subClass, superClass);
}
@Override
public ModifiableElkObjectPropertyRangeAxiomConversion getElkObjectPropertyRangeAxiomConversion(
ElkObjectPropertyRangeAxiom originalAxiom,
ModifiableIndexedObjectProperty property,
ModifiableIndexedClassExpression range) {
return new ModifiableElkObjectPropertyRangeAxiomConversionImpl(
originalAxiom, property, range);
}
@Override
public ModifiableElkReflexiveObjectPropertyAxiomConversion getElkReflexiveObjectPropertyAxiomConversion(
ElkReflexiveObjectPropertyAxiom originalAxiom,
ModifiableIndexedClassExpression subClass,
ModifiableIndexedClassExpression superClass) {
return new ModifiableElkReflexiveObjectPropertyAxiomConversionImpl(
originalAxiom, subClass, superClass);
}
@Override
public ModifiableElkSameIndividualAxiomConversion getElkSameIndividualAxiomConversion(
ElkSameIndividualAxiom originalAxiom, int subIndividualPosition,
int superIndividualPosition,
ModifiableIndexedIndividual subIndividual,
ModifiableIndexedIndividual superIndividual) {
return new ModifiableElkSameIndividualAxiomConversionImpl(originalAxiom,
subIndividualPosition, superIndividualPosition, subIndividual,
superIndividual);
}
@Override
public ModifiableElkSubClassOfAxiomConversion getElkSubClassOfAxiomConversion(
ElkSubClassOfAxiom originalAxiom,
ModifiableIndexedClassExpression subClass,
ModifiableIndexedClassExpression superClass) {
return new ModifiableElkSubClassOfAxiomConversionImpl(originalAxiom,
subClass, superClass);
}
@Override
public ModifiableElkSubObjectPropertyOfAxiomConversion getElkSubObjectPropertyOfAxiomConversion(
ElkSubObjectPropertyOfAxiom originalAxiom,
ModifiableIndexedPropertyChain subPropertyChain,
ModifiableIndexedObjectProperty superProperty) {
return new ModifiableElkSubObjectPropertyOfAxiomConversionImpl(
originalAxiom, subPropertyChain, superProperty);
}
@Override
public ModifiableElkTransitiveObjectPropertyAxiomConversion getElkTransitiveObjectPropertyAxiomConversion(
ElkTransitiveObjectPropertyAxiom originalAxiom,
ModifiableIndexedPropertyChain subPropertyChain,
ModifiableIndexedObjectProperty superProperty) {
return new ModifiableElkTransitiveObjectPropertyAxiomConversionImpl(
originalAxiom, subPropertyChain, superProperty);
}
@Override
public ModifiableElkDisjointUnionAxiomOwlNothingConversion getElkDisjointUnionAxiomOwlNothingConversion(
ElkDisjointUnionAxiom originalAxiom,
ModifiableIndexedClass definedClass,
ModifiableIndexedClass bottom) {
return new ModifiableElkDisjointUnionAxiomOwlNothingConversionImpl(
originalAxiom, definedClass, bottom);
}
}