//# 10 errors, 235 messages
//#
/*
    //#ProcessWallops.java:1:1: class: com.dmdirc.parser.irc.ProcessWallops
    //#ProcessWallops.java:1:1: method: com.dmdirc.parser.irc.ProcessWallops.com.dmdirc.parser.irc.ProcessWallops__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 WALLOPS Message.
 */
public class ProcessWallops extends IRCProcessor {
	/**
	 * Process a Wallops Message.
	 *
	 * @param sParam Type of line to process ("WALLOPS")
	 * @param token IRCTokenised line to process
	 */
	@Override
	public void process(final String sParam, final String[] token) {
		if (token.length < 3) { return; }
    //#ProcessWallops.java:37: method: void com.dmdirc.parser.irc.ProcessWallops.process(String, String[])
    //#input(void process(String, String[])): "Callback not found: "._tainted
    //#input(void process(String, String[])): "OnWallDesync"._tainted
    //#input(void process(String, String[])): "OnWallop"._tainted
    //#input(void process(String, String[])): "OnWalluser"._tainted
    //#input(void process(String, String[])): __Descendant_Table[com/dmdirc/parser/irc/ProcessWallops]
    //#input(void process(String, String[])): __Descendant_Table[others]
    //#input(void process(String, String[])): __Dispatch_Table.callWallDesync(Ljava/lang/String;Ljava/lang/String;)Z
    //#input(void process(String, String[])): __Dispatch_Table.callWallop(Ljava/lang/String;Ljava/lang/String;)Z
    //#input(void process(String, String[])): __Dispatch_Table.callWalluser(Ljava/lang/String;Ljava/lang/String;)Z
    //#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/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.myCallbackManager
    //#input(void process(String, String[])): this.myParser.myCallbackManager.callbackHash
    //#input(void process(String, String[])): token
    //#input(void process(String, String[])): token.length
    //#input(void process(String, String[])): token[0]
    //#input(void process(String, String[])): token[0]._tainted
    //#input(void process(String, String[])): token[1..4_294_967_295]
    //#input(void process(String, String[])): token[1..4_294_967_295]._tainted
    //#pre[7] (void process(String, String[])): token != null
    //#pre[8] (void process(String, String[])): token.length <= 4_294_967_296
    //#pre[2] (void process(String, String[])): (soft) this.__Tag == com/dmdirc/parser/irc/ProcessWallops
    //#pre[3] (void process(String, String[])): (soft) this.myParser != null
    //#pre[4] (void process(String, String[])): (soft) this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[5] (void process(String, String[])): (soft) this.myParser.myCallbackManager != null
    //#pre[6] (void process(String, String[])): (soft) this.myParser.myCallbackManager.callbackHash != null
    //#pre[9] (void process(String, String[])): (soft) token[0] != null
    //#pre[11] (void process(String, String[])): (soft) token[1..4_294_967_295] != null
    //#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: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
    //#test_vector(void process(String, String[])): token.length: {3..4_294_967_296}, {0..2}
    //#test_vector(void process(String, String[])): java.lang.String:charAt(...)@41: {0..57, 59..65_535}, {58}
    //#test_vector(void process(String, String[])): java.lang.String:length(...)@41: {0,1}, {2..4_294_967_295}
		
		String user = token[0];
		String message = token[token.length-1];
		if (user.charAt(0) == ':' && user.length() > 1) { user = user.substring(1); }
		String[] bits = message.split(" ", 2);

		if (bits.length > 1) {
    //#ProcessWallops.java:44: ?use of default init
    //#    init'ed(bits.length)
    //#    severity: LOW
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: void process(String, String[])
    //#    basic block: bb_6
    //#    assertion: init'ed(bits.length)
    //#    VN: undefined
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWallops.java:44: Warning: test always goes same way
    //#    Test predetermined because bits.length == 0
    //#    severity: LOW
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: void process(String, String[])
    //#    from bb: bb_6
    //#    live edge: bb_6-->bb_11
    //#    tested vn: undefined - 1
    //#    tested vn values: {-1}
			if (message.charAt(0) == '*') {
    //#ProcessWallops.java:45: Warning: dead code
    //#    Dead code here because bits.length == 0
    //#    severity: LOW
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: void process(String, String[])
    //#    dead bb: bb_7
				callWallop(bits[1], user);
    //#ProcessWallops.java:46: Warning: dead code continues
    //#    Dead code continues
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: void process(String, String[])
    //#    dead bb: bb_8
				return;
			} else if (message.charAt(0) == '$') {
    //#ProcessWallops.java:48: Warning: dead code continues
    //#    Dead code continues
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: void process(String, String[])
    //#    dead bb: bb_9
				callWalluser(bits[1], user);
    //#ProcessWallops.java:49: Warning: dead code continues
    //#    Dead code continues
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: void process(String, String[])
    //#    dead bb: bb_10
				return;
			}
		}
		callWallDesync(message, user);
	}
    //#ProcessWallops.java:54: end of method: void com.dmdirc.parser.irc.ProcessWallops.process(String, String[])
	
	/**
	 * Callback to all objects implementing the Wallop Callback.
	 *
	 * @see IWallop
	 * @param host Host of the user who sent the wallop
	 * @param message The message
	 * @return true if a method was called, false otherwise
	 */
	protected boolean callWallop(final String message, final String host) {
		return getCallbackManager().getCallbackType("OnWallop").call(message, host);
    //#ProcessWallops.java:65: method: bool com.dmdirc.parser.irc.ProcessWallops.callWallop(String, String)
    //#ProcessWallops.java:65: ?null dereference
    //#    getCallbackType(...) != null
    //#    severity: MEDIUM
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallop(String, String)
    //#    basic block: Entry_BB_1
    //#    assertion: getCallbackType(...) != null
    //#    VN: getCallbackType(...)
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWallops.java:65: ?use of default init
    //#    init'ed(getCallbackType(...).__Tag)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallop(String, String)
    //#    basic block: Entry_BB_1
    //#    assertion: init'ed(getCallbackType(...).__Tag)
    //#    VN: getCallbackType(...).__Tag
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWallops.java:65: ?null dereference
    //#    com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallop(String, 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
    //#ProcessWallops.java:65: Warning: call too complex - analysis skipped
    //#    call on bool call(Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallop(String, String)
    //#    unanalyzed callee: bool call(Object[])
    //#input(bool callWallop(String, String)): "Callback not found: "._tainted
    //#input(bool callWallop(String, String)): "OnWallop"._tainted
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callWallop(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callWallop(String, String)): host
    //#input(bool callWallop(String, String)): message
    //#input(bool callWallop(String, String)): this
    //#input(bool callWallop(String, String)): this.myParser
    //#input(bool callWallop(String, String)): this.myParser.__Tag
    //#input(bool callWallop(String, String)): this.myParser.myCallbackManager
    //#input(bool callWallop(String, String)): this.myParser.myCallbackManager.callbackHash
    //#output(bool callWallop(String, String)): return_value
    //#pre[4] (bool callWallop(String, String)): this.myParser != null
    //#pre[5] (bool callWallop(String, String)): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[6] (bool callWallop(String, String)): this.myParser.myCallbackManager != null
    //#pre[7] (bool callWallop(String, String)): this.myParser.myCallbackManager.callbackHash != null
    //#presumption(bool callWallop(String, String)): getCallbackManager(...)@65 init'ed
    //#post(bool callWallop(String, String)): init'ed(return_value)
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:getCallbackManager
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(bool callWallop(String, String)): Effects-of-calling:java.util.Map:get
    //#ProcessWallops.java:65: end of method: bool com.dmdirc.parser.irc.ProcessWallops.callWallop(String, String)
	}
	
