summaryrefslogtreecommitdiffstats
path: root/Essentials/test/net/ess3/testserver/TestPlugin.java
blob: 6d624ab6ddf637d0c492025c29883654dc52fa09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package net.ess3.testserver;

import java.io.File;
import java.io.InputStream;
import java.util.logging.Logger;
import net.ess3.api.server.Location;
import net.ess3.api.server.Player;
import net.ess3.api.server.Plugin;
import net.ess3.api.server.Server;

public class TestPlugin implements Plugin {

	@Override
	public int scheduleAsyncDelayedTask(Runnable run)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public int scheduleSyncDelayedTask(Runnable run)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public int scheduleSyncDelayedTask(Runnable run, long delay)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public int scheduleSyncRepeatingTask(Runnable run, long delay, long period)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public File getRootFolder()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public File getDataFolder()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public void cancelTask(int taskId)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public String getVersion()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public Class getClassByName(String name)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public InputStream getResource(String string)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public int scheduleAsyncRepeatingTask(Runnable run, long delay, long period)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public Location callRespawnEvent(Player player, Location loc, boolean bedSpawn)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public void callSuicideEvent(Player player)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public Logger getLogger()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	@Override
	public Server getServer()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

}