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

org.coode.oppl.queryplanner.QueryPlannerVisitor Maven / Gradle / Ivy

package org.coode.oppl.queryplanner;

/** @author Luigi Iannone */
public interface QueryPlannerVisitor {
    /** @param constraintQueryPlannerItem
     *            constraintQueryPlannerItem */
    void visitConstraintQueryPlannerItem(
            ConstraintQueryPlannerItem constraintQueryPlannerItem);

    /** @param assertedAxiomPlannerItem
     *            assertedAxiomPlannerItem */
    void visitAssertedAxiomPlannerItem(AssertedAxiomPlannerItem assertedAxiomPlannerItem);

    /** @param inferredAxiomQueryPlannerItem
     *            inferredAxiomQueryPlannerItem */
    void visitInferredAxiomQueryPlannerItem(
            InferredAxiomQueryPlannerItem inferredAxiomQueryPlannerItem);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy