From 7e5b2c1f30c0d0a4ce6a847fc3f78de35aa900e4 Mon Sep 17 00:00:00 2001 From: raphfrk Date: Sun, 14 Aug 2011 05:34:15 +0100 Subject: Adds a method that returns the File representation of the update folder. The previous method just returns the filename and doesn't provide the path --- src/main/java/org/bukkit/Server.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src') diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java index fcf73432..a16b207d 100644 --- a/src/main/java/org/bukkit/Server.java +++ b/src/main/java/org/bukkit/Server.java @@ -10,6 +10,7 @@ import java.util.Map; import java.util.Set; import java.util.UUID; import java.util.logging.Logger; +import java.io.File; import org.bukkit.command.PluginCommand; import org.bukkit.command.CommandSender; @@ -148,10 +149,20 @@ public interface Server { * Gets the name of the update folder. The update folder is used to safely update * plugins at the right moment on a plugin load. * + * The update folder name is relative to the plugins folder. + * * @return The name of the update folder */ public String getUpdateFolder(); + /** + * Gets the update folder. The update folder is used to safely update + * plugins at the right moment on a plugin load. + * + * @return The name of the update folder + */ + public File getUpdateFolderFile(); + /** * Gets a player object by the given username * -- cgit v1.2.3