mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 15:35:08 +00:00
68 lines
1.5 KiB
Java
68 lines
1.5 KiB
Java
package com.earth2me.essentials.api;
|
|
|
|
import com.earth2me.essentials.IConf;
|
|
import com.earth2me.essentials.commands.WarpNotFoundException;
|
|
import java.io.File;
|
|
import java.util.Collection;
|
|
import org.bukkit.Location;
|
|
|
|
|
|
public interface IWarps extends IConf
|
|
{
|
|
/**
|
|
* Get a warp by name
|
|
*
|
|
* @param warp - Warp name
|
|
* @return - Location the warp is set to
|
|
* @throws WarpNotFoundException When the warp is not found
|
|
* @throws InvalidWorldException When the world the warp is in is not found
|
|
*/
|
|
Location getWarp(String warp) throws WarpNotFoundException, net.ess3.api.InvalidWorldException;
|
|
|
|
/**
|
|
* Gets a list of warps
|
|
*
|
|
* @return - A {@link Collection} of warps
|
|
*/
|
|
Collection<String> getList();
|
|
|
|
/**
|
|
* Gets the number of warps
|
|
*
|
|
* @return the size of the list of warps
|
|
*/
|
|
int getCount();
|
|
|
|
/**
|
|
* Delete a warp from the warp DB
|
|
*
|
|
* @param name - Name of warp
|
|
* @throws Exception
|
|
*/
|
|
void removeWarp(String name) throws Exception;
|
|
|
|
/**
|
|
* Set a warp
|
|
*
|
|
* @param name - Name of warp
|
|
* @param loc - Location of warp
|
|
* @throws Exception
|
|
*/
|
|
void setWarp(String name, Location loc) throws Exception;
|
|
|
|
/**
|
|
* Check to see if the file is empty
|
|
*
|
|
* @return
|
|
*/
|
|
boolean isEmpty();
|
|
|
|
/**
|
|
* Get a warp file note: this is not yet implemented, as 3.x uses different storage methods
|
|
*
|
|
* @param name - name of file
|
|
* @return - an instance of the file
|
|
* @throws InvalidNameException - When the file is not found
|
|
*/
|
|
File getWarpFile(String name) throws net.ess3.api.InvalidNameException;
|
|
}
|