	/**
	 * Callback to all objects implementing the Walluser Callback.
	 *
	 * @see IWalluser
	 * @param host Host of the user who sent the walluser
	 * @param message The message
	 * @return true if a method was called, false otherwise
	 */
	protected boolean callWalluser(final String message, final String host) {
		return getCallbackManager().getCallbackType("OnWalluser").call(message, host);
    //#ProcessWallops.java:77: method: bool com.dmdirc.parser.irc.ProcessWallops.callWalluser(String, String)
    //#ProcessWallops.java:77: ?null dereference
    //#    getCallbackType(...) != null
    //#    severity: MEDIUM
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWalluser(String, String)
    //#    basic block: Entry_BB_1
    //#    assertion: getCallbackType(...) != null
    //#    VN: getCallbackType(...)
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWallops.java:77: ?use of default init
    //#    init'ed(getCallbackType(...).__Tag)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWalluser(String, String)
    //#    basic block: Entry_BB_1
    //#    assertion: init'ed(getCallbackType(...).__Tag)
    //#    VN: getCallbackType(...).__Tag
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWallops.java:77: ?null dereference
    //#    com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWalluser(String, 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
    //#ProcessWallops.java:77: Warning: call too complex - analysis skipped
    //#    call on bool call(Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWalluser(String, String)
    //#    unanalyzed callee: bool call(Object[])
    //#input(bool callWalluser(String, String)): "Callback not found: "._tainted
    //#input(bool callWalluser(String, String)): "OnWalluser"._tainted
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callWalluser(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callWalluser(String, String)): host
    //#input(bool callWalluser(String, String)): message
    //#input(bool callWalluser(String, String)): this
    //#input(bool callWalluser(String, String)): this.myParser
    //#input(bool callWalluser(String, String)): this.myParser.__Tag
    //#input(bool callWalluser(String, String)): this.myParser.myCallbackManager
    //#input(bool callWalluser(String, String)): this.myParser.myCallbackManager.callbackHash
    //#output(bool callWalluser(String, String)): return_value
    //#pre[4] (bool callWalluser(String, String)): this.myParser != null
    //#pre[5] (bool callWalluser(String, String)): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[6] (bool callWalluser(String, String)): this.myParser.myCallbackManager != null
    //#pre[7] (bool callWalluser(String, String)): this.myParser.myCallbackManager.callbackHash != null
    //#presumption(bool callWalluser(String, String)): getCallbackManager(...)@77 init'ed
    //#post(bool callWalluser(String, String)): init'ed(return_value)
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:getCallbackManager
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(bool callWalluser(String, String)): Effects-of-calling:java.util.Map:get
    //#ProcessWallops.java:77: end of method: bool com.dmdirc.parser.irc.ProcessWallops.callWalluser(String, String)
	}
	
	/**
	 * Callback to all objects implementing the WallDesync Callback.
	 *
	 * @see IWallDesync
	 * @param host Host of the user who sent the WallDesync
	 * @param message The message
	 * @return true if a method was called, false otherwise
	 */
	protected boolean callWallDesync(final String message, final String host) {
		return getCallbackManager().getCallbackType("OnWallDesync").call(message, host);
    //#ProcessWallops.java:89: method: bool com.dmdirc.parser.irc.ProcessWallops.callWallDesync(String, String)
    //#ProcessWallops.java:89: ?null dereference
    //#    getCallbackType(...) != null
    //#    severity: MEDIUM
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallDesync(String, String)
    //#    basic block: Entry_BB_1
    //#    assertion: getCallbackType(...) != null
    //#    VN: getCallbackType(...)
    //#    Expected: Inverse{null}
    //#    Bad: Addr_Set{null}
    //#    Attribs:  Ptr  null in Bad
    //#ProcessWallops.java:89: ?use of default init
    //#    init'ed(getCallbackType(...).__Tag)
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallDesync(String, String)
    //#    basic block: Entry_BB_1
    //#    assertion: init'ed(getCallbackType(...).__Tag)
    //#    VN: getCallbackType(...).__Tag
    //#    Expected: {-Inf..+Inf}
    //#    Bad: {Invalid}
    //#    Attribs:  Int  Bad only invalid
    //#ProcessWallops.java:89: ?null dereference
    //#    com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[getCallbackType(...).__Tag] != null
    //#    severity: SUPPRESSED
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallDesync(String, 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
    //#ProcessWallops.java:89: Warning: call too complex - analysis skipped
    //#    call on bool call(Object[])
    //#    severity: INFORMATIONAL
    //#    class: com.dmdirc.parser.irc.ProcessWallops
    //#    method: bool callWallDesync(String, String)
    //#    unanalyzed callee: bool call(Object[])
    //#input(bool callWallDesync(String, String)): "Callback not found: "._tainted
    //#input(bool callWallDesync(String, String)): "OnWallDesync"._tainted
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[com/dmdirc/parser/irc/IRCParser]
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/IRCParser.__Descendant_Table[others]
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/IRCParser.__Dispatch_Table.getCallbackManager()Lcom/dmdirc/parser/irc/callbacks/CallbackManager;
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific]
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[com/dmdirc/parser/irc/callbacks/CallbackObject]
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Descendant_Table[others]
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObject.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callWallDesync(String, String)): com/dmdirc/parser/irc/callbacks/CallbackObjectSpecific.__Dispatch_Table.call([Ljava/lang/Object;)Z
    //#input(bool callWallDesync(String, String)): host
    //#input(bool callWallDesync(String, String)): message
    //#input(bool callWallDesync(String, String)): this
    //#input(bool callWallDesync(String, String)): this.myParser
    //#input(bool callWallDesync(String, String)): this.myParser.__Tag
    //#input(bool callWallDesync(String, String)): this.myParser.myCallbackManager
    //#input(bool callWallDesync(String, String)): this.myParser.myCallbackManager.callbackHash
    //#output(bool callWallDesync(String, String)): return_value
    //#pre[4] (bool callWallDesync(String, String)): this.myParser != null
    //#pre[5] (bool callWallDesync(String, String)): this.myParser.__Tag == com/dmdirc/parser/irc/IRCParser
    //#pre[6] (bool callWallDesync(String, String)): this.myParser.myCallbackManager != null
    //#pre[7] (bool callWallDesync(String, String)): this.myParser.myCallbackManager.callbackHash != null
    //#presumption(bool callWallDesync(String, String)): getCallbackManager(...)@89 init'ed
    //#post(bool callWallDesync(String, String)): init'ed(return_value)
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:getCallbackManager
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.util.Map:containsKey
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.lang.String:toLowerCase
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.lang.StringBuilder
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.lang.StringBuilder:append
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.lang.StringBuilder:toString
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.lang.RuntimeException
    //#unanalyzed(bool callWallDesync(String, String)): Effects-of-calling:java.util.Map:get
    //#ProcessWallops.java:89: end of method: bool com.dmdirc.parser.irc.ProcessWallops.callWallDesync(String, String)
	}
	
	
	/**
	 * What does this IRCProcessor handle.
	 *
	 * @return String[] with the names of the tokens we handle.
	 */
	@Override
	public String[] handles() {
		return new String[]{"WALLOPS"};
    //#ProcessWallops.java:100: method: String[] com.dmdirc.parser.irc.ProcessWallops.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] == &"WALLOPS"
    //#ProcessWallops.java:100: end of method: String[] com.dmdirc.parser.irc.ProcessWallops.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 ProcessWallops (IRCParser parser, ProcessingManager manager) { super(parser, manager); }
    //#ProcessWallops.java:109: method: void com.dmdirc.parser.irc.ProcessWallops.com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)
    //#input(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): manager
    //#input(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): parser
    //#input(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): this
    //#output(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): this.myManager
    //#output(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): this.myParser
    //#post(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): this.myManager == manager
    //#post(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): init'ed(this.myManager)
    //#post(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): this.myParser == parser
    //#post(void com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)): init'ed(this.myParser)
    //#ProcessWallops.java:109: end of method: void com.dmdirc.parser.irc.ProcessWallops.com.dmdirc.parser.irc.ProcessWallops(IRCParser, ProcessingManager)

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