summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ModeReply.java
blob: d355e45e31176c27ed4666a7ae6e4cbba39f15f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package f00f.net.irc.martyr.replies;

import java.util.StringTokenizer;

import f00f.net.irc.martyr.InCommand;
import f00f.net.irc.martyr.clientstate.ClientState;
import f00f.net.irc.martyr.commands.ChannelModeCommand;

/**
 * ModeReply is really a factory that passes the ModeReply off to a
 * ChannelModeCommand.
 */
public class ModeReply extends GenericReply
{

	/** For use as a factory. */
	public ModeReply()
	{
	}
	
	public String getIrcIdentifier()
	{
		return "324";
	}
	
	/**
	 * This is a factory that passes the command off to a
	 * ChannelModeCommand.
	 */
	public InCommand parse( String prefix, String identifier, String params )
	{
		StringTokenizer tokens = new StringTokenizer( params );
	
		// Our nick.  We don't need that, I think.
		tokens.nextToken();
		
		String chan = tokens.nextToken();
		
		return new ChannelModeCommand( prefix, chan, tokens );
	}
	
	/**
	 * This should, theoretically, never be called, because this command is
	 * only ever used as a factory.
	 */
	public boolean updateClientState( ClientState state )
	{
		throw new IllegalStateException("This shouldn't be called!" );
	}
}