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

import f00f.net.irc.martyr.InCommand;

public class LUserMeReply extends GenericStringReply
{

    public LUserMeReply()
    {
    }

    public LUserMeReply( String string )
    {
        super( string );
    }

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

    public InCommand parse( String prefix, String identifier, String params )
    {
        return new LUserMeReply( getParameter( params, 1 ) );
    }

}