summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java63
1 files changed, 0 insertions, 63 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java
deleted file mode 100644
index a814c5a43..000000000
--- a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java
+++ /dev/null
@@ -1,63 +0,0 @@
-package f00f.net.irc.martyr.replies;
-
-import f00f.net.irc.martyr.InCommand;
-
-/**
- * Signals an entry of a LIST response.
- *
- * @author Daniel Henninger
- */
-public class ListReply extends GenericReply
-{
-
- private String requestor;
- private String channel;
- private Integer memberCount;
- private String topic;
-
- /**
- * Factory constructor.
- */
- public ListReply()
- {
- }
-
- public ListReply(String requestor, String channel, Integer memberCount, String topic)
- {
- this.requestor = requestor;
- this.channel = channel;
- this.memberCount = memberCount;
- this.topic = topic;
- }
-
- public String getIrcIdentifier()
- {
- return "322";
- }
-
- public InCommand parse( String prefix, String identifier, String params )
- {
- return new ListReply(getParameter(params, 0), getParameter(params, 1), Integer.parseInt(getParameter(params, 2)), getParameter(params, 3));
- }
-
- public String getChannel()
- {
- return channel;
- }
-
- public Integer getMemberCount()
- {
- return memberCount;
- }
-
- public String getTopic()
- {
- return topic;
- }
-
- public String getRequestor()
- {
- return requestor;
- }
-
-}