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

uk.ac.manchester.cs.owl.owlapi.CollectionContainerVisitor Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package uk.ac.manchester.cs.owl.owlapi;

/**
 * @author ignazio
 * @param 
 *        collection type
 */
public interface CollectionContainerVisitor {

    /**
     * @param c
     *        collection to visit
     */
    void visit(CollectionContainer c);

    /**
     * @param c
     *        item to visit
     */
    void visitItem(T c);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy