//# 2 errors, 542 messages
//#
/*
    //#ServerCommandParser.java:1:1: class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#ServerCommandParser.java:1:1: method: com.dmdirc.commandparser.parsers.ServerCommandParser.com.dmdirc.commandparser.parsers.ServerCommandParser__static_init
 * Copyright (c) 2006-2009 Chris Smith, Shane Mc Cormack, Gregory Holmes
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.dmdirc.commandparser.parsers;

import com.dmdirc.Server;
import com.dmdirc.ServerState;
import com.dmdirc.commandparser.CommandArguments;
import com.dmdirc.commandparser.CommandManager;
import com.dmdirc.commandparser.CommandType;
import com.dmdirc.commandparser.commands.Command;
import com.dmdirc.commandparser.commands.GlobalCommand;
import com.dmdirc.commandparser.commands.ServerCommand;
import com.dmdirc.ui.interfaces.InputWindow;

/**
 * A command parser used in the context of a server.
 * @author chris
 */
public final class ServerCommandParser extends CommandParser {
    
    /**
     * A version number for this class. It should be changed whenever the class
     * structure is changed (or anything else that would prevent serialized
     * objects being unserialized with the new class).
     */
    private static final long serialVersionUID = 1;
    
    /**
     * The server instance that this parser is attached to.
     */
    private final Server server;
    
