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

io.github.parzivalExe.guiApi.antlr.JavaHelper Maven / Gradle / Ivy

Go to download

With GuiAPI you can create Guis for your Bukkit/Spigot-Plugin in seconds while at the same time saving many lines of code

The newest version!
package io.github.parzivalExe.guiApi.antlr;

import java.util.Collection;
import java.util.List;

public class JavaHelper {

    public static void addValuesToList(List list, Collection values) {
        list.addAll(values);
    }

    public static void addValueToList(List list, Object value) {
        list.add(value);
    }

}