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

io.legaldocml.akn.visitor.Visitable Maven / Gradle / Ivy

The newest version!
package io.legaldocml.akn.visitor;

/**
 * @author Jacques Militello
 */
public interface Visitable {

    default void accept(AknVisitor visitor) {
        throw new UnsupportedOperationException("must implements accept for [" + getClass() + "]");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy