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

io.vertx.quiz.ScanBase Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.quiz;

import io.vertx.up.runtime.ZeroPack;

import java.util.HashSet;
import java.util.Set;

public class ScanBase {

    private final transient Set> classes;

    public ScanBase() {
        this.classes = ZeroPack.getClasses();
    }

    protected Set> getClasses() {
        return new HashSet<>(this.classes);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy