//# 14 errors, 324 messages
//#
/*
    //#ProcessWho.java:1:1: class: com.dmdirc.parser.irc.ProcessWho
    //#ProcessWho.java:1:1: method: com.dmdirc.parser.irc.ProcessWho.com.dmdirc.parser.irc.ProcessWho__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.parser.irc;

/**
 * Process a /who reply.
 */
public class ProcessWho extends IRCProcessor {
	/**
	 * Process a /who reply.
	 *
	 * @param sParam Type of line to process ("352")
	 * @param token IRCTokenised line to process
	 */
	@Override
	public void process(final String sParam, final String[] token) {
		// :blueyonder2.uk.quakenet.org 352 Dataforce #mdbot shane Tobavaj.users.quakenet.org *.quakenet.org Tobavaj G+x :3 Tobavaj - http://shane.dmdirc.com/scriptbot.php
		//              0               1      2        3     4              5                      6           7     8        9
		// :blueyonder2.uk.quakenet.org 352 Dataforce #mdbot ~Dataforce ResNetUser-BrynDinas-147.143.246.102.bangor.ac.uk *.quakenet.org Dataforce H@ :0 Dataforce
		//              0               1      2        3      4                               5                            6              7      8        9
		// :blueyonder2.uk.quakenet.org 352 Dataforce #mdbot shane soren.dataforce.org.uk *.quakenet.org DF|Soren H :3 Unknown
		//              0               1      2        3     4              5                      6       7     8      9
		// :server 352 mynickname channel username address server nick flags :hops info
		//     0    1      2         3     4          5      6      7    8        9
		
//		ChannelInfo channel = myParser.getChannelInfo(token[3]);
//		ChannelClientInfo channelClient = channel.getUser(token[7]);
//		ClientInfo client = channelClient.getClient();
		final ClientInfo client = myParser.getClientInfo(token[7]);
    //#ProcessWho.java:49: method: void com.dmdirc.parser.irc.ProcessWho.process(String, String[])
    //#ProcessWho.java:49: ?precondition failure
    //#    com/dmdirc/parser/irc/IRCParser.getClientInfo: (soft) init'ed(this.stringConverter.lowercase[0..65_535])
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: void process(String, String[])
    //#    basic block: Entry_BB_1
    //#    assertion: (soft) init'ed(this.myParser.stringConverter.lowercase[0..65_535])
    //#    callee: ClientInfo com/dmdirc/parser/irc/IRCParser.getClientInfo(String)
    //#    callee assertion: (soft) init'ed(this.stringConverter.lowercase[0..65_535])
    //#    callee file: IRCParser.java
    //#    callee precondition index: [10]
    //#    callee srcpos: 870
    //#    VN: this.myParser.stringConverter.lowercase[0..65_535]
    //#    Expected: {0..65_535}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Soft  Bad only invalid
    //#input(void process(String, String[])): "!"._tainted
    //#input(void process(String, String[])): "@"._tainted
    //#input(void process(String, String[])): "Callback not found: "._tainted
    //#input(void process(String, String[])): "OnAwayState"._tainted
    //#input(void process(String, String[])): "OnAwayStateOther"._tainted
    //#input(void process(String, String[])): "OnChannelAwayStateOther"._tainted
    //#input(void process(String, String[])): __Descendant_Table[com/dmdirc/parser/irc/ProcessWho]
    //#input(void process(String, String[])): __Descendant_Table[others]
    //#input(void process(String, String[])): __Dispatch_Table.callAwayState(ZLjava/lang/String;)Z
    //#input(void process(String, String[])): __Dispatch_Table.callAwayStateOther(Lcom/dmdirc/parser/irc/ClientInfo;Z)Z
    //#input(void process(String, String[])): __Dispatch_Table.callChannelAwayStateOther(Lcom/dmdirc/parser/irc/ChannelInfo;Lcom/dmdirc/parser/irc/ChannelClientInfo;Z)Z
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ChannelClientInfo.__Descendant_Table[com/dmdirc/parser/irc/ChannelClientInfo]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ChannelClientInfo.__Descendant_Table[others]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ChannelClientInfo.__Dispatch_Table.getClient()Lcom/dmdirc/parser/irc/ClientInfo;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ChannelInfo.__Descendant_Table[com/dmdirc/parser/irc/ChannelInfo]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ChannelInfo.__Descendant_Table[others]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ChannelInfo.__Dispatch_Table.getUser(Lcom/dmdirc/parser/irc/ClientInfo;)Lcom/dmdirc/parser/irc/ChannelClientInfo;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ClientInfo.__Descendant_Table[com/dmdirc/parser/irc/ClientInfo]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/ClientInfo.__Descendant_Table[others]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getChannels()Ljava/util/Collection;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getClientInfo(Ljava/lang/String;)Lcom/dmdirc/parser/irc/ClientInfo;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getIRCStringConverter()Lcom/dmdirc/parser/irc/IRCStringConverter;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getMyself()Lcom/dmdirc/parser/irc/ClientInfo;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCStringConverter.__Descendant_Table[com/dmdirc/parser/irc/IRCStringConverter]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCStringConverter.__Descendant_Table[others]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/IRCStringConverter.__Dispatch_Table.toLowerCase(Ljava/lang/String;)Ljava/lang/String;
    //#input(void process(String, String[])): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(void process(String, String[])): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(void process(String, String[])): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(void process(String, String[])): this
    //#input(void process(String, String[])): this.__Tag
    //#input(void process(String, String[])): this.myParser
    //#input(void process(String, String[])): this.myParser.__Tag
    //#input(void process(String, String[])): this.myParser.cMyself
    //#input(void process(String, String[])): this.myParser.hChannelList
    //#input(void process(String, String[])): this.myParser.hClientList
    //#input(void process(String, String[])): this.myParser.myCallbackManager
    //#input(void process(String, String[])): this.myParser.myCallbackManager.callbackHash
    //#input(void process(String, String[])): this.myParser.stringConverter
    //#input(void process(String, String[])): this.myParser.stringConverter.__Tag
    //#input(void process(String, String[])): this.myParser.stringConverter.lowercase
    //#input(void process(String, String[])): this.myParser.stringConverter.lowercase.length
    //#input(void process(String, String[])): this.myParser.stringConverter.lowercase[0..65_535]
    //#input(void process(String, String[])): token
    //#input(void process(String, String[])): token.length
    //#input(void process(String, String[])): token[4]
    //#input(void process(String, String[])): token[4]._tainted
    //#input(void process(String, String[])): token[5]
    //#input(void process(String, String[])): token[5]._tainted
    //#input(void process(String, String[])): token[7]
    //#input(void process(String, String[])): token[7]._tainted
    //#input(void process(String, String[])): token[8]
    //#input(void process(String, String[])): token[9]
    //#input(void process(String, String[])): token[9]._tainted
    //#output(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1) num objects
    //#output(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).__Tag
    //#output(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).limit
    //#output(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).lowercase
    //#output(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).uppercase
    //#output(void process(String, String[])): new char[](IRCStringConverter#1) num objects
    //#output(void process(String, String[])): new char[](IRCStringConverter#1).length
    //#output(void process(String, String[])): new char[](IRCStringConverter#1)[0..65_535]
    //#output(void process(String, String[])): new char[](IRCStringConverter#2) num objects
    //#output(void process(String, String[])): new char[](IRCStringConverter#2).length
    //#output(void process(String, String[])): new char[](IRCStringConverter#2)[0..65_567]
    //#output(void process(String, String[])): this.myParser.stringConverter
    //#new obj(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1)
    //#new obj(void process(String, String[])): new char[](IRCStringConverter#1)
    //#new obj(void process(String, String[])): new char[](IRCStringConverter#2)
    //#pre[1] (void process(String, String[])): init'ed(this.myParser.stringConverter)
    //#pre[4] (void process(String, String[])): this.myParser != null
    //#pre[5] (void process(String, String[])): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[9] (void process(String, String[])): this.myParser.hClientList != null
    //#pre[16] (void process(String, String[])): token != null
    //#pre[23] (void process(String, String[])): token[7] != null
    //#pre[3] (void process(String, String[])): (soft) this.__Tag == com/dmdirc/parser/irc/ProcessWho
    //#pre[6] (void process(String, String[])): (soft) init'ed(this.myParser.cMyself)
    //#pre[7] (void process(String, String[])): (soft) this.myParser.hChannelList != null
    //#pre[10] (void process(String, String[])): (soft) this.myParser.myCallbackManager != null
    //#pre[11] (void process(String, String[])): (soft) this.myParser.myCallbackManager.callbackHash != null
    //#pre[12] (void process(String, String[])): (soft) this.myParser.stringConverter.__Tag == com/dmdirc/parser/irc/IRCStringConverter
    //#pre[13] (void process(String, String[])): (soft) this.myParser.stringConverter.lowercase != null
    //#pre[15] (void process(String, String[])): (soft) init'ed(this.myParser.stringConverter.lowercase[0..65_535])
    //#pre[17] (void process(String, String[])): (soft) token.length >= 10
    //#pre[18] (void process(String, String[])): (soft) init'ed(token[4])
    //#pre[20] (void process(String, String[])): (soft) init'ed(token[5])
    //#pre[26] (void process(String, String[])): (soft) token[8] != null
    //#pre[27] (void process(String, String[])): (soft) token[9] != null
    //#presumption(void process(String, String[])): client.sRealName != null
    //#presumption(void process(String, String[])): iChannel.hChannelUserList@71 != null
    //#presumption(void process(String, String[])): java.util.Iterator:next(...).__Tag@71 == com/dmdirc/parser/irc/ChannelInfo
    //#presumption(void process(String, String[])): java.util.Iterator:next(...)@71 != null
    //#presumption(void process(String, String[])): java.util.Map:values(...)@2067 != null
    //#post(void process(String, String[])): this.myParser.stringConverter == One-of{old this.myParser.stringConverter, &new IRCStringConverter(getIRCStringConverter#1)}
    //#post(void process(String, String[])): this.myParser.stringConverter != null
    //#post(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1) num objects <= 1
    //#post(void process(String, String[])): new char[](IRCStringConverter#1) num objects == new IRCStringConverter(getIRCStringConverter#1) num objects
    //#post(void process(String, String[])): new char[](IRCStringConverter#2) num objects == new IRCStringConverter(getIRCStringConverter#1) num objects
    //#post(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).__Tag == com/dmdirc/parser/irc/IRCStringConverter
    //#post(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).limit == 4
    //#post(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).lowercase == &new char[](IRCStringConverter#1)
    //#post(void process(String, String[])): new IRCStringConverter(getIRCStringConverter#1).uppercase == &new char[](IRCStringConverter#2)
    //#post(void process(String, String[])): new char[](IRCStringConverter#1).length == 127
    //#post(void process(String, String[])): new char[](IRCStringConverter#2).length == 127
    //#post(void process(String, String[])): possibly_updated(new char[](IRCStringConverter#1)[0..65_535])
    //#post(void process(String, String[])): possibly_updated(new char[](IRCStringConverter#2)[0..65_567])
    //#unanalyzed(void process(String, String[])): Effects-of-calling:getCallbackManager
    //#unanalyzed(void process(String, String[])): Effects-of-calling:getCallbackType
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.Boolean:valueOf
    //#unanalyzed(void process(String, String[])): Effects-of-calling:call
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.util.Map:get
    //#unanalyzed(void process(String, String[])): Effects-of-calling:parseHost
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:toCharArray
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:length
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:isEmpty
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:charAt
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:substring
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.String:split
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.lang.Throwable:__curr_excep_obj
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.util.Map:values
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.util.Collection:iterator
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.util.Iterator:hasNext
    //#unanalyzed(void process(String, String[])): Effects-of-calling:java.util.Iterator:next
    //#unanalyzed(void process(String, String[])): Effects-of-calling:getClient
    //#test_vector(void process(String, String[])): client.bIsAway: {0}, {1}
    //#test_vector(void process(String, String[])): java.lang.String:indexOf(...)@60: {-2_147_483_648..-2, 0..4_294_967_295}, {-1}
    //#test_vector(void process(String, String[])): java.lang.String:isEmpty(...)@54: {0}, {1}
    //#test_vector(void process(String, String[])): java.util.Iterator:hasNext(...)@71: {0}, {1}
		if (client != null) {
			// Update ident/host
			client.setUserBits(token[7]+"!"+token[4]+"@"+token[5], false);
			// Update real name
			if (client.getRealName().isEmpty()) {
				final String name = token[9].split(" ", 2)[1];
    //#ProcessWho.java:55: ?use of default init
    //#    init'ed(java/lang/String:split(...).length)
    //#    severity: LOW
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: void process(String, String[])
    //#    basic block: bb_3
    //#    assertion: init'ed(java/lang/String:split(...).length)
    //#    VN: undefined
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWho.java:55: ?!array index out of bounds
    //#    java/lang/String:split(...).length >= 2
    //#    severity: HIGH
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: void process(String, String[])
    //#    basic block: bb_3
    //#    assertion: java/lang/String:split(...).length >= 2
    //#    VN: undefined - 1
    //#    Expected: {1..+Inf}
    //#    Bad: {-1}
    //#    Attribs:  Int  Bad singleton  Bad overlaps +/-1000  Bad < Exp
    //#ProcessWho.java:55: ?use of default init
    //#    init'ed(java/lang/String:split(...)[1])
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: void process(String, String[])
    //#    basic block: bb_3
    //#    assertion: init'ed(java/lang/String:split(...)[1])
    //#    VN: undefined
    //#    Expected: Univ-VN-Set
    //#    Bad: {Invalid}
    //#    Attribs:  Ptr  Bad only invalid
				client.setRealName(name);
    //#ProcessWho.java:56: ?use of default init
    //#    init'ed(name)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: void process(String, String[])
    //#    basic block: bb_3
    //#    assertion: init'ed(name)
    //#    VN: undefined
    //#    Expected: Univ-VN-Set
    //#    Bad: {Invalid}
    //#    Attribs:  Ptr  Bad only invalid
			}
			// Update away state
			final String mode = token[8];
			final boolean isAway = mode.indexOf('G') != -1;
			if (client.getAwayState() != isAway) {
//				System.out.println("Away state for '"+client+"' changed to: "+isAway);
				client.setAwayState(isAway);
				if (!isAway) { client.setAwayReason(""); }
				if (client == myParser.getMyself()) {
					callAwayState(client.getAwayState(), client.getAwayReason());
				} else {
					callAwayStateOther(client, isAway);
					
					ChannelClientInfo iChannelClient;
					for (ChannelInfo iChannel : myParser.getChannels()) {
						iChannelClient = iChannel.getUser(client);
						if (iChannelClient != null) {
							callChannelAwayStateOther(iChannel,iChannelClient,isAway);
						}
					}
				}
			}
		}
	}
    //#ProcessWho.java:80: end of method: void com.dmdirc.parser.irc.ProcessWho.process(String, String[])
	
	/**
	 * Callback to all objects implementing the onAwayState Callback.
	 *
	 * @see IAwayState
	 * @param currentState Set to true if we are now away, else false.
	 * @param reason Best guess at away reason
	 * @return true if a method was called, false otherwise
	 */
	protected boolean callAwayState(boolean currentState, String reason) {
		return getCallbackManager().getCallbackType("OnAwayState").call(currentState, reason);
    //#ProcessWho.java:91: method: bool com.dmdirc.parser.irc.ProcessWho.callAwayState(bool, String)
    //#ProcessWho.java:91: ?null dereference
    //#    getCallbackType(...) != null
    //#    severity: MEDIUM
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayState(bool, String)
    //#    basic block: Entry_BB_1
    //#    assertion: getCallbackType(...) != null
    //#    VN: getCallbackType(...)
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWho.java:91: ?use of default init
    //#    init'ed(getCallbackType(...).__Tag)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayState(bool, String)
    //#    basic block: Entry_BB_1
    //#    assertion: init'ed(getCallbackType(...).__Tag)
    //#    VN: getCallbackType(...).__Tag
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWho.java:91: ?null dereference
    //#    com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayState(bool, String)
    //#    basic block: Entry_BB_1
    //#    assertion: com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    VN: com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag]
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWho.java:91: Warning: call too complex - analysis skipped
    //#    call on bool call(Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayState(bool, String)
    //#    unanalyzed callee: bool call(Object[])
    //#input(bool callAwayState(bool, String)): "Callback not found: "._tainted
    //#input(bool callAwayState(bool, String)): "OnAwayState"._tainted
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callAwayState(bool, String)): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callAwayState(bool, String)): currentState
    //#input(bool callAwayState(bool, String)): reason
    //#input(bool callAwayState(bool, String)): this
    //#input(bool callAwayState(bool, String)): this.myParser
    //#input(bool callAwayState(bool, String)): this.myParser.__Tag
    //#input(bool callAwayState(bool, String)): this.myParser.myCallbackManager
    //#input(bool callAwayState(bool, String)): this.myParser.myCallbackManager.callbackHash
    //#output(bool callAwayState(bool, String)): return_value
    //#pre[4] (bool callAwayState(bool, String)): this.myParser != null
    //#pre[5] (bool callAwayState(bool, String)): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[6] (bool callAwayState(bool, String)): this.myParser.myCallbackManager != null
    //#pre[7] (bool callAwayState(bool, String)): this.myParser.myCallbackManager.callbackHash != null
    //#presumption(bool callAwayState(bool, String)): getCallbackManager(...)@91 init'ed
    //#post(bool callAwayState(bool, String)): init'ed(return_value)
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:getCallbackManager
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(bool callAwayState(bool, String)): Effects-of-calling:java.util.Map:get
    //#ProcessWho.java:91: end of method: bool com.dmdirc.parser.irc.ProcessWho.callAwayState(bool, String)
	}
	
	/**
	 * Callback to all objects implementing the onAwayStateOther Callback.
	 *
	 * @see IAwayStateOther
	 * @param client Client this is for
	 * @param state Away State (true if away, false if here)
	 * @return true if a method was called, false otherwise
	 */
	protected boolean callAwayStateOther(final ClientInfo client, final boolean state) {
		return getCallbackManager().getCallbackType("OnAwayStateOther").call(client, state);
    //#ProcessWho.java:103: method: bool com.dmdirc.parser.irc.ProcessWho.callAwayStateOther(ClientInfo, bool)
    //#ProcessWho.java:103: ?null dereference
    //#    getCallbackType(...) != null
    //#    severity: MEDIUM
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayStateOther(ClientInfo, bool)
    //#    basic block: Entry_BB_1
    //#    assertion: getCallbackType(...) != null
    //#    VN: getCallbackType(...)
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWho.java:103: ?use of default init
    //#    init'ed(getCallbackType(...).__Tag)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayStateOther(ClientInfo, bool)
    //#    basic block: Entry_BB_1
    //#    assertion: init'ed(getCallbackType(...).__Tag)
    //#    VN: getCallbackType(...).__Tag
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWho.java:103: ?null dereference
    //#    com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayStateOther(ClientInfo, bool)
    //#    basic block: Entry_BB_1
    //#    assertion: com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    VN: com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag]
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWho.java:103: Warning: call too complex - analysis skipped
    //#    call on bool call(Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callAwayStateOther(ClientInfo, bool)
    //#    unanalyzed callee: bool call(Object[])
    //#input(bool callAwayStateOther(ClientInfo, bool)): "Callback not found: "._tainted
    //#input(bool callAwayStateOther(ClientInfo, bool)): "OnAwayStateOther"._tainted
    //#input(bool callAwayStateOther(ClientInfo, bool)): client
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callAwayStateOther(ClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callAwayStateOther(ClientInfo, bool)): state
    //#input(bool callAwayStateOther(ClientInfo, bool)): this
    //#input(bool callAwayStateOther(ClientInfo, bool)): this.myParser
    //#input(bool callAwayStateOther(ClientInfo, bool)): this.myParser.__Tag
    //#input(bool callAwayStateOther(ClientInfo, bool)): this.myParser.myCallbackManager
    //#input(bool callAwayStateOther(ClientInfo, bool)): this.myParser.myCallbackManager.callbackHash
    //#output(bool callAwayStateOther(ClientInfo, bool)): return_value
    //#pre[4] (bool callAwayStateOther(ClientInfo, bool)): this.myParser != null
    //#pre[5] (bool callAwayStateOther(ClientInfo, bool)): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[6] (bool callAwayStateOther(ClientInfo, bool)): this.myParser.myCallbackManager != null
    //#pre[7] (bool callAwayStateOther(ClientInfo, bool)): this.myParser.myCallbackManager.callbackHash != null
    //#presumption(bool callAwayStateOther(ClientInfo, bool)): getCallbackManager(...)@103 init'ed
    //#post(bool callAwayStateOther(ClientInfo, bool)): init'ed(return_value)
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:getCallbackManager
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(bool callAwayStateOther(ClientInfo, bool)): Effects-of-calling:java.util.Map:get
    //#ProcessWho.java:103: end of method: bool com.dmdirc.parser.irc.ProcessWho.callAwayStateOther(ClientInfo, bool)
	}
	
	/**
	 * Callback to all objects implementing the onChannelAwayStateOther Callback.
	 *
	 * @see IAwayStateOther
	 * @param channel Channel this is for
	 * @param channelClient ChannelClient this is for
	 * @param state Away State (true if away, false if here)
	 * @return true if a method was called, false otherwise
	 */
	protected boolean callChannelAwayStateOther(final ChannelInfo channel, final ChannelClientInfo channelClient, final boolean state) {
		return getCallbackManager().getCallbackType("OnChannelAwayStateOther").call(channel, channelClient, state);
    //#ProcessWho.java:116: method: bool com.dmdirc.parser.irc.ProcessWho.callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)
    //#ProcessWho.java:116: ?null dereference
    //#    getCallbackType(...) != null
    //#    severity: MEDIUM
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)
    //#    basic block: Entry_BB_1
    //#    assertion: getCallbackType(...) != null
    //#    VN: getCallbackType(...)
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWho.java:116: ?use of default init
    //#    init'ed(getCallbackType(...).__Tag)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)
    //#    basic block: Entry_BB_1
    //#    assertion: init'ed(getCallbackType(...).__Tag)
    //#    VN: getCallbackType(...).__Tag
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWho.java:116: ?null dereference
    //#    com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)
    //#    basic block: Entry_BB_1
    //#    assertion: com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    VN: com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag]
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWho.java:116: Warning: call too complex - analysis skipped
    //#    call on bool call(Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWho
    //#    method: bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)
    //#    unanalyzed callee: bool call(Object[])
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): "Callback not found: "._tainted
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): "OnChannelAwayStateOther"._tainted
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): channel
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): channelClient
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): state
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser.__Tag
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser.myCallbackManager
    //#input(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser.myCallbackManager.callbackHash
    //#output(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): return_value
    //#pre[5] (bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser != null
    //#pre[6] (bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[7] (bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser.myCallbackManager != null
    //#pre[8] (bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): this.myParser.myCallbackManager.callbackHash != null
    //#presumption(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): getCallbackManager(...)@116 init'ed
    //#post(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): init'ed(return_value)
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:getCallbackManager
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(bool callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)): Effects-of-calling:java.util.Map:get
    //#ProcessWho.java:116: end of method: bool com.dmdirc.parser.irc.ProcessWho.callChannelAwayStateOther(ChannelInfo, ChannelClientInfo, bool)
	}
	
	/**
	 * What does this IRCProcessor handle.
	 *
	 * @return String[] with the names of the tokens we handle.
	 */
	@Override
	public String[] handles() {
		return new String[]{"352"};
    //#ProcessWho.java:126: method: String[] com.dmdirc.parser.irc.ProcessWho.handles()
    //#output(String[] handles()): new String[](handles#1) num objects
    //#output(String[] handles()): return_value.length
    //#output(String[] handles()): return_value[0]
    //#output(String[] handles()): return_value
    //#new obj(String[] handles()): new String[](handles#1)
    //#post(String[] handles()): return_value == &new String[](handles#1)
    //#post(String[] handles()): new String[](handles#1) num objects == 1
    //#post(String[] handles()): return_value.length == 1
    //#post(String[] handles()): return_value[0] == &"352"
    //#ProcessWho.java:126: end of method: String[] com.dmdirc.parser.irc.ProcessWho.handles()
	} 
	
	/**
	 * Create a new instance of the IRCProcessor Object.
	 *
	 * @param parser IRCParser That owns this IRCProcessor
	 * @param manager ProcessingManager that is in charge of this IRCProcessor
	 */
	protected ProcessWho (IRCParser parser, ProcessingManager manager) { super(parser, manager); }
    //#ProcessWho.java:135: method: void com.dmdirc.parser.irc.ProcessWho.com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)
    //#input(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): manager
    //#input(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): parser
    //#input(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): this
    //#output(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): this.myManager
    //#output(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): this.myParser
    //#post(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): this.myManager == manager
    //#post(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): init'ed(this.myManager)
    //#post(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): this.myParser == parser
    //#post(void com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)): init'ed(this.myParser)
    //#ProcessWho.java:135: end of method: void com.dmdirc.parser.irc.ProcessWho.com.dmdirc.parser.irc.ProcessWho(IRCParser, ProcessingManager)

}
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Descendant_Table[com/dmdirc/parser/irc/ProcessWho]
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callAwayState(ZLjava/lang/String;)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callAwayStateOther(Lcom/dmdirc/parser/irc/ClientInfo;Z)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callChannelAwayStateOther(Lcom/dmdirc/parser/irc/ChannelInfo;Lcom/dmdirc/parser/irc/ChannelClientInfo;Z)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callDebugInfo(ILjava/lang/String;)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callDebugInfo(ILjava/lang/String;[Ljava/lang/Object;)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callErrorInfo(Lcom/dmdirc/parser/irc/ParserError;)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getChannelInfo(Ljava/lang/String;)Lcom/dmdirc/parser/irc/ChannelInfo;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getClientInfo(Ljava/lang/String;)Lcom/dmdirc/parser/irc/ClientInfo;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getLowerName()Ljava/lang/String;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getName()Ljava/lang/String;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.handles()[Ljava/lang/String;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.isValidChannelName(Ljava/lang/String;)Z
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.process(Ljava/lang/String;[Ljava/lang/String;)V
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.sendString(Ljava/lang/String;)V
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.toString()Ljava/lang/String;
    //#output(com.dmdirc.parser.irc.ProcessWho__static_init): com/dmdirc/parser/irc/IRCProcessor.__Descendant_Table[com/dmdirc/parser/irc/ProcessWho]
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Descendant_Table[com/dmdirc/parser/irc/ProcessWho] == &__Dispatch_Table
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): com/dmdirc/parser/irc/IRCProcessor.__Descendant_Table[com/dmdirc/parser/irc/ProcessWho] == &__Dispatch_Table
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callAwayState(ZLjava/lang/String;)Z == &callAwayState
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callAwayStateOther(Lcom/dmdirc/parser/irc/ClientInfo;Z)Z == &callAwayStateOther
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callChannelAwayStateOther(Lcom/dmdirc/parser/irc/ChannelInfo;Lcom/dmdirc/parser/irc/ChannelClientInfo;Z)Z == &callChannelAwayStateOther
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callDebugInfo(ILjava/lang/String;)Z == &com/dmdirc/parser/irc/IRCProcessor.callDebugInfo
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callDebugInfo(ILjava/lang/String;[Ljava/lang/Object;)Z == &com/dmdirc/parser/irc/IRCProcessor.callDebugInfo
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.callErrorInfo(Lcom/dmdirc/parser/irc/ParserError;)Z == &com/dmdirc/parser/irc/IRCProcessor.callErrorInfo
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager; == &com/dmdirc/parser/irc/IRCProcessor.getCallbackManager
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getChannelInfo(Ljava/lang/String;)Lcom/dmdirc/parser/irc/ChannelInfo; == &com/dmdirc/parser/irc/IRCProcessor.getChannelInfo
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getClientInfo(Ljava/lang/String;)Lcom/dmdirc/parser/irc/ClientInfo; == &com/dmdirc/parser/irc/IRCProcessor.getClientInfo
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getLowerName()Ljava/lang/String; == &com/dmdirc/parser/irc/IRCProcessor.getLowerName
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.getName()Ljava/lang/String; == &com/dmdirc/parser/irc/IRCProcessor.getName
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.handles()[Ljava/lang/String; == &handles
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.isValidChannelName(Ljava/lang/String;)Z == &com/dmdirc/parser/irc/IRCProcessor.isValidChannelName
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.process(Ljava/lang/String;[Ljava/lang/String;)V == &process
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.sendString(Ljava/lang/String;)V == &com/dmdirc/parser/irc/IRCProcessor.sendString
    //#post(com.dmdirc.parser.irc.ProcessWho__static_init): __Dispatch_Table.toString()Ljava/lang/String; == &com/dmdirc/parser/irc/IRCProcessor.toString
    //#ProcessWho.java:: end of method: com.dmdirc.parser.irc.ProcessWho.com.dmdirc.parser.irc.ProcessWho__static_init
    //#ProcessWho.java:: end of class: com.dmdirc.parser.irc.ProcessWho
