mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-16 11:37:30 +02:00
@@ -52,7 +52,6 @@ public interface IEssentials extends Plugin
|
|||||||
int scheduleSyncRepeatingTask(Runnable run, long delay, long period);
|
int scheduleSyncRepeatingTask(Runnable run, long delay, long period);
|
||||||
|
|
||||||
//IPermissionsHandler getPermissionsHandler();
|
//IPermissionsHandler getPermissionsHandler();
|
||||||
|
|
||||||
void reload();
|
void reload();
|
||||||
|
|
||||||
TNTExplodeListener getTNTListener();
|
TNTExplodeListener getTNTListener();
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
package com.earth2me.essentials.api;
|
package com.earth2me.essentials.api;
|
||||||
|
|
||||||
|
|
||||||
public interface IEssentialsModule
|
public interface IEssentialsModule
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -6,7 +6,7 @@ import java.util.Collection;
|
|||||||
|
|
||||||
public interface IKits extends IReload
|
public interface IKits extends IReload
|
||||||
{
|
{
|
||||||
Kit getKit(String kit)throws Exception;
|
Kit getKit(String kit) throws Exception;
|
||||||
|
|
||||||
void sendKit(IUser user, String kit) throws Exception;
|
void sendKit(IUser user, String kit) throws Exception;
|
||||||
|
|
||||||
|
@@ -2,7 +2,9 @@ package com.earth2me.essentials.api;
|
|||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
|
|
||||||
public interface IReplyTo {
|
|
||||||
|
public interface IReplyTo
|
||||||
|
{
|
||||||
void setReplyTo(CommandSender user);
|
void setReplyTo(CommandSender user);
|
||||||
|
|
||||||
CommandSender getReplyTo();
|
CommandSender getReplyTo();
|
||||||
|
@@ -6,5 +6,4 @@ import com.earth2me.essentials.storage.IStorageObjectHolder;
|
|||||||
|
|
||||||
public interface IWarp extends IStorageObjectHolder<Warp>
|
public interface IWarp extends IStorageObjectHolder<Warp>
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -3,7 +3,6 @@ package com.earth2me.essentials.api;
|
|||||||
|
|
||||||
public class InvalidNameException extends Exception
|
public class InvalidNameException extends Exception
|
||||||
{
|
{
|
||||||
|
|
||||||
public InvalidNameException(Throwable thrwbl)
|
public InvalidNameException(Throwable thrwbl)
|
||||||
{
|
{
|
||||||
super(thrwbl);
|
super(thrwbl);
|
||||||
|
Reference in New Issue
Block a user