summaryrefslogtreecommitdiffstats
path: root/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2012-01-18 22:53:39 +0000
committerKHobbits <rob@khobbits.co.uk>2012-01-18 22:53:39 +0000
commitcd8cc631134de1ece1aab89c0b01d5a63dda1cfd (patch)
tree2a66d7070b71ed0d22e2f0681e4eff2517891cff /EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java
parent947bee98a0eae2da2448923d450ebd4ca7d81157 (diff)
downloadEssentials-cd8cc631134de1ece1aab89c0b01d5a63dda1cfd.tar
Essentials-cd8cc631134de1ece1aab89c0b01d5a63dda1cfd.tar.gz
Essentials-cd8cc631134de1ece1aab89c0b01d5a63dda1cfd.tar.lz
Essentials-cd8cc631134de1ece1aab89c0b01d5a63dda1cfd.tar.xz
Essentials-cd8cc631134de1ece1aab89c0b01d5a63dda1cfd.zip
Reduce duplicate calls in EssentialsChat
Should cut the time down a little.
Diffstat (limited to 'EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java')
-rw-r--r--EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java b/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java
new file mode 100644
index 000000000..38239abfe
--- /dev/null
+++ b/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java
@@ -0,0 +1,51 @@
+package com.earth2me.essentials.chat;
+
+import com.earth2me.essentials.IEssentials;
+import com.earth2me.essentials.Trade;
+import com.earth2me.essentials.User;
+
+
+public class ChatStore
+{
+ private final User user;
+ private final String type;
+ private final Trade charge;
+ private long radius;
+
+ ChatStore(final IEssentials ess, final User user, final String type)
+ {
+ this.user = user;
+ this.type = type;
+ this.charge = new Trade(getLongType(), ess);
+ }
+
+ public User getUser()
+ {
+ return user;
+ }
+
+ public Trade getCharge()
+ {
+ return charge;
+ }
+
+ public String getType()
+ {
+ return type;
+ }
+
+ public String getLongType()
+ {
+ return type.length() > 0 ? "chat" : "chat-" + type;
+ }
+
+ public long getRadius()
+ {
+ return radius;
+ }
+
+ public void setRadius(long radius)
+ {
+ this.radius = radius;
+ }
+}