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, 63 insertions, 0 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java
new file mode 100644
index 000000000..a814c5a43
--- /dev/null
+++ b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/ListReply.java
@@ -0,0 +1,63 @@
+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;
+ }
+
+}