summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/IProtect.java
blob: d25661bf85e6fa104cb417cd4eaad1d3ef3a88aa (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
package com.earth2me.essentials.protect;

import com.earth2me.essentials.protect.data.IProtectedBlock;
import org.bukkit.plugin.Plugin;


public interface IProtect extends Plugin
{
//	boolean checkProtectionItems(final ProtectConfig list, final int id);
//	boolean getSettingBool(final ProtectConfig protectConfig);
//	String getSettingString(final ProtectConfig protectConfig);
	IProtectedBlock getStorage();

	void setStorage(IProtectedBlock pb);

	EssentialsConnect getEssentialsConnect();

//	Map<ProtectConfig, Boolean> getSettingsBoolean();
//	Map<ProtectConfig, String> getSettingsString();
//	Map<ProtectConfig, List<Integer>> getSettingsList();
	ProtectHolder getSettings();

	void setSettings(ProtectHolder settings);
}