From 2ee590d85cbec87f58430dc18576b283044035e6 Mon Sep 17 00:00:00 2001 From: Dabo Ross Date: Thu, 24 Oct 2013 04:40:58 -0700 Subject: Add IEssentialsSpawn class for API for Essentials Spawn with two methods, getSpawn(String) and setSpawn(String, Location). Implement IEssentialsSpawn in EssentialsSpawn. --- .../earth2me/essentials/spawn/EssentialsSpawn.java | 23 +++++++++++++++++- .../essentials/spawn/IEssentialsSpawn.java | 27 ++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 EssentialsSpawn/src/com/earth2me/essentials/spawn/IEssentialsSpawn.java diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawn.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawn.java index 4e61bdac9..a22615550 100644 --- a/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawn.java +++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/EssentialsSpawn.java @@ -5,6 +5,7 @@ import net.ess3.api.IEssentials; import java.util.logging.Level; import java.util.logging.Logger; import org.bukkit.Bukkit; +import org.bukkit.Location; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import org.bukkit.event.Event; @@ -17,7 +18,7 @@ import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; -public class EssentialsSpawn extends JavaPlugin +public class EssentialsSpawn extends JavaPlugin implements IEssentialsSpawn { private static final Logger LOGGER = Bukkit.getLogger(); private transient IEssentials ess; @@ -70,4 +71,24 @@ public class EssentialsSpawn extends JavaPlugin { return ess.onCommandEssentials(sender, command, commandLabel, args, EssentialsSpawn.class.getClassLoader(), "com.earth2me.essentials.spawn.Command", "essentials.", spawns); } + + @Override + public void setSpawn(Location loc, String group) + { + if (group == null) + { + throw new IllegalArgumentException("Null group"); + } + spawns.setSpawn(loc, group); + } + + @Override + public Location getSpawn(String group) + { + if (group == null) + { + throw new IllegalArgumentException("Null group"); + } + return spawns.getSpawn(group); + } } diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/IEssentialsSpawn.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/IEssentialsSpawn.java new file mode 100644 index 000000000..a7c43bcb0 --- /dev/null +++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/IEssentialsSpawn.java @@ -0,0 +1,27 @@ +package com.earth2me.essentials.spawn; + +import org.bukkit.Location; +import org.bukkit.plugin.Plugin; + + +public interface IEssentialsSpawn extends Plugin +{ + + /** + * Sets the spawn for a given group to a given location. + * + * @param loc The location to set the spawn to + * @param group The group to set the spawn of, or 'default' for the default spawn + * @throws IllegalArgumentException If group is null + */ + public void setSpawn(Location loc, String group); + + /** + * Gets the spawn location for a given group. + * + * @param group The group to get the spawn of, or 'default' for the default spawn + * @return The spawn location set for the given group + * @throws IllegalArgumentException If group is null + */ + public Location getSpawn(String group); +} -- cgit v1.2.3