001package fr.aumgn.bukkitutils.command.arg;
002
003public interface CommandArgFactory<T extends CommandArg<?>> {
004
005    /**
006     * Factory method which creates the command arg for
007     * the given String.
008     */
009    public abstract T createCommandArg(String string);
010}