summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListStartReply.java
blob: 0f00d6c3f610ed91fac9729b42d4fba67ad34570 (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
package f00f.net.irc.martyr.replies;

import f00f.net.irc.martyr.InCommand;

/**
 * Signals the beginning of a LIST response.
 *
 * @author Daniel Henninger
 */
public class ListStartReply extends GenericReply
{
    
    /**
	 * Factory constructor.
	 */
	public ListStartReply()
    {
	}

    public String getIrcIdentifier()
    {
		return "321";
	}

    public InCommand parse( String prefix, String identifier, String params )
    {
		return new ListStartReply();
	}

}