com.codelanx.voxelregen.command.ListCommand.java Source code

Java tutorial

Introduction

Here is the source code for com.codelanx.voxelregen.command.ListCommand.java

Source

/*
 * Copyright (C) 2015 Codelanx, All Rights Reserved
 *
 * This work is licensed under a Creative Commons
 * Attribution-NonCommercial-NoDerivs 3.0 Unported License.
 *
 * This program is protected software: You are free to distrubute your
 * own use of this software under the terms of the Creative Commons BY-NC-ND
 * license as published by Creative Commons in the year 2015 or as published
 * by a later date. You may not provide the source files or provide a means
 * of running the software outside of those licensed to use it.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the Creative Commons BY-NC-ND license
 * long with this program. If not, see <https://creativecommons.org/licenses/>.
 */
package com.codelanx.voxelregen.command;

import com.codelanx.codelanxlib.command.CommandNode;
import com.codelanx.codelanxlib.command.CommandStatus;
import com.codelanx.codelanxlib.command.TabInfo;
import com.codelanx.codelanxlib.config.Lang;
import com.codelanx.voxelregen.VoxelLang;
import com.codelanx.voxelregen.VoxelRegen;
import java.util.List;
import java.util.Set;
import org.apache.commons.lang.StringUtils;
import org.bukkit.command.CommandSender;

/**
 * Class description for {@link ListCommand}
 *
 * @since 1.0.0
 * @author 1Rogue
 * @version 1.0.0
 */
public class ListCommand extends CommandNode<VoxelRegen> {

    public ListCommand(VoxelRegen plugin) {
        super(plugin);
    }

    @Override
    public CommandStatus execute(CommandSender sender, String... args) {
        Set<String> names = this.plugin.getRegionNames();
        if (names.isEmpty()) {
            Lang.sendMessage(sender, VoxelLang.COMMAND_LIST_NONE);
        } else {
            Lang.sendMessage(sender, VoxelLang.COMMAND_LIST_FORMAT,
                    StringUtils.join(names, VoxelLang.COMMAND_LIST_SEPARATOR.get()));
        }
        return CommandStatus.SUCCESS;
    }

    @Override
    protected List<String> tabComplete(CommandSender sender, String... args) {
        return TabInfo.BLANK_TAB_COMPLETE;
    }

    @Override
    public String getName() {
        return "list";
    }

    @Override
    public Lang info() {
        return VoxelLang.COMMAND_INFO_LIST;
    }

}