mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-11-15 23:15:10 +01:00
Make packages include module name and separate external libraries
This commit is contained in:
parent
eeec178e65
commit
dfcc597a02
@ -225,16 +225,16 @@
|
||||
</filters>
|
||||
<relocations>
|
||||
<relocation>
|
||||
<pattern>org.bstats</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.metrics</shadedPattern>
|
||||
<pattern>org.bstats.bukkit</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.lib.metrics</shadedPattern>
|
||||
</relocation>
|
||||
<relocation>
|
||||
<pattern>me.filoghost.updatechecker</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.updater</shadedPattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.lib.updater</shadedPattern>
|
||||
</relocation>
|
||||
<relocation>
|
||||
<pattern>me.filoghost.fcommons</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.fcommons</shadedPattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.lib.fcommons</shadedPattern>
|
||||
</relocation>
|
||||
</relocations>
|
||||
</configuration>
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays;
|
||||
package me.filoghost.holographicdisplays.plugin;
|
||||
|
||||
import org.bukkit.ChatColor;
|
||||
|
@ -3,14 +3,14 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays;
|
||||
package me.filoghost.holographicdisplays.plugin;
|
||||
|
||||
import me.filoghost.fcommons.Preconditions;
|
||||
import me.filoghost.holographicdisplays.api.Hologram;
|
||||
import me.filoghost.holographicdisplays.api.HolographicDisplaysAPI;
|
||||
import me.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.placeholder.registry.PlaceholderRegistry;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.plugin.Plugin;
|
@ -3,14 +3,14 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays;
|
||||
package me.filoghost.holographicdisplays.plugin;
|
||||
|
||||
import me.filoghost.fcommons.Preconditions;
|
||||
import me.filoghost.holographicdisplays.api.HolographicDisplaysAPI;
|
||||
import me.filoghost.holographicdisplays.api.internal.HolographicDisplaysAPIProvider;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.placeholder.registry.PlaceholderRegistry;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays;
|
||||
package me.filoghost.holographicdisplays.plugin;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.internal.HologramsAPIProvider;
|
||||
import me.filoghost.fcommons.FCommonsPlugin;
|
||||
@ -11,34 +11,34 @@ import me.filoghost.fcommons.FeatureSupport;
|
||||
import me.filoghost.fcommons.config.exception.ConfigException;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||
import me.filoghost.holographicdisplays.api.internal.HolographicDisplaysAPIProvider;
|
||||
import me.filoghost.holographicdisplays.bridge.bungeecord.BungeeServerTracker;
|
||||
import me.filoghost.holographicdisplays.bridge.placeholderapi.PlaceholderAPIHook;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.ProtocolLibHook;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.BungeeServerTracker;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.ProtocolLibHook;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.ProtocolPacketSettings;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.disk.HologramDatabase;
|
||||
import me.filoghost.holographicdisplays.disk.upgrade.LegacySymbolsUpgrade;
|
||||
import me.filoghost.holographicdisplays.legacy.api.v2.V2HologramsAPIProvider;
|
||||
import me.filoghost.holographicdisplays.listener.ChunkListener;
|
||||
import me.filoghost.holographicdisplays.listener.InteractListener;
|
||||
import me.filoghost.holographicdisplays.listener.SpawnListener;
|
||||
import me.filoghost.holographicdisplays.listener.UpdateNotificationListener;
|
||||
import me.filoghost.holographicdisplays.log.PrintableErrorCollector;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologram;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.placeholder.tracking.PlaceholderTracker;
|
||||
import me.filoghost.holographicdisplays.placeholder.TickClock;
|
||||
import me.filoghost.holographicdisplays.placeholder.TickingTask;
|
||||
import me.filoghost.holographicdisplays.placeholder.internal.AnimationRegistry;
|
||||
import me.filoghost.holographicdisplays.placeholder.internal.DefaultPlaceholders;
|
||||
import me.filoghost.holographicdisplays.placeholder.registry.PlaceholderRegistry;
|
||||
import me.filoghost.holographicdisplays.util.NMSVersion;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.HologramDatabase;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.upgrade.LegacySymbolsUpgrade;
|
||||
import me.filoghost.holographicdisplays.plugin.legacy.api.v2.V2HologramsAPIProvider;
|
||||
import me.filoghost.holographicdisplays.plugin.listener.ChunkListener;
|
||||
import me.filoghost.holographicdisplays.plugin.listener.InteractListener;
|
||||
import me.filoghost.holographicdisplays.plugin.listener.SpawnListener;
|
||||
import me.filoghost.holographicdisplays.plugin.listener.UpdateNotificationListener;
|
||||
import me.filoghost.holographicdisplays.plugin.log.PrintableErrorCollector;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderTracker;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.TickClock;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.TickingTask;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.internal.AnimationRegistry;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.internal.DefaultPlaceholders;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||
import org.bstats.bukkit.MetricsLite;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays;
|
||||
package me.filoghost.holographicdisplays.plugin;
|
||||
|
||||
public class Permissions {
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.bungeecord;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord;
|
||||
|
||||
import me.filoghost.fcommons.logging.Log;
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.plugin.Plugin;
|
@ -3,15 +3,15 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.bungeecord;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord;
|
||||
|
||||
import me.filoghost.fcommons.logging.Log;
|
||||
import me.filoghost.holographicdisplays.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.bridge.bungeecord.pinger.PingResponse;
|
||||
import me.filoghost.holographicdisplays.bridge.bungeecord.pinger.ServerPinger;
|
||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger.PingResponse;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger.ServerPinger;
|
||||
import me.filoghost.holographicdisplays.core.DebugLogger;
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.disk.ServerAddress;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ServerAddress;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
import org.jetbrains.annotations.NotNull;
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.bungeecord;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
|
||||
public class ServerInfo {
|
||||
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.bungeecord.pinger;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger;
|
||||
|
||||
import me.filoghost.holographicdisplays.core.DebugLogger;
|
||||
import me.filoghost.holographicdisplays.disk.ServerAddress;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ServerAddress;
|
||||
import org.json.simple.JSONObject;
|
||||
import org.json.simple.JSONValue;
|
||||
|
@ -3,9 +3,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.bungeecord.pinger;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.bungeecord.pinger;
|
||||
|
||||
import me.filoghost.holographicdisplays.disk.ServerAddress;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ServerAddress;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.DataInputStream;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.placeholderapi;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.placeholderapi;
|
||||
|
||||
import me.clip.placeholderapi.PlaceholderAPI;
|
||||
import org.bukkit.Bukkit;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||
|
||||
import com.comphenix.net.sf.cglib.proxy.Factory;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||
|
||||
import com.comphenix.protocol.utility.MinecraftReflection;
|
||||
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
|
||||
@ -11,7 +11,7 @@ import com.comphenix.protocol.wrappers.WrappedDataWatcher.Registry;
|
||||
import com.comphenix.protocol.wrappers.WrappedDataWatcher.Serializer;
|
||||
import com.comphenix.protocol.wrappers.WrappedDataWatcher.WrappedDataWatcherObject;
|
||||
import com.comphenix.protocol.wrappers.WrappedWatchableObject;
|
||||
import me.filoghost.holographicdisplays.util.NMSVersion;
|
||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
||||
@ -12,19 +12,19 @@ import com.comphenix.protocol.events.PacketAdapter;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
||||
import com.comphenix.protocol.events.PacketEvent;
|
||||
import com.comphenix.protocol.wrappers.WrappedWatchableObject;
|
||||
import me.filoghost.holographicdisplays.bridge.placeholderapi.PlaceholderAPIHook;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.TrackedLine;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardHologramLine;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardTextLine;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.ProtocolPacketSettings;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSArmorStand;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSEntity;
|
||||
import me.filoghost.holographicdisplays.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.placeholder.tracking.TrackedLine;
|
||||
import me.filoghost.holographicdisplays.util.NMSVersion;
|
||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||
|
||||
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerAttachEntity;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerEntityDestroy;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerMount;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerSpawnEntity;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerSpawnEntity.ObjectTypes;
|
||||
import me.filoghost.holographicdisplays.bridge.protocollib.packet.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerAttachEntity;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerEntityDestroy;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerMount;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntity;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntity.ObjectTypes;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardHologram;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardHologramLine;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardItemLine;
|
||||
@ -23,7 +23,7 @@ import me.filoghost.holographicdisplays.core.nms.entity.NMSArmorStand;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSEntity;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSItem;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSSlime;
|
||||
import me.filoghost.holographicdisplays.util.NMSVersion;
|
||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.ArrayList;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||
|
||||
import me.filoghost.fcommons.Preconditions;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||
@ -12,8 +12,8 @@ import me.filoghost.holographicdisplays.core.Utils;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardHologram;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.ProtocolPacketSettings;
|
||||
import me.filoghost.holographicdisplays.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.util.VersionUtils;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.plugin.util.VersionUtils;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.entity.Player;
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
||||
@ -22,7 +11,7 @@ import com.comphenix.protocol.events.PacketContainer;
|
||||
import com.comphenix.protocol.events.PacketEvent;
|
||||
import com.comphenix.protocol.injector.PacketConstructor;
|
||||
import com.comphenix.protocol.reflect.IntEnum;
|
||||
import me.filoghost.holographicdisplays.util.NMSVersion;
|
||||
import me.filoghost.holographicdisplays.plugin.util.NMSVersion;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.entity.Entity;
|
||||
|
@ -1,20 +1,9 @@
|
||||
/*
|
||||
* PacketWrapper - Contains wrappers for each packet in Minecraft.
|
||||
* Copyright (C) 2012 Kristian S. Stangeland
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
||||
* GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program;
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
@ -3,40 +3,40 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands;
|
||||
package me.filoghost.holographicdisplays.plugin.commands;
|
||||
|
||||
import me.filoghost.fcommons.command.CommandContext;
|
||||
import me.filoghost.fcommons.command.sub.SubCommand;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandManager;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.commands.subs.AddlineCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.AlignCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.CopyCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.CreateCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.DebugCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.DeleteCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.EditCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.HelpCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.InfoCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.InsertlineCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.ListCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.MovehereCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.NearCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.QuickEditCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.ReadimageCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.ReadtextCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.ReloadCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.RemovelineCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.SetlineCommand;
|
||||
import me.filoghost.holographicdisplays.commands.subs.TeleportCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.AddlineCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.AlignCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.CopyCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.CreateCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.MovehereCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.NearCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.QuickEditCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.ReadimageCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.ReadtextCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.ReloadCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.RemovelineCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.SetlineCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.TeleportCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.DebugCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.DeleteCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.EditCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.HelpCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.InfoCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.InsertlineCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.subs.ListCommand;
|
||||
import me.filoghost.holographicdisplays.core.Utils;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import net.md_5.bungee.api.ChatColor;
|
||||
import net.md_5.bungee.api.chat.ClickEvent;
|
||||
import net.md_5.bungee.api.chat.ComponentBuilder;
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands;
|
||||
package me.filoghost.holographicdisplays.plugin.commands;
|
||||
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.core.Utils;
|
||||
import me.filoghost.holographicdisplays.disk.HologramLineParser;
|
||||
import me.filoghost.holographicdisplays.disk.HologramLoadException;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.util.FileUtils;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.HologramLineParser;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.HologramLoadException;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.util.FileUtils;
|
||||
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
@ -3,11 +3,11 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands;
|
||||
package me.filoghost.holographicdisplays.plugin.commands;
|
||||
|
||||
import me.filoghost.fcommons.command.CommandContext;
|
||||
import me.filoghost.fcommons.command.sub.SubCommand;
|
||||
import me.filoghost.holographicdisplays.Permissions;
|
||||
import me.filoghost.holographicdisplays.plugin.Permissions;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
@ -3,9 +3,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands;
|
||||
package me.filoghost.holographicdisplays.plugin.commands;
|
||||
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
@ -3,19 +3,19 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import java.util.ArrayList;
|
@ -3,19 +3,19 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.command.CommandSender;
|
@ -3,11 +3,11 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSEntity;
|
||||
import me.filoghost.holographicdisplays.core.hologram.StandardHologram;
|
@ -3,16 +3,16 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
public class DeleteCommand extends HologramSubCommand {
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import net.md_5.bungee.api.ChatColor;
|
||||
import net.md_5.bungee.api.chat.ClickEvent;
|
||||
import net.md_5.bungee.api.chat.ComponentBuilder;
|
@ -3,13 +3,13 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import net.md_5.bungee.api.ChatColor;
|
||||
import net.md_5.bungee.api.chat.ClickEvent;
|
||||
import net.md_5.bungee.api.chat.ComponentBuilder;
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
public class InfoCommand extends LineEditingCommand implements QuickEditCommand {
|
@ -3,21 +3,21 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
@ -3,9 +3,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
|
||||
public abstract class LineEditingCommand extends HologramSubCommand {
|
||||
|
@ -3,16 +3,16 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import java.util.List;
|
@ -3,17 +3,17 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
@ -3,16 +3,16 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
public interface QuickEditCommand {
|
||||
|
@ -3,25 +3,25 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.CommandContext;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.fcommons.logging.Log;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.image.ImageMessage;
|
||||
import me.filoghost.holographicdisplays.image.ImageReadException;
|
||||
import me.filoghost.holographicdisplays.image.ImageReader;
|
||||
import me.filoghost.holographicdisplays.image.ImageTooWideException;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalTextLine;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.image.ImageMessage;
|
||||
import me.filoghost.holographicdisplays.plugin.image.ImageReadException;
|
||||
import me.filoghost.holographicdisplays.plugin.image.ImageReader;
|
||||
import me.filoghost.holographicdisplays.plugin.image.ImageTooWideException;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalTextLine;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.CommandSender;
|
@ -3,22 +3,22 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.CommandContext;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.disk.HologramLineParser;
|
||||
import me.filoghost.holographicdisplays.disk.HologramLoadException;
|
||||
import me.filoghost.holographicdisplays.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.util.FileUtils;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.Messages;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.HologramLineParser;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.HologramLoadException;
|
||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.util.FileUtils;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.CommandSender;
|
@ -3,14 +3,14 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.event.HolographicDisplaysReloadEvent;
|
||||
import me.filoghost.holographicdisplays.log.PrintableErrorCollector;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.event.HolographicDisplaysReloadEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.log.PrintableErrorCollector;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.command.ConsoleCommandSender;
|
@ -3,18 +3,18 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
@ -3,20 +3,20 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandManager;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.event.InternalHologramEditEvent;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
@ -3,16 +3,16 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.commands.subs;
|
||||
package me.filoghost.holographicdisplays.plugin.commands.subs;
|
||||
|
||||
import me.filoghost.fcommons.command.sub.SubCommandContext;
|
||||
import me.filoghost.fcommons.command.validation.CommandException;
|
||||
import me.filoghost.fcommons.command.validation.CommandValidate;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramCommandValidate;
|
||||
import me.filoghost.holographicdisplays.plugin.commands.HologramSubCommand;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.config.BaseConfigManager;
|
||||
import me.filoghost.fcommons.config.Config;
|
||||
@ -14,7 +14,7 @@ import me.filoghost.fcommons.config.exception.ConfigException;
|
||||
import me.filoghost.fcommons.config.mapped.MappedConfigLoader;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||
import me.filoghost.fcommons.logging.Log;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
|
||||
import java.nio.file.Path;
|
||||
|
@ -4,12 +4,7 @@
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.config.Config;
|
||||
import me.filoghost.fcommons.config.mapped.Path;
|
@ -3,13 +3,13 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.config.ConfigSection;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.World;
|
@ -3,15 +3,15 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.config.Config;
|
||||
import me.filoghost.fcommons.config.ConfigPath;
|
||||
import me.filoghost.fcommons.config.ConfigSection;
|
||||
import me.filoghost.fcommons.config.ConfigType;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -3,14 +3,14 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.MaterialsHelper;
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.holographicdisplays.nbt.parser.MojangsonParseException;
|
||||
import me.filoghost.holographicdisplays.nbt.parser.MojangsonParser;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.parser.MojangsonParseException;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.parser.MojangsonParser;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramLine;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.inventory.ItemStack;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
public class HologramLoadException extends Exception {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
public class ServerAddress {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.Colors;
|
||||
import me.filoghost.fcommons.config.ConfigPath;
|
@ -4,12 +4,7 @@
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk;
|
||||
package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.Colors;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.disk.upgrade;
|
||||
package me.filoghost.holographicdisplays.plugin.disk.upgrade;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.fcommons.config.Config;
|
||||
@ -14,7 +14,7 @@ import me.filoghost.fcommons.config.ConfigSection;
|
||||
import me.filoghost.fcommons.config.exception.ConfigLoadException;
|
||||
import me.filoghost.fcommons.config.exception.ConfigSaveException;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||
import me.filoghost.holographicdisplays.disk.ConfigManager;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.ConfigManager;
|
||||
import org.apache.commons.lang.StringEscapeUtils;
|
||||
|
||||
import java.io.IOException;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.event;
|
||||
package me.filoghost.holographicdisplays.plugin.event;
|
||||
|
||||
import org.bukkit.event.Event;
|
||||
import org.bukkit.event.HandlerList;
|
@ -3,9 +3,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.event;
|
||||
package me.filoghost.holographicdisplays.plugin.event;
|
||||
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologram;
|
||||
import org.bukkit.event.Event;
|
||||
import org.bukkit.event.HandlerList;
|
||||
|
@ -3,9 +3,9 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.image;
|
||||
package me.filoghost.holographicdisplays.plugin.image;
|
||||
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
import org.bukkit.ChatColor;
|
||||
|
||||
import java.awt.Color;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.image;
|
||||
package me.filoghost.holographicdisplays.plugin.image;
|
||||
|
||||
public class ImageReadException extends Exception {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.image;
|
||||
package me.filoghost.holographicdisplays.plugin.image;
|
||||
|
||||
import javax.imageio.ImageIO;
|
||||
import java.awt.image.BufferedImage;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.image;
|
||||
package me.filoghost.holographicdisplays.plugin.image;
|
||||
|
||||
public class ImageTooWideException extends Exception {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.handler.PickupHandler;
|
||||
import org.bukkit.entity.Player;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.handler.TouchHandler;
|
||||
import org.bukkit.entity.Player;
|
@ -3,14 +3,14 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.Hologram;
|
||||
import com.gmail.filoghost.holographicdisplays.api.VisibilityManager;
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.HologramLine;
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.ItemLine;
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.TextLine;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologram;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.inventory.ItemStack;
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.HologramLine;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologramLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologramLine;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public abstract class V2HologramLineAdapter implements HologramLine {
|
@ -3,16 +3,16 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.Hologram;
|
||||
import com.gmail.filoghost.holographicdisplays.api.internal.HologramsAPIProvider;
|
||||
import com.gmail.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer;
|
||||
import me.filoghost.fcommons.Preconditions;
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologram;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.placeholder.registry.PlaceholderRegistry;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.registry.PlaceholderRegistry;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.entity.Entity;
|
@ -3,11 +3,11 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.handler.PickupHandler;
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.ItemLine;
|
||||
import me.filoghost.holographicdisplays.object.api.APIItemLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIItemLine;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import me.filoghost.holographicdisplays.api.handler.PickupHandler;
|
||||
import org.bukkit.entity.Player;
|
@ -3,10 +3,10 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.TextLine;
|
||||
import me.filoghost.holographicdisplays.object.api.APITextLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APITextLine;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public class V2TextLineAdapter extends V2TouchableLineAdapter implements TextLine {
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import me.filoghost.holographicdisplays.api.handler.TouchHandler;
|
||||
import org.bukkit.entity.Player;
|
@ -3,11 +3,11 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.handler.TouchHandler;
|
||||
import com.gmail.filoghost.holographicdisplays.api.line.TouchableLine;
|
||||
import me.filoghost.holographicdisplays.object.api.APITouchableLine;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APITouchableLine;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
abstract class V2TouchableLineAdapter extends V2HologramLineAdapter implements TouchableLine {
|
@ -3,11 +3,11 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.legacy.api.v2;
|
||||
package me.filoghost.holographicdisplays.plugin.legacy.api.v2;
|
||||
|
||||
import com.gmail.filoghost.holographicdisplays.api.VisibilityManager;
|
||||
import me.filoghost.holographicdisplays.api.VisibilitySettings.Visibility;
|
||||
import me.filoghost.holographicdisplays.object.api.DefaultVisibilitySettings;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.DefaultVisibilitySettings;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
@ -3,13 +3,13 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.listener;
|
||||
package me.filoghost.holographicdisplays.plugin.listener;
|
||||
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSEntity;
|
||||
import me.filoghost.holographicdisplays.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.util.SchedulerUtils;
|
||||
import me.filoghost.holographicdisplays.plugin.object.api.APIHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.object.internal.InternalHologramManager;
|
||||
import me.filoghost.holographicdisplays.plugin.util.SchedulerUtils;
|
||||
import org.bukkit.Chunk;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.event.EventHandler;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.listener;
|
||||
package me.filoghost.holographicdisplays.plugin.listener;
|
||||
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import me.filoghost.holographicdisplays.core.nms.entity.NMSEntity;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.listener;
|
||||
package me.filoghost.holographicdisplays.plugin.listener;
|
||||
|
||||
import me.filoghost.holographicdisplays.core.nms.NMSManager;
|
||||
import org.bukkit.event.EventHandler;
|
@ -3,13 +3,13 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.listener;
|
||||
package me.filoghost.holographicdisplays.plugin.listener;
|
||||
|
||||
import me.filoghost.fcommons.logging.Log;
|
||||
import me.filoghost.holographicdisplays.Colors;
|
||||
import me.filoghost.holographicdisplays.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.Permissions;
|
||||
import me.filoghost.holographicdisplays.disk.Configuration;
|
||||
import me.filoghost.holographicdisplays.plugin.Colors;
|
||||
import me.filoghost.holographicdisplays.plugin.HolographicDisplays;
|
||||
import me.filoghost.holographicdisplays.plugin.Permissions;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.Configuration;
|
||||
import me.filoghost.updatechecker.UpdateChecker;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.log;
|
||||
package me.filoghost.holographicdisplays.plugin.log;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.log;
|
||||
package me.filoghost.holographicdisplays.plugin.log;
|
||||
|
||||
import me.filoghost.fcommons.Strings;
|
||||
|
@ -3,14 +3,14 @@
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.log;
|
||||
package me.filoghost.holographicdisplays.plugin.log;
|
||||
|
||||
import me.filoghost.fcommons.ExceptionUtils;
|
||||
import me.filoghost.fcommons.config.exception.ConfigException;
|
||||
import me.filoghost.fcommons.config.exception.ConfigSyntaxException;
|
||||
import me.filoghost.fcommons.logging.ErrorCollector;
|
||||
import me.filoghost.fcommons.logging.ErrorLog;
|
||||
import me.filoghost.holographicdisplays.disk.HologramLoadException;
|
||||
import me.filoghost.holographicdisplays.plugin.disk.HologramLoadException;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Byte} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashMap;
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Double} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Float} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Int} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Long} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Short} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_String} tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* An abstract NBT-Tag.
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -1,9 +1,9 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt.parser;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt.parser;
|
||||
|
||||
import java.io.IOException;
|
||||
|
@ -1,24 +1,24 @@
|
||||
/*
|
||||
* Copyright (C) Jan Schultke
|
||||
* Copyright (C) filoghost and contributors
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.nbt.parser;
|
||||
package me.filoghost.holographicdisplays.plugin.nbt.parser;
|
||||
|
||||
import me.filoghost.holographicdisplays.nbt.NBTByte;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTByteArray;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTCompound;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTDouble;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTFloat;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTInt;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTIntArray;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTList;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTLong;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTLongArray;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTShort;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTString;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTTag;
|
||||
import me.filoghost.holographicdisplays.nbt.NBTType;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTByteArray;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTCompound;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTDouble;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTFloat;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTIntArray;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTLong;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTString;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTTag;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTByte;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTInt;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTList;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTLongArray;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTShort;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTType;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user