|
| 1 | +/* |
| 2 | + * To change this license header, choose License Headers in Project Properties. |
| 3 | + * To change this template file, choose Tools | Templates |
| 4 | + * and open the template in the editor. |
| 5 | + */ |
| 6 | + |
| 7 | +package fr.zcraft.zlib.components.commands2; |
| 8 | + |
| 9 | +import java.util.Collection; |
| 10 | +import org.apache.commons.lang.NotImplementedException; |
| 11 | +import org.bukkit.command.CommandSender; |
| 12 | + |
| 13 | +public class CommandData<T extends CommandNode> implements CommandNode<T> |
| 14 | +{ |
| 15 | + |
| 16 | + @Override |
| 17 | + public T getParent() |
| 18 | + { |
| 19 | + throw new NotImplementedException(); |
| 20 | + } |
| 21 | + |
| 22 | + @Override |
| 23 | + public Collection getChildren() |
| 24 | + { |
| 25 | + throw new NotImplementedException(); |
| 26 | + } |
| 27 | + |
| 28 | + @Override |
| 29 | + public String getName() |
| 30 | + { |
| 31 | + throw new NotImplementedException(); |
| 32 | + } |
| 33 | + |
| 34 | + @Override |
| 35 | + public String[] getAliases() |
| 36 | + { |
| 37 | + throw new NotImplementedException(); |
| 38 | + } |
| 39 | + |
| 40 | + @Override |
| 41 | + public String getShortDescription() |
| 42 | + { |
| 43 | + throw new NotImplementedException(); |
| 44 | + } |
| 45 | + |
| 46 | + @Override |
| 47 | + public String getUsage() |
| 48 | + { |
| 49 | + throw new NotImplementedException(); |
| 50 | + } |
| 51 | + |
| 52 | + @Override |
| 53 | + public void run(CommandSender sender, String... arguments) throws CommandException |
| 54 | + { |
| 55 | + throw new NotImplementedException(); |
| 56 | + } |
| 57 | + |
| 58 | + @Override |
| 59 | + public Collection complete(CommandSender sender, String... arguments) throws CommandException |
| 60 | + { |
| 61 | + throw new NotImplementedException(); |
| 62 | + } |
| 63 | + |
| 64 | + @Override |
| 65 | + public boolean canExecute(CommandSender sender) |
| 66 | + { |
| 67 | + throw new NotImplementedException(); |
| 68 | + } |
| 69 | + |
| 70 | +} |
0 commit comments