    /**
     * Creates a new instance of ServerCommandParser.
     * @param newServer The server instance that this parser is attached to
     */
    public ServerCommandParser(final Server newServer) {
        super();
    //#ServerCommandParser.java:58: method: void com.dmdirc.commandparser.parsers.ServerCommandParser.com.dmdirc.commandparser.parsers.ServerCommandParser(Server)
    //#ServerCommandParser.java:58: Warning: suspicious precondition
    //#    The precondition for this.__Tag is not a contiguous range of values
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)
    //#    suspicious precondition index: [11]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): ""._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): "."._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): "<Unknown>"._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): "@"._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): "Config option not found: "._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): "commandhistory"._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): "general"._tainted
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): __Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1).length
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1)[0..4_294_967_295]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandInfo.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandManager.commands
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandManager.parsers
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandType.TYPE_CHANNEL
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandType.TYPE_CHAT
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandType.TYPE_GLOBAL
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandType.TYPE_QUERY
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/CommandType.TYPE_SERVER
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/Command.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/ChannelCommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ChannelCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/CommandParser]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/QueryCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/CommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/GlobalCommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/commandparser/parsers/QueryCommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager$1.$SwitchMap$com$dmdirc$config$ConfigTarget$TYPE
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager.__Descendant_Table[com/dmdirc/config/ConfigManager]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager.__Dispatch_Table.getOptionInt(Ljava/lang/String;Ljava/lang/String;)I
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager.__Dispatch_Table.identityApplies(Lcom/dmdirc/config/Identity;)Z
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigManager.stats
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/ConfigManager]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/ConfigSource]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/Identity]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigSource.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigSource.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigTarget.__Descendant_Table[com/dmdirc/config/ConfigTarget]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigTarget.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigTarget.__Dispatch_Table.getData()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/ConfigTarget.__Dispatch_Table.getType()Lcom/dmdirc/config/ConfigTarget$TYPE;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/Identity.__Descendant_Table[com/dmdirc/config/Identity]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/Identity.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/Identity.__Dispatch_Table.addListener(Lcom/dmdirc/interfaces/ConfigChangeListener;)V
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/Identity.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/Identity.__Dispatch_Table.getTarget()Lcom/dmdirc/config/ConfigTarget;
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/Identity.__Dispatch_Table.hasOption(Ljava/lang/String;Ljava/lang/String;)Z
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.__Class_Obj.__Lock
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig.__Tag
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig.file
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig.sources
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.identities
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.managers
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): newServer
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this
    //#input(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.__Tag
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): java.lang.StringBuilder:toString(...)._tainted
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ArrayList(getSources#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ArrayList(getSources#1).__Lock
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).__Lock
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).__Tag
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).channel
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).file
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).ircd
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).listeners
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).network
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).server
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).sources
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new Hashtable(CommandParser#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new MapList(ConfigManager#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new RollingList(CommandParser#2) num objects
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.__Tag
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.commands
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.history
    //#output(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.server
    //#new obj(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): java.lang.StringBuilder:toString(...)
    //#new obj(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ArrayList(getSources#1)
    //#new obj(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1)
    //#new obj(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new Hashtable(CommandParser#1)
    //#new obj(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new MapList(ConfigManager#1)
    //#new obj(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new RollingList(CommandParser#2)
    //#pre[10] (void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): init'ed(com/dmdirc/config/IdentityManager.globalconfig)
    //#pre[11] (void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.__Tag in {com/dmdirc/commandparser/parsers/ChannelCommandParser, com/dmdirc/commandparser/parsers/CommandParser, com/dmdirc/commandparser/parsers/GlobalCommandParser, com/dmdirc/commandparser/parsers/QueryCommandParser, com/dmdirc/commandparser/parsers/ServerCommandParser}
    //#pre[1] (void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): (soft) init'ed(com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1)[0..4_294_967_295])
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig == One-of{old com/dmdirc/config/IdentityManager.globalconfig, &new ConfigManager(getGlobalConfig#1)}
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): com/dmdirc/config/IdentityManager.globalconfig != null
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): java.lang.StringBuilder:toString(...)._tainted == 0
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.__Tag == old this.__Tag
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.__Tag in {com/dmdirc/commandparser/parsers/ChannelCommandParser, com/dmdirc/commandparser/parsers/CommandParser, com/dmdirc/commandparser/parsers/GlobalCommandParser, com/dmdirc/commandparser/parsers/QueryCommandParser, com/dmdirc/commandparser/parsers/ServerCommandParser}
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.commands == &new Hashtable(CommandParser#1)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.history == &new RollingList(CommandParser#2)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): this.server == newServer
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): init'ed(this.server)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ArrayList(getSources#1) num objects <= 1
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1) num objects == new ArrayList(getSources#1) num objects
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new MapList(ConfigManager#1) num objects == new ArrayList(getSources#1) num objects
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): init'ed(new ArrayList(getSources#1).__Lock)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): init'ed(new ConfigManager(getGlobalConfig#1).__Lock)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).__Tag == com/dmdirc/config/ConfigManager
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).channel == &java.lang.StringBuilder:toString(...)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): init'ed(new ConfigManager(getGlobalConfig#1).file)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).ircd == &""
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).network == &""
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).server == &""
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).listeners == &new MapList(ConfigManager#1)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new ConfigManager(getGlobalConfig#1).sources == &new ArrayList(getSources#1)
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new Hashtable(CommandParser#1) num objects == 1
    //#post(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): new RollingList(CommandParser#2) num objects == 1
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:loadCommands
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Hashtable
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.ArrayList
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.logger.Logger:assertTrue
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.List:iterator
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Iterator:hasNext
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Iterator:next
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.Throwable:__curr_excep_obj
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.List:add
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:getTarget
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.config.ConfigTarget$TYPE:ordinal
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.String:equalsIgnoreCase
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:addListener
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:getSources
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.config.ConfigSource
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.util.MapList
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:addConfigManager
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Collections:sort
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Map:get
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.Integer:intValue
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.Integer:valueOf
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Map:put
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:hasOption
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:getOption
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.IllegalArgumentException
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.String:trim
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.Integer:parseInt
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.util.ConfigFile:getKeyDomain
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.util.ConfigFile:isKeyDomain
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.util.RollingList
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.HashMap
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:getName
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:getType
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Map:entrySet
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Set:iterator
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Map$Entry:getKey
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.commandparser.CommandType:equals
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.lang.String:equals
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:java.util.Map$Entry:getValue
    //#unanalyzed(void com.dmdirc.commandparser.parsers.ServerCommandParser(Server)): Effects-of-calling:com.dmdirc.util.MapList:add
        
        server = newServer;
    }
    //#ServerCommandParser.java:61: end of method: void com.dmdirc.commandparser.parsers.ServerCommandParser.com.dmdirc.commandparser.parsers.ServerCommandParser(Server)
    
    /** Loads the relevant commands into the parser. */
    @Override
    protected void loadCommands() {
        CommandManager.loadCommands(this, CommandType.TYPE_GLOBAL, CommandType.TYPE_SERVER);
    //#ServerCommandParser.java:66: method: void com.dmdirc.commandparser.parsers.ServerCommandParser.loadCommands()
    //#ServerCommandParser.java:66: ?precondition failure
    //#    com/dmdirc/commandparser/CommandManager.loadCommands: (soft) supertypes[0..4_294_967_295] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void loadCommands()
    //#    basic block: Entry_BB_1
    //#    assertion: (soft) loadCommands.Param_1[0..4_294_967_295] != null
    //#    callee: void com/dmdirc/commandparser/CommandManager.loadCommands(CommandParser, CommandType[])
    //#    callee assertion: (soft) supertypes[0..4_294_967_295] != null
    //#    callee file: CommandManager.java
    //#    callee precondition index: [5]
    //#    callee srcpos: 320
    //#    VN: loadCommands.Param_1[0..4_294_967_295]
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null, Invalid}
    //#    Attribs:  Ptr  null in Bad  Soft
    //#input(void loadCommands()): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandInfo.__Descendant_Table[others]
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandManager.commands
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandManager.parsers
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandType.TYPE_CHANNEL
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandType.TYPE_CHAT
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandType.TYPE_GLOBAL
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandType.TYPE_QUERY
    //#input(void loadCommands()): com/dmdirc/commandparser/CommandType.TYPE_SERVER
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/Command.__Descendant_Table[others]
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void loadCommands()): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void loadCommands()): this
    //#input(void loadCommands()): this.commands
    //#pre[2] (void loadCommands()): (soft) this.commands != null
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.HashMap
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Iterator:hasNext
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Iterator:next
    //#unanalyzed(void loadCommands()): Effects-of-calling:getName
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Map:put
    //#unanalyzed(void loadCommands()): Effects-of-calling:getType
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Map:entrySet
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Set:iterator
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Map$Entry:getKey
    //#unanalyzed(void loadCommands()): Effects-of-calling:com.dmdirc.commandparser.CommandType:equals
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.lang.String:equals
    //#unanalyzed(void loadCommands()): Effects-of-calling:java.util.Map$Entry:getValue
    //#unanalyzed(void loadCommands()): Effects-of-calling:com.dmdirc.util.MapList:add
    }
    //#ServerCommandParser.java:67: end of method: void com.dmdirc.commandparser.parsers.ServerCommandParser.loadCommands()
    
    /** {@inheritDoc} */
    @Override
    protected void executeCommand(final InputWindow origin,
            final boolean isSilent, final Command command, final CommandArguments args) {
        if (command instanceof ServerCommand) {
    //#ServerCommandParser.java:73: method: void com.dmdirc.commandparser.parsers.ServerCommandParser.executeCommand(InputWindow, bool, Command, CommandArguments)
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): __Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): __Descendant_Table[others]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): __Dispatch_Table.getCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Lcom/dmdirc/commandparser/commands/CommandOptions;
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): __Dispatch_Table.hasCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Z
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): args
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com.dmdirc.ServerState.CONNECTED
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com.dmdirc.ServerState.CONNECTING
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/CommandOptions.__Descendant_Table[com/dmdirc/commandparser/commands/CommandOptions]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/CommandOptions.__Descendant_Table[others]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/CommandOptions.__Dispatch_Table.allowOffline()Z
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/GlobalCommand.__Descendant_Table[others]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/ServerCommand]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/AllChannels]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Away]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Back]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/ChangeServer]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Ctcp]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Disconnect]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Ignore]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/JoinChannelCommand]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Message]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Nick]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Notice]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/OpenQuery]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/RawServerCommand]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Raw]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Reconnect]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[com/dmdirc/commandparser/commands/server/Umode]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Descendant_Table[others]
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.execute(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/Server;ZLcom/dmdirc/commandparser/CommandArguments;)V
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): command
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): command.__Tag
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): isSilent
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): origin
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): this
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): this.__Tag
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): this.server
    //#pre[2] (void executeCommand(InputWindow, bool, Command, CommandArguments)): command != null
    //#pre[5] (void executeCommand(InputWindow, bool, Command, CommandArguments)): (soft) origin != null
    //#pre[7] (void executeCommand(InputWindow, bool, Command, CommandArguments)): (soft) this.__Tag == com/dmdirc/commandparser/parsers/ServerCommandParser
    //#pre[8] (void executeCommand(InputWindow, bool, Command, CommandArguments)): (soft) this.server != null
    //#presumption(void executeCommand(InputWindow, bool, Command, CommandArguments)): init'ed(com.dmdirc.ServerState.CONNECTED)
    //#presumption(void executeCommand(InputWindow, bool, Command, CommandArguments)): init'ed(com.dmdirc.ServerState.CONNECTING)
    //#presumption(void executeCommand(InputWindow, bool, Command, CommandArguments)): java.lang.Class:getAnnotation(...)@286 != null
    //#presumption(void executeCommand(InputWindow, bool, Command, CommandArguments)): java.lang.Class:getAnnotation(...)@286.__Tag == com/dmdirc/commandparser/commands/CommandOptions
    //#unanalyzed(void executeCommand(InputWindow, bool, Command, CommandArguments)): Effects-of-calling:java.lang.Object:getClass
    //#unanalyzed(void executeCommand(InputWindow, bool, Command, CommandArguments)): Effects-of-calling:java.lang.Class:isAnnotationPresent
    //#unanalyzed(void executeCommand(InputWindow, bool, Command, CommandArguments)): Effects-of-calling:java.lang.Class:getAnnotation
    //#test_vector(void executeCommand(InputWindow, bool, Command, CommandArguments)): command.__Tag: {0..441_087, 441_089..458_495, 458_497..459_263, 459_265..459_775, 459_777..460_287, 460_289..460_799, 460_801..461_311, 461_313..461_823, 461_825..462_335, 462_337..462_847, 462_849..463_359, 463_361..463_871, 463_873..464_383, 464_385..464_895, 464_897..465_407, 465_409..465_919, 465_921..466_431, 466_433..+Inf}, {441_088, 458_496, 459_264, 459_776, 460_288, 460_800, 461_312, 461_824, 462_336, 462_848, 463_360, 463_872, 464_384, 464_896, 465_408, 465_920, 466_432}
    //#test_vector(void executeCommand(InputWindow, bool, Command, CommandArguments)): isSilent: {1}, {0}
    //#test_vector(void executeCommand(InputWindow, bool, Command, CommandArguments)): allowOffline(...)@74: {1}, {0}
    //#test_vector(void executeCommand(InputWindow, bool, Command, CommandArguments)): com.dmdirc.Server:getParser(...)@74: Inverse{null}, Addr_Set{null}
    //#test_vector(void executeCommand(InputWindow, bool, Command, CommandArguments)): java.lang.Class:isAnnotationPresent(...)@275: {0}, {1}
            if (hasCommandOptions(command) && !getCommandOptions(command).allowOffline()
    //#ServerCommandParser.java:74: Warning: method not available - call not analyzed
    //#    call on bool allowOffline()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: bool allowOffline()
    //#ServerCommandParser.java:74: Warning: method not available - call not analyzed
    //#    call on ServerState com.dmdirc.Server:getState()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: ServerState com.dmdirc.Server:getState()
    //#ServerCommandParser.java:74: Warning: method not available - call not analyzed
    //#    call on IRCParser com.dmdirc.Server:getParser()
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: IRCParser com.dmdirc.Server:getParser()
                    && ((server.getState() != ServerState.CONNECTED
                    && server.getState() != ServerState.CONNECTING)
                    || server.getParser() == null)) {
                if (!isSilent) {
                    origin.addLine("commandError", "You must be connected to use this command");
    //#ServerCommandParser.java:79: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.ui.interfaces.InputWindow:addLine(String, Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: void com.dmdirc.ui.interfaces.InputWindow:addLine(String, Object[])
                }
            } else {
                ((ServerCommand) command).execute(origin, server, isSilent, args);
    //#ServerCommandParser.java:82: Warning: call too complex - analysis skipped
    //#    call on void execute(InputWindow, Server, bool, CommandArguments)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: void execute(InputWindow, Server, bool, CommandArguments)
            }
        } else {
            ((GlobalCommand) command).execute(origin, isSilent, args);
    //#ServerCommandParser.java:85: ?ClassCastException check
    //#    com/dmdirc/commandparser/commands/GlobalCommand.__Descendant_Table[command.__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    basic block: bb_17
    //#    assertion: com/dmdirc/commandparser/commands/GlobalCommand.__Descendant_Table[command.__Tag] != null
    //#    VN: !(com/dmdirc/commandparser/commands/GlobalCommand.__Descendant_Table[command.__Tag] == null)
    //#    Expected: {-Inf..-1, 1..+Inf}
    //#    Bad: {0}
    //#    Attribs:  Int  Bad singleton  Bad overlaps +/-1000  Bad > Exp
    //#ServerCommandParser.java:85: Warning: call too complex - analysis skipped
    //#    call on void execute(InputWindow, bool, CommandArguments)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: void execute(InputWindow, bool, CommandArguments)
        }
    }
    //#ServerCommandParser.java:87: end of method: void com.dmdirc.commandparser.parsers.ServerCommandParser.executeCommand(InputWindow, bool, Command, CommandArguments)
    
    /**
     * Called when the input was a line of text that was not a command. This normally
     * means it is sent to the server/channel/user as-is, with no further processing.
     * @param origin The window in which the command was typed
     * @param line The line input by the user
     */
    @Override
    protected void handleNonCommand(final InputWindow origin, final String line) {
        server.sendLine(line);
    //#ServerCommandParser.java:97: method: void com.dmdirc.commandparser.parsers.ServerCommandParser.handleNonCommand(InputWindow, String)
    //#ServerCommandParser.java:97: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.Server:sendLine(String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.ServerCommandParser
    //#    method: void handleNonCommand(InputWindow, String)
    //#    unanalyzed callee: void com.dmdirc.Server:sendLine(String)
    //#input(void handleNonCommand(InputWindow, String)): line
    //#input(void handleNonCommand(InputWindow, String)): this
    //#input(void handleNonCommand(InputWindow, String)): this.server
    //#pre[3] (void handleNonCommand(InputWindow, String)): this.server != null
    }
    //#ServerCommandParser.java:98: end of method: void com.dmdirc.commandparser.parsers.ServerCommandParser.handleNonCommand(InputWindow, String)
    
}
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser]
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.addHistory(Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.executeCommand(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/commands/Command;Lcom/dmdirc/commandparser/CommandArguments;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.getCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Lcom/dmdirc/commandparser/commands/CommandOptions;
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.getCommandTime(Ljava/lang/String;)J
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.getCommands()Ljava/util/Map;
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.handleInvalidCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/commandparser/CommandArguments;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.handleNonCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.hasCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Z
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.loadCommands()V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.parseCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.parseCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;Z)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.parseCommandCtrl(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.registerCommand(Lcom/dmdirc/commandparser/commands/Command;Lcom/dmdirc/commandparser/CommandInfo;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.unregisterCommand(Lcom/dmdirc/commandparser/CommandInfo;)V
    //#output(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser]
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser] == &__Dispatch_Table
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser] == &__Dispatch_Table
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.addHistory(Ljava/lang/String;)V == &com/dmdirc/commandparser/parsers/CommandParser.addHistory
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.executeCommand(Lcom/dmdirc/ui/interfaces/InputWindow;ZLcom/dmdirc/commandparser/commands/Command;Lcom/dmdirc/commandparser/CommandArguments;)V == &executeCommand
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.getCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Lcom/dmdirc/commandparser/commands/CommandOptions; == &com/dmdirc/commandparser/parsers/CommandParser.getCommandOptions
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.getCommandTime(Ljava/lang/String;)J == &com/dmdirc/commandparser/parsers/CommandParser.getCommandTime
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.getCommands()Ljava/util/Map; == &com/dmdirc/commandparser/parsers/CommandParser.getCommands
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.handleInvalidCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/commandparser/CommandArguments;)V == &com/dmdirc/commandparser/parsers/CommandParser.handleInvalidCommand
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.handleNonCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V == &handleNonCommand
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.hasCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Z == &com/dmdirc/commandparser/parsers/CommandParser.hasCommandOptions
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.loadCommands()V == &loadCommands
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.parseCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V == &com/dmdirc/commandparser/parsers/CommandParser.parseCommand
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.parseCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;Z)V == &com/dmdirc/commandparser/parsers/CommandParser.parseCommand
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.parseCommandCtrl(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V == &com/dmdirc/commandparser/parsers/CommandParser.parseCommandCtrl
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.registerCommand(Lcom/dmdirc/commandparser/commands/Command;Lcom/dmdirc/commandparser/CommandInfo;)V == &com/dmdirc/commandparser/parsers/CommandParser.registerCommand
    //#post(com.dmdirc.commandparser.parsers.ServerCommandParser__static_init): __Dispatch_Table.unregisterCommand(Lcom/dmdirc/commandparser/CommandInfo;)V == &com/dmdirc/commandparser/parsers/CommandParser.unregisterCommand
    //#ServerCommandParser.java:: end of method: com.dmdirc.commandparser.parsers.ServerCommandParser.com.dmdirc.commandparser.parsers.ServerCommandParser__static_init
    //#ServerCommandParser.java:: end of class: com.dmdirc.commandparser.parsers.ServerCommandParser
