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

com.labs64.netlicensing.util.Visitable Maven / Gradle / Ivy

There is a newer version: 2.10.0-jdk17
Show newest version
package com.labs64.netlicensing.util;

public class Visitable {

    public void accept(final Visitor visitor) throws Exception {
        visitor.visit(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy