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

io.quarkus.devtools.codestarts.CodestartsSelection Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.devtools.codestarts;

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

public class CodestartsSelection {
    private final Set names;

    public CodestartsSelection() {
        this.names = new HashSet<>();
    }

    public void addName(final String codestartName) {
        this.names.add(codestartName);
    }

    public void addNames(final Collection codestartNames) {
        this.names.addAll(codestartNames);
    }

    public Set getNames() {
        return names;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy