mirror of
https://github.com/filoghost/ChestCommands.git
synced 2024-11-22 18:16:14 +01:00
Change some class packages
This commit is contained in:
parent
d1ab1fefc7
commit
2b0dbfb00c
@ -34,12 +34,12 @@ import me.filoghost.chestcommands.config.AsciiPlaceholders;
|
||||
import me.filoghost.chestcommands.config.Lang;
|
||||
import me.filoghost.chestcommands.config.Settings;
|
||||
import me.filoghost.chestcommands.config.yaml.PluginConfig;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.internal.MenuSettings;
|
||||
import me.filoghost.chestcommands.listener.CommandListener;
|
||||
import me.filoghost.chestcommands.listener.InventoryListener;
|
||||
import me.filoghost.chestcommands.listener.JoinListener;
|
||||
import me.filoghost.chestcommands.listener.SignListener;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.settings.MenuSettings;
|
||||
import me.filoghost.chestcommands.parser.MenuParser;
|
||||
import me.filoghost.chestcommands.task.RefreshMenusTask;
|
||||
import me.filoghost.chestcommands.util.FileUtils;
|
||||
|
@ -25,10 +25,10 @@ import org.bukkit.inventory.Inventory;
|
||||
import org.bukkit.inventory.InventoryView;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.internal.BaseIconMenu;
|
||||
import me.filoghost.chestcommands.internal.MenuInventoryHolder;
|
||||
import me.filoghost.chestcommands.internal.OpenTrigger;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.BaseIconMenu;
|
||||
import me.filoghost.chestcommands.menu.MenuInventoryHolder;
|
||||
import me.filoghost.chestcommands.menu.settings.OpenTrigger;
|
||||
import me.filoghost.chestcommands.util.CaseInsensitiveMap;
|
||||
import me.filoghost.chestcommands.util.ErrorCollector;
|
||||
|
||||
|
@ -19,7 +19,7 @@ import org.bukkit.ChatColor;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import me.filoghost.chestcommands.ChestCommands;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
|
||||
public class OpenMenuAction extends Action {
|
||||
|
||||
|
@ -23,7 +23,7 @@ import me.filoghost.chestcommands.api.StaticIcon;
|
||||
import me.filoghost.chestcommands.ChestCommands;
|
||||
import me.filoghost.chestcommands.api.ConfigurableIcon;
|
||||
import me.filoghost.chestcommands.api.internal.BackendAPI;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
|
||||
public class BackendAPIImpl extends BackendAPI {
|
||||
|
||||
|
@ -16,7 +16,7 @@ package me.filoghost.chestcommands.api.impl;
|
||||
|
||||
import me.filoghost.chestcommands.api.Icon;
|
||||
import me.filoghost.chestcommands.api.IconMenu;
|
||||
import me.filoghost.chestcommands.internal.BaseIconMenu;
|
||||
import me.filoghost.chestcommands.menu.BaseIconMenu;
|
||||
|
||||
public class IconMenuImpl extends BaseIconMenu<Icon> implements IconMenu {
|
||||
|
||||
|
@ -25,7 +25,7 @@ import me.filoghost.chestcommands.MenuManager;
|
||||
import me.filoghost.chestcommands.Permissions;
|
||||
import me.filoghost.chestcommands.command.framework.CommandFramework;
|
||||
import me.filoghost.chestcommands.command.framework.CommandValidate;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.util.ErrorCollector;
|
||||
|
||||
public class CommandHandler extends CommandFramework {
|
||||
|
@ -20,7 +20,7 @@ import org.bukkit.event.Listener;
|
||||
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
|
||||
|
||||
import me.filoghost.chestcommands.MenuManager;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
|
||||
public class CommandListener implements Listener {
|
||||
|
||||
|
@ -30,7 +30,7 @@ import org.bukkit.event.player.PlayerQuitEvent;
|
||||
import me.filoghost.chestcommands.ChestCommands;
|
||||
import me.filoghost.chestcommands.MenuManager;
|
||||
import me.filoghost.chestcommands.api.Icon;
|
||||
import me.filoghost.chestcommands.internal.BaseIconMenu;
|
||||
import me.filoghost.chestcommands.menu.BaseIconMenu;
|
||||
|
||||
public class InventoryListener implements Listener {
|
||||
|
||||
|
@ -28,7 +28,7 @@ import org.bukkit.event.player.PlayerInteractEvent;
|
||||
import me.filoghost.chestcommands.ChestCommands;
|
||||
import me.filoghost.chestcommands.MenuManager;
|
||||
import me.filoghost.chestcommands.Permissions;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.util.FileUtils;
|
||||
|
||||
public class SignListener implements Listener {
|
||||
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu;
|
||||
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.entity.Player;
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.entity.Player;
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu;
|
||||
|
||||
import me.filoghost.chestcommands.util.Preconditions;
|
||||
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.inventory.Inventory;
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu;
|
||||
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.inventory.Inventory;
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu.settings;
|
||||
|
||||
import org.bukkit.event.block.Action;
|
||||
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu.settings;
|
||||
|
||||
import me.filoghost.chestcommands.action.Action;
|
||||
|
@ -12,7 +12,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package me.filoghost.chestcommands.internal;
|
||||
package me.filoghost.chestcommands.menu.settings;
|
||||
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.event.block.Action;
|
@ -26,8 +26,8 @@ import me.filoghost.chestcommands.ChestCommands;
|
||||
import me.filoghost.chestcommands.action.Action;
|
||||
import me.filoghost.chestcommands.config.AsciiPlaceholders;
|
||||
import me.filoghost.chestcommands.config.ConfigUtil;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIcon;
|
||||
import me.filoghost.chestcommands.internal.RequiredItem;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIcon;
|
||||
import me.filoghost.chestcommands.menu.RequiredItem;
|
||||
import me.filoghost.chestcommands.parser.EnchantmentParser.EnchantmentDetails;
|
||||
import me.filoghost.chestcommands.util.ErrorCollector;
|
||||
import me.filoghost.chestcommands.util.FormatUtils;
|
||||
|
@ -24,11 +24,11 @@ import me.filoghost.chestcommands.ChestCommands;
|
||||
import me.filoghost.chestcommands.action.Action;
|
||||
import me.filoghost.chestcommands.config.ConfigUtil;
|
||||
import me.filoghost.chestcommands.config.yaml.PluginConfig;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIcon;
|
||||
import me.filoghost.chestcommands.internal.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.internal.ClickType;
|
||||
import me.filoghost.chestcommands.internal.MenuSettings;
|
||||
import me.filoghost.chestcommands.internal.OpenTrigger;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIcon;
|
||||
import me.filoghost.chestcommands.menu.AdvancedIconMenu;
|
||||
import me.filoghost.chestcommands.menu.settings.ClickType;
|
||||
import me.filoghost.chestcommands.menu.settings.MenuSettings;
|
||||
import me.filoghost.chestcommands.menu.settings.OpenTrigger;
|
||||
import me.filoghost.chestcommands.parser.IconParser.Coords;
|
||||
import me.filoghost.chestcommands.util.ErrorCollector;
|
||||
import me.filoghost.chestcommands.util.FormatUtils;
|
||||
|
Loading…
Reference in New Issue
Block a user