mirror of
				https://github.com/SunNetservers/MiniGames.git
				synced 2025-11-04 11:43:45 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
package net.knarcraft.minigames.command.dropper;
 | 
						|
 | 
						|
import net.knarcraft.minigames.util.TabCompleteHelper;
 | 
						|
import org.bukkit.command.Command;
 | 
						|
import org.bukkit.command.CommandSender;
 | 
						|
import org.bukkit.command.TabCompleter;
 | 
						|
import org.jetbrains.annotations.NotNull;
 | 
						|
import org.jetbrains.annotations.Nullable;
 | 
						|
 | 
						|
import java.util.ArrayList;
 | 
						|
import java.util.List;
 | 
						|
 | 
						|
import static net.knarcraft.minigames.util.TabCompleteHelper.filterMatchingContains;
 | 
						|
 | 
						|
/**
 | 
						|
 * The tab-completer for the edit arena command
 | 
						|
 */
 | 
						|
public class EditDropperArenaTabCompleter implements TabCompleter {
 | 
						|
 | 
						|
    @Override
 | 
						|
    public @Nullable List<String> onTabComplete(@NotNull CommandSender sender, @NotNull Command command,
 | 
						|
                                                @NotNull String label, @NotNull String[] arguments) {
 | 
						|
        if (arguments.length == 1) {
 | 
						|
            return filterMatchingContains(TabCompleteHelper.getDropperArenas(), arguments[0]);
 | 
						|
        } else if (arguments.length == 2) {
 | 
						|
            return filterMatchingContains(TabCompleteHelper.getDropperArenaProperties(), arguments[1]);
 | 
						|
        } else if (arguments.length == 3) {
 | 
						|
            //TODO: Tab-complete possible values for the given property
 | 
						|
            return null;
 | 
						|
        } else {
 | 
						|
            return new ArrayList<>();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
}
 |