00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 package com.realtime.crossfire.jxclient.commands;
00023
00024 import com.realtime.crossfire.jxclient.server.crossfire.CrossfireServerConnection;
00025 import org.jetbrains.annotations.NotNull;
00026
00031 public class TestCommand extends AbstractCommand {
00032
00036 private final boolean allArguments;
00037
00045 public TestCommand(@NotNull final String commandName, final boolean allArguments, @NotNull final CrossfireServerConnection crossfireServerConnection) {
00046 super(commandName, crossfireServerConnection);
00047 this.allArguments = allArguments;
00048 }
00049
00053 @Override
00054 public boolean allArguments() {
00055 return allArguments;
00056 }
00057
00061 @Override
00062 public void execute(@NotNull final String args) {
00063 throw new AssertionError();
00064 }
00065 }