//# 2 errors, 746 messages
//#
/*
    //#GlobalCommandParser.java:1:1: class: com.dmdirc.commandparser.parsers.GlobalCommandParser
    //#GlobalCommandParser.java:1:1: method: com.dmdirc.commandparser.parsers.GlobalCommandParser.com.dmdirc.commandparser.parsers.GlobalCommandParser__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.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.logger.ErrorLevel;
import com.dmdirc.logger.Logger;
import com.dmdirc.ui.interfaces.InputWindow;

/**
 * The command parser used for global commands.
 * @author chris
 */
public final class GlobalCommandParser 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 singleton instance of this command parser.
     */
    private static GlobalCommandParser me;
    
    /**
     * Creates a new instance of the GlobalCommandParser.
     */
    private GlobalCommandParser() {
        super();
    //#GlobalCommandParser.java:56: method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.com.dmdirc.commandparser.parsers.GlobalCommandParser()
    //#GlobalCommandParser.java:56: Warning: suspicious precondition
    //#    The precondition for this.__Tag is not a contiguous range of values
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.commandparser.parsers.GlobalCommandParser
    //#    method: void com.dmdirc.commandparser.parsers.GlobalCommandParser()
    //#    suspicious precondition index: [10]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): ""._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): "."._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): "<Unknown>"._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): "@"._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): "Config option not found: "._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): "commandhistory"._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): "general"._tainted
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): __Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1).length
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): 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.GlobalCommandParser()): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandInfo.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandManager.commands
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandManager.parsers
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_CHANNEL
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_CHAT
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_GLOBAL
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_QUERY
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_SERVER
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/Command.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/ChannelCommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ChannelCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/CommandParser]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/QueryCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/QueryCommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/commandparser/parsers/ServerCommandParser.__Dispatch_Table.loadCommands()V
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager$1.$SwitchMap$com$dmdirc$config$ConfigTarget$TYPE
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager.__Descendant_Table[com/dmdirc/config/ConfigManager]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager.__Dispatch_Table.getOptionInt(Ljava/lang/String;Ljava/lang/String;)I
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager.__Dispatch_Table.identityApplies(Lcom/dmdirc/config/Identity;)Z
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigManager.stats
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/ConfigManager]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/ConfigSource]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/Identity]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigSource.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Descendant_Table[com/dmdirc/config/ConfigTarget]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Dispatch_Table.getData()Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Dispatch_Table.getType()Lcom/dmdirc/config/ConfigTarget$TYPE;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/Identity.__Descendant_Table[com/dmdirc/config/Identity]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/Identity.__Descendant_Table[others]
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.addListener(Lcom/dmdirc/interfaces/ConfigChangeListener;)V
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.getTarget()Lcom/dmdirc/config/ConfigTarget;
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.hasOption(Ljava/lang/String;Ljava/lang/String;)Z
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.__Class_Obj.__Lock
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig.__Tag
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig.file
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig.sources
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.identities
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.managers
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this
    //#input(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this.__Tag
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): java.lang.StringBuilder:toString(...)._tainted
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ArrayList(getSources#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ArrayList(getSources#1).__Lock
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).__Lock
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).__Tag
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).channel
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).file
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).ircd
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).listeners
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).network
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).server
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).sources
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new Hashtable(CommandParser#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new MapList(ConfigManager#1) num objects
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new RollingList(CommandParser#2) num objects
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this.__Tag
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this.commands
    //#output(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this.history
    //#new obj(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): java.lang.StringBuilder:toString(...)
    //#new obj(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ArrayList(getSources#1)
    //#new obj(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1)
    //#new obj(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new Hashtable(CommandParser#1)
    //#new obj(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new MapList(ConfigManager#1)
    //#new obj(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new RollingList(CommandParser#2)
    //#pre[9] (void com.dmdirc.commandparser.parsers.GlobalCommandParser()): init'ed(com/dmdirc/config/IdentityManager.globalconfig)
    //#pre[10] (void com.dmdirc.commandparser.parsers.GlobalCommandParser()): 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.GlobalCommandParser()): (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.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig == One-of{old com/dmdirc/config/IdentityManager.globalconfig, &new ConfigManager(getGlobalConfig#1)}
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig != null
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): java.lang.StringBuilder:toString(...)._tainted == 0
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this.__Tag == old this.__Tag
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): 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.GlobalCommandParser()): this.commands == &new Hashtable(CommandParser#1)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): this.history == &new RollingList(CommandParser#2)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ArrayList(getSources#1) num objects <= 1
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1) num objects == new ArrayList(getSources#1) num objects
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new MapList(ConfigManager#1) num objects == new ArrayList(getSources#1) num objects
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): init'ed(new ArrayList(getSources#1).__Lock)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): init'ed(new ConfigManager(getGlobalConfig#1).__Lock)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).__Tag == com/dmdirc/config/ConfigManager
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).channel == &java.lang.StringBuilder:toString(...)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): init'ed(new ConfigManager(getGlobalConfig#1).file)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).ircd == &""
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).network == &""
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).server == &""
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).listeners == &new MapList(ConfigManager#1)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new ConfigManager(getGlobalConfig#1).sources == &new ArrayList(getSources#1)
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new Hashtable(CommandParser#1) num objects == 1
    //#post(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): new RollingList(CommandParser#2) num objects == 1
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:loadCommands
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Hashtable
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.ArrayList
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.logger.Logger:assertTrue
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.List:iterator
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Iterator:hasNext
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Iterator:next
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.Throwable:__curr_excep_obj
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.List:add
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:getTarget
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.config.ConfigTarget$TYPE:ordinal
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.String:equalsIgnoreCase
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:addListener
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:getSources
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.config.ConfigSource
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.util.MapList
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:addConfigManager
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Collections:sort
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Map:get
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.Integer:intValue
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.Integer:valueOf
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Map:put
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:hasOption
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:getOption
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.IllegalArgumentException
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.String:trim
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.Integer:parseInt
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.util.ConfigFile:getKeyDomain
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.util.ConfigFile:isKeyDomain
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.util.RollingList
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.HashMap
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:getName
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:getType
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Map:entrySet
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Set:iterator
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Map$Entry:getKey
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.commandparser.CommandType:equals
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.lang.String:equals
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:java.util.Map$Entry:getValue
    //#unanalyzed(void com.dmdirc.commandparser.parsers.GlobalCommandParser()): Effects-of-calling:com.dmdirc.util.MapList:add
    }
    //#GlobalCommandParser.java:57: end of method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.com.dmdirc.commandparser.parsers.GlobalCommandParser()
    
    /**
     * Retrieves a singleton instance of the global command parser.
     * @return A GlobalCommandParser
     */
    public static synchronized GlobalCommandParser getGlobalCommandParser() {
        if (me == null) {
    //#GlobalCommandParser.java:64: method: GlobalCommandParser com.dmdirc.commandparser.parsers.GlobalCommandParser.getGlobalCommandParser()
    //#input(GlobalCommandParser getGlobalCommandParser()): ""._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): "."._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): "<Unknown>"._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): "@"._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): "Config option not found: "._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): "commandhistory"._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): "general"._tainted
    //#input(GlobalCommandParser getGlobalCommandParser()): __Class_Obj.__Lock
    //#input(GlobalCommandParser getGlobalCommandParser()): __Dispatch_Table.loadCommands()V
    //#input(GlobalCommandParser getGlobalCommandParser()): com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1).length
    //#input(GlobalCommandParser getGlobalCommandParser()): com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1)[0..4_294_967_295]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/addons/urlcatcher/UrlListCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandInfo.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandInfo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandManager.commands
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandManager.parsers
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_CHANNEL
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_CHAT
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_GLOBAL
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_QUERY
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/CommandType.TYPE_SERVER
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/ChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/ChatCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/Command.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/GlobalCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/QueryCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/ServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Ban.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ChannelSettings.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Cycle.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/KickReason.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Mode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Names.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/Part.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/SetNickColour.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/channel/ShowTopic.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/chat/Me.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Active.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/AliasCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/AllServers.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Clear.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Debug.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Echo.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Exit.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Help.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Ifplugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/LoadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/NewServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Notify.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/OpenWindow.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadActions.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadIdentities.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/ReloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/SaveConfig.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/Set.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/global/UnloadPlugin.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/AllChannels.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Away.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Back.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/ChangeServer.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ctcp.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Disconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Ignore.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/JoinChannelCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Message.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Nick.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Notice.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/OpenQuery.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Raw.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/RawServerCommand.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Reconnect.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getName()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/commands/server/Umode.__Dispatch_Table.getType()Lcom/dmdirc/commandparser/CommandType;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/ChannelCommandParser.__Dispatch_Table.loadCommands()V
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ChannelCommandParser]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/CommandParser]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/QueryCommandParser]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/ServerCommandParser]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/CommandParser.__Dispatch_Table.loadCommands()V
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/QueryCommandParser.__Dispatch_Table.loadCommands()V
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/commandparser/parsers/ServerCommandParser.__Dispatch_Table.loadCommands()V
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager$1.$SwitchMap$com$dmdirc$config$ConfigTarget$TYPE
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager.__Descendant_Table[com/dmdirc/config/ConfigManager]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager.__Dispatch_Table.getOptionInt(Ljava/lang/String;Ljava/lang/String;)I
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager.__Dispatch_Table.identityApplies(Lcom/dmdirc/config/Identity;)Z
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigManager.stats
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/ConfigManager]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/ConfigSource]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[com/dmdirc/config/Identity]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigSource.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigSource.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Descendant_Table[com/dmdirc/config/ConfigTarget]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Dispatch_Table.getData()Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/ConfigTarget.__Dispatch_Table.getType()Lcom/dmdirc/config/ConfigTarget$TYPE;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/Identity.__Descendant_Table[com/dmdirc/config/Identity]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/Identity.__Descendant_Table[others]
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.addListener(Lcom/dmdirc/interfaces/ConfigChangeListener;)V
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.getOption(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.getTarget()Lcom/dmdirc/config/ConfigTarget;
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/Identity.__Dispatch_Table.hasOption(Ljava/lang/String;Ljava/lang/String;)Z
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.__Class_Obj.__Lock
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig.__Tag
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig.file
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig.sources
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.identities
    //#input(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.managers
    //#input(GlobalCommandParser getGlobalCommandParser()): me
    //#output(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig
    //#output(GlobalCommandParser getGlobalCommandParser()): java.lang.StringBuilder:toString(...)._tainted
    //#output(GlobalCommandParser getGlobalCommandParser()): me
    //#output(GlobalCommandParser getGlobalCommandParser()): new ArrayList(getSources#1) num objects
    //#output(GlobalCommandParser getGlobalCommandParser()): new ArrayList(getSources#1).__Lock
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1) num objects
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).__Lock
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).__Tag
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).channel
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).file
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).ircd
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).listeners
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).network
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).server
    //#output(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).sources
    //#output(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1) num objects
    //#output(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1).__Tag
    //#output(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1).commands
    //#output(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1).history
    //#output(GlobalCommandParser getGlobalCommandParser()): new Hashtable(CommandParser#1) num objects
    //#output(GlobalCommandParser getGlobalCommandParser()): new MapList(ConfigManager#1) num objects
    //#output(GlobalCommandParser getGlobalCommandParser()): new RollingList(CommandParser#2) num objects
    //#output(GlobalCommandParser getGlobalCommandParser()): return_value
    //#new obj(GlobalCommandParser getGlobalCommandParser()): java.lang.StringBuilder:toString(...)
    //#new obj(GlobalCommandParser getGlobalCommandParser()): new ArrayList(getSources#1)
    //#new obj(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1)
    //#new obj(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1)
    //#new obj(GlobalCommandParser getGlobalCommandParser()): new Hashtable(CommandParser#1)
    //#new obj(GlobalCommandParser getGlobalCommandParser()): new MapList(ConfigManager#1)
    //#new obj(GlobalCommandParser getGlobalCommandParser()): new RollingList(CommandParser#2)
    //#pre[10] (GlobalCommandParser getGlobalCommandParser()): init'ed(me)
    //#pre[1] (GlobalCommandParser getGlobalCommandParser()): (soft) init'ed(com.dmdirc.config.ConfigManager$1__static_init.new int[](ConfigManager$1__static_init#1)[0..4_294_967_295])
    //#pre[9] (GlobalCommandParser getGlobalCommandParser()): (soft) init'ed(com/dmdirc/config/IdentityManager.globalconfig)
    //#post(GlobalCommandParser getGlobalCommandParser()): com/dmdirc/config/IdentityManager.globalconfig == One-of{old com/dmdirc/config/IdentityManager.globalconfig, &new ConfigManager(getGlobalConfig#1)}
    //#post(GlobalCommandParser getGlobalCommandParser()): init'ed(com/dmdirc/config/IdentityManager.globalconfig)
    //#post(GlobalCommandParser getGlobalCommandParser()): java.lang.StringBuilder:toString(...)._tainted == 0
    //#post(GlobalCommandParser getGlobalCommandParser()): me == One-of{old me, &new GlobalCommandParser(getGlobalCommandParser#1)}
    //#post(GlobalCommandParser getGlobalCommandParser()): me != null
    //#post(GlobalCommandParser getGlobalCommandParser()): return_value == me
    //#post(GlobalCommandParser getGlobalCommandParser()): new ArrayList(getSources#1) num objects <= 1
    //#post(GlobalCommandParser getGlobalCommandParser()): init'ed(new ArrayList(getSources#1).__Lock)
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1) num objects <= 1
    //#post(GlobalCommandParser getGlobalCommandParser()): init'ed(new ConfigManager(getGlobalConfig#1).__Lock)
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).__Tag == com/dmdirc/config/ConfigManager
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).channel == &java.lang.StringBuilder:toString(...)
    //#post(GlobalCommandParser getGlobalCommandParser()): init'ed(new ConfigManager(getGlobalConfig#1).file)
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).ircd == &""
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).listeners == &new MapList(ConfigManager#1)
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).network == &""
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).server == &""
    //#post(GlobalCommandParser getGlobalCommandParser()): new ConfigManager(getGlobalConfig#1).sources == &new ArrayList(getSources#1)
    //#post(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1) num objects <= 1
    //#post(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1).__Tag == com/dmdirc/commandparser/parsers/GlobalCommandParser
    //#post(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1).commands == &new Hashtable(CommandParser#1)
    //#post(GlobalCommandParser getGlobalCommandParser()): new GlobalCommandParser(getGlobalCommandParser#1).history == &new RollingList(CommandParser#2)
    //#post(GlobalCommandParser getGlobalCommandParser()): new Hashtable(CommandParser#1) num objects <= 1
    //#post(GlobalCommandParser getGlobalCommandParser()): new MapList(ConfigManager#1) num objects <= 1
    //#post(GlobalCommandParser getGlobalCommandParser()): new RollingList(CommandParser#2) num objects <= 1
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.commandparser.parsers.CommandParser
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:loadCommands
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Hashtable
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.ArrayList
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.logger.Logger:assertTrue
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.List:iterator
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Iterator:hasNext
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Iterator:next
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.Throwable:__curr_excep_obj
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.List:add
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:getTarget
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.config.ConfigTarget$TYPE:ordinal
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.String:equalsIgnoreCase
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:addListener
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:getSources
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.config.ConfigSource
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.util.MapList
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:addConfigManager
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Collections:sort
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Map:get
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.Integer:intValue
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.Integer:valueOf
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Map:put
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:hasOption
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:getOption
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.IllegalArgumentException
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.String:trim
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.Integer:parseInt
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.util.ConfigFile:getKeyDomain
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.util.ConfigFile:isKeyDomain
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.util.RollingList
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.HashMap
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:getName
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:getType
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Map:entrySet
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Set:iterator
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Map$Entry:getKey
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.commandparser.CommandType:equals
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.lang.String:equals
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:java.util.Map$Entry:getValue
    //#unanalyzed(GlobalCommandParser getGlobalCommandParser()): Effects-of-calling:com.dmdirc.util.MapList:add
    //#test_vector(GlobalCommandParser getGlobalCommandParser()): me: Inverse{null}, Addr_Set{null}
            me = new GlobalCommandParser();
        }
        
        return me;
    //#GlobalCommandParser.java:68: end of method: GlobalCommandParser com.dmdirc.commandparser.parsers.GlobalCommandParser.getGlobalCommandParser()
    }
    
    /** Loads the relevant commands into the parser. */
    @Override
    protected void loadCommands() {
        CommandManager.loadCommands(this, CommandType.TYPE_GLOBAL);
    //#GlobalCommandParser.java:74: method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.loadCommands()
    //#GlobalCommandParser.java:74: ?precondition failure
    //#    com/dmdirc/commandparser/CommandManager.loadCommands: (soft) supertypes[0..4_294_967_295] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.commandparser.parsers.GlobalCommandParser
    //#    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
    }
    //#GlobalCommandParser.java:75: end of method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.loadCommands()
    
    /** {@inheritDoc} */
    @Override
    protected void executeCommand(final InputWindow origin,
            final boolean isSilent, final Command command, final CommandArguments args) {
        ((GlobalCommand) command).execute(origin, isSilent, args);
    //#GlobalCommandParser.java:81: method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.executeCommand(InputWindow, bool, Command, CommandArguments)
    //#GlobalCommandParser.java:81: ?ClassCastException check
    //#    com/dmdirc/commandparser/commands/GlobalCommand.__Descendant_Table[command.__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.commandparser.parsers.GlobalCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    basic block: bb_3
    //#    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
    //#GlobalCommandParser.java:81: Warning: call too complex - analysis skipped
    //#    call on void execute(InputWindow, bool, CommandArguments)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.GlobalCommandParser
    //#    method: void executeCommand(InputWindow, bool, Command, CommandArguments)
    //#    unanalyzed callee: void execute(InputWindow, bool, CommandArguments)
    //#input(void executeCommand(InputWindow, bool, Command, CommandArguments)): args
    //#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/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/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)): 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
    //#pre[2] (void executeCommand(InputWindow, bool, Command, CommandArguments)): command != null
    }
    //#GlobalCommandParser.java:82: end of method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.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) {
        if (origin == null) {
    //#GlobalCommandParser.java:92: method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.handleNonCommand(InputWindow, String)
    //#input(void handleNonCommand(InputWindow, String)): "Invalid global command: "._tainted
    //#input(void handleNonCommand(InputWindow, String)): com.dmdirc.logger.ErrorLevel.MEDIUM
    //#input(void handleNonCommand(InputWindow, String)): line
    //#input(void handleNonCommand(InputWindow, String)): line._tainted
    //#input(void handleNonCommand(InputWindow, String)): origin
    //#presumption(void handleNonCommand(InputWindow, String)): init'ed(com.dmdirc.logger.ErrorLevel.MEDIUM)
    //#test_vector(void handleNonCommand(InputWindow, String)): origin: Inverse{null}, Addr_Set{null}
            Logger.userError(ErrorLevel.MEDIUM, "Invalid global command: " + line);
    //#GlobalCommandParser.java:93: Warning: method not available - call not analyzed
    //#    call on void com.dmdirc.logger.Logger:userError(ErrorLevel, String)
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.commandparser.parsers.GlobalCommandParser
    //#    method: void handleNonCommand(InputWindow, String)
    //#    unanalyzed callee: void com.dmdirc.logger.Logger:userError(ErrorLevel, String)
        } else {
            origin.addLine("commandError", "Invalid global command: " + line);
    //#GlobalCommandParser.java:95: 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.GlobalCommandParser
    //#    method: void handleNonCommand(InputWindow, String)
    //#    unanalyzed callee: void com.dmdirc.ui.interfaces.InputWindow:addLine(String, Object[])
        }
    }
    //#GlobalCommandParser.java:97: end of method: void com.dmdirc.commandparser.parsers.GlobalCommandParser.handleNonCommand(InputWindow, String)
    
}
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser]
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.addHistory(Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__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.GlobalCommandParser__static_init): __Dispatch_Table.getCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Lcom/dmdirc/commandparser/commands/CommandOptions;
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.getCommandTime(Ljava/lang/String;)J
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.getCommands()Ljava/util/Map;
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.handleInvalidCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Lcom/dmdirc/commandparser/CommandArguments;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.handleNonCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.hasCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Z
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.loadCommands()V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.parseCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.parseCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;Z)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.parseCommandCtrl(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.registerCommand(Lcom/dmdirc/commandparser/commands/Command;Lcom/dmdirc/commandparser/CommandInfo;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.unregisterCommand(Lcom/dmdirc/commandparser/CommandInfo;)V
    //#output(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser]
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser] == &__Dispatch_Table
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): com/dmdirc/commandparser/parsers/CommandParser.__Descendant_Table[com/dmdirc/commandparser/parsers/GlobalCommandParser] == &__Dispatch_Table
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.addHistory(Ljava/lang/String;)V == &com/dmdirc/commandparser/parsers/CommandParser.addHistory
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__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.GlobalCommandParser__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.GlobalCommandParser__static_init): __Dispatch_Table.getCommandTime(Ljava/lang/String;)J == &com/dmdirc/commandparser/parsers/CommandParser.getCommandTime
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.getCommands()Ljava/util/Map; == &com/dmdirc/commandparser/parsers/CommandParser.getCommands
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__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.GlobalCommandParser__static_init): __Dispatch_Table.handleNonCommand(Lcom/dmdirc/ui/interfaces/InputWindow;Ljava/lang/String;)V == &handleNonCommand
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.hasCommandOptions(Lcom/dmdirc/commandparser/commands/Command;)Z == &com/dmdirc/commandparser/parsers/CommandParser.hasCommandOptions
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init): __Dispatch_Table.loadCommands()V == &loadCommands
    //#post(com.dmdirc.commandparser.parsers.GlobalCommandParser__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.GlobalCommandParser__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.GlobalCommandParser__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.GlobalCommandParser__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.GlobalCommandParser__static_init): __Dispatch_Table.unregisterCommand(Lcom/dmdirc/commandparser/CommandInfo;)V == &com/dmdirc/commandparser/parsers/CommandParser.unregisterCommand
    //#GlobalCommandParser.java:: end of method: com.dmdirc.commandparser.parsers.GlobalCommandParser.com.dmdirc.commandparser.parsers.GlobalCommandParser__static_init
    //#GlobalCommandParser.java:: end of class: com.dmdirc.commandparser.parsers.GlobalCommandParser
