file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
IMySQLStorage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/mysql/IMySQLStorage.java
package me.patothebest.gamecore.storage.mysql; import me.patothebest.gamecore.storage.Storage; import java.util.List; public interface IMySQLStorage extends Storage { List<String> getCreateTableQueries(); }
216
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SQLTask.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/mysql/SQLTask.java
package me.patothebest.gamecore.storage.mysql; import me.patothebest.gamecore.util.Callback; import me.patothebest.gamecore.util.WrappedBukkitRunnable; import java.sql.Connection; class SQLTask extends WrappedBukkitRunnable { private final MySQLConnectionHandler mySQLConnectionHandler; private final SQLCall...
1,226
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerQueries.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/mysql/PlayerQueries.java
package me.patothebest.gamecore.storage.mysql; class PlayerQueries { final static String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS `players` (\n" + " `id` int(11) NOT NULL AUTO_INCREMENT,\n" + " `name` varchar(16) COLLATE latin1_general_ci NOT NULL,\n" + " `UUID...
1,209
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitQueries.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/mysql/KitQueries.java
package me.patothebest.gamecore.storage.mysql; import me.patothebest.gamecore.PluginConfig; public class KitQueries { private static final String TABLE_NAME = PluginConfig.SQL_PREFIX + "_kit_data"; public static final String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS `" + TABLE_NAME + "` (\n" + ...
1,517
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ConverterCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/converter/ConverterCommand.java
package me.patothebest.gamecore.storage.converter; import com.google.inject.Inject; import me.patothebest.gamecore.commands.admin.AdminCommand; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.scheduler.PluginScheduler; import me.patothebest.gamecore.util.Utils; import me.patothebest.gameco...
2,966
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StorageConverter.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/converter/StorageConverter.java
package me.patothebest.gamecore.storage.converter; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.Provider; import me.patothebest.gamecore.kit.Kit; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.storage.Storage; import me.patothebest.gamecore...
2,738
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SplitStorage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/split/SplitStorage.java
package me.patothebest.gamecore.storage.split; import com.google.inject.Injector; import me.patothebest.gamecore.storage.flatfile.IFlatFileStorage; import me.patothebest.gamecore.util.Utils; import me.patothebest.gamecore.file.CoreConfig; import me.patothebest.gamecore.kit.Kit; import me.patothebest.gamecore.player.Co...
4,041
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
NullStorage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/none/NullStorage.java
package me.patothebest.gamecore.storage.none; import me.patothebest.gamecore.kit.Kit; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.storage.Storage; import me.patothebest.gamecore.util.Callback; import org.bukkit.inventory.PlayerInventory; import java.util.Map; public class NullSto...
1,240
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FlatFileStorage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/flatfile/FlatFileStorage.java
package me.patothebest.gamecore.storage.flatfile; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.kit.Kit; import me.patothebest.gamecore.lang.CoreLocaleManager; import me.patothebest.gamecore.logger.InjectParentLogger; import me.patothebest.gamecore.permission.PermissionGroupManager; import ...
5,601
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
IFlatFileStorage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/flatfile/IFlatFileStorage.java
package me.patothebest.gamecore.storage.flatfile; import me.patothebest.gamecore.storage.Storage; public interface IFlatFileStorage extends Storage { }
155
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerProfileFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/flatfile/PlayerProfileFile.java
package me.patothebest.gamecore.storage.flatfile; import me.patothebest.gamecore.file.FlatFile; import java.io.BufferedWriter; import java.io.IOException; public class PlayerProfileFile extends FlatFile { PlayerProfileFile(String playername) { super("players/" + playername); load(); } @...
451
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FlatFileEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/storage/flatfile/FlatFileEntity.java
package me.patothebest.gamecore.storage.flatfile; import me.patothebest.gamecore.storage.StorageEntity; import me.patothebest.gamecore.storage.StorageException; /** * * The interface used for all FlatFile entities * <p> * The entity ony requires a Map<String, Object> for * loading and saving the player * <p> *...
691
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GUIPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/GUIPage.java
package me.patothebest.gamecore.gui.inventory; import me.patothebest.gamecore.gui.inventory.button.NullButton; import me.patothebest.gamecore.gui.inventory.button.PlaceHolder; import me.patothebest.gamecore.gui.inventory.page.FailedPage; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang...
8,276
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GUIUpdater.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/GUIUpdater.java
package me.patothebest.gamecore.gui.inventory; import com.google.inject.Singleton; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; @Singleton public class GUIUpdater { private final Map<Class<? extends GUIPage>, List<GUIPage>> guis = new HashMap<>(); publi...
1,125
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GUIButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/GUIButton.java
package me.patothebest.gamecore.gui.inventory; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public interface GUIButton { void click(ClickType click, GUIPage page); void destroy(); ItemStack getItem(); }
257
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/GUIFactory.java
package me.patothebest.gamecore.gui.inventory; import org.bukkit.entity.Player; public interface GUIFactory<Menu extends GUIPage> { Menu create(Player player); }
170
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DescriptionEditorMainPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/descriptioneditor/DescriptionEditorMainPage.java
package me.patothebest.gamecore.gui.inventory.descriptioneditor; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.g...
2,530
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DescriptionEditorLine.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/descriptioneditor/DescriptionEditorLine.java
package me.patothebest.gamecore.gui.inventory.descriptioneditor; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.g...
2,370
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DescriptionEdition.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/descriptioneditor/DescriptionEdition.java
package me.patothebest.gamecore.gui.inventory.descriptioneditor; import me.patothebest.gamecore.gui.inventory.page.GenericGUI; import java.util.List; public interface DescriptionEdition extends GenericGUI { List<String> getDescription(); void onUpdate(); }
271
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DynamicPaginatedUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/DynamicPaginatedUI.java
package me.patothebest.gamecore.gui.inventory.page; import com.google.common.collect.Iterators; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.util.Utils; import org.bukkit.entity.Player; import org.bukkit.plugin.Plugin; imp...
2,669
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DualListPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/DualListPage.java
package me.patothebest.gamecore.gui.inventory.page; import com.google.common.collect.Iterators; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.button.PlaceHolder; import me.patothebest.gamecore.itemstack.ItemSta...
3,866
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GUIMultiPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/GUIMultiPage.java
package me.patothebest.gamecore.gui.inventory.page; import me.patothebest.gamecore.gui.inventory.button.PlaceHolder; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.game...
2,278
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ConfirmationPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/ConfirmationPage.java
package me.patothebest.gamecore.gui.inventory.page; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.ConfirmationPageButton; import me.patothebest.gamecore.gui.inventory.button.PlaceHolder; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.pat...
2,625
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StaticPaginatedUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/StaticPaginatedUI.java
package me.patothebest.gamecore.gui.inventory.page; import com.google.common.collect.Iterators; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.gui.inventory.GUIButton; import org.bukkit.entity.Player; import org.bukkit.plugin.Plugin; import java.util.Collection; import java.util....
2,002
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SuccessPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/SuccessPage.java
package me.patothebest.gamecore.gui.inventory.page; import me.patothebest.gamecore.gui.inventory.button.PlaceHolder; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.ChatColor; import or...
999
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FailedPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/page/FailedPage.java
package me.patothebest.gamecore.gui.inventory.page; import me.patothebest.gamecore.gui.inventory.button.PlaceHolder; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.ChatColor; import or...
995
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ItemMainPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/itemeditor/ItemMainPage.java
package me.patothebest.gamecore.gui.inventory.itemeditor; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.gui.inve...
1,704
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ItemPage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/itemeditor/ItemPage.java
package me.patothebest.gamecore.gui.inventory.itemeditor; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.gui.anvi...
3,460
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
UpdateAction.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/itemeditor/UpdateAction.java
package me.patothebest.gamecore.gui.inventory.itemeditor; import me.patothebest.gamecore.gui.inventory.page.GenericGUI; import org.bukkit.inventory.ItemStack; public interface UpdateAction extends GenericGUI { void onUpdate(ItemStack itemStack); }
256
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChangeItemAmount.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/itemeditor/ChangeItemAmount.java
package me.patothebest.gamecore.gui.inventory.itemeditor; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.gui.inve...
2,420
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ClickTypeButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/ClickTypeButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public class ClickTypeButton implements GUIButton { private ItemS...
1,022
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlaceHolder.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/PlaceHolder.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public class PlaceHolder implements GUIButton { private ItemStack...
592
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilButtonAction.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/AnvilButtonAction.java
package me.patothebest.gamecore.gui.inventory.button; public interface AnvilButtonAction { void onConfirm(String output); void onCancel(); }
151
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
NullButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/NullButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public class NullButton implements GUIButton { @Override publ...
505
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
IncrementingButtonAction.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/IncrementingButtonAction.java
package me.patothebest.gamecore.gui.inventory.button; public interface IncrementingButtonAction { void onClick(int amount); }
133
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ConfirmButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/ConfirmButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.page.ConfirmationPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public class ConfirmButton extends SimpleButton { pri...
1,231
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ClickTypeAction.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/ClickTypeAction.java
package me.patothebest.gamecore.gui.inventory.button; import org.bukkit.event.inventory.ClickType; @FunctionalInterface public interface ClickTypeAction { void onClick(ClickType clickType); }
200
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ConfirmationPageButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/ConfirmationPageButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.page.ConfirmationPage; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; pu...
978
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BackButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/BackButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import org.bukkit.entity.Player; public class BackButton extends SimpleButton { public BackButton(Player player) { super(new ItemStackBuilder().createBackItem(player)); } public BackB...
453
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomGlassPaneButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/RandomGlassPaneButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.StainedGlassPane; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.Cli...
763
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ButtonAction.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/ButtonAction.java
package me.patothebest.gamecore.gui.inventory.button; @FunctionalInterface public interface ButtonAction { void onClick(); }
132
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/AnvilButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.anvil.AnvilGUI; import me.patothebest.gamecore.gui.anvil.AnvilSlot; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import ...
1,721
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SimpleButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/SimpleButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public class SimpleButton implements GUIButton { private final It...
1,118
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
IncrementingButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/IncrementingButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.ChatColor; import org.bukki...
1,657
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CloseButton.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/inventory/button/CloseButton.java
package me.patothebest.gamecore.gui.inventory.button; import me.patothebest.gamecore.gui.inventory.GUIButton; import me.patothebest.gamecore.gui.inventory.GUIPage; import org.bukkit.event.inventory.ClickType; import org.bukkit.inventory.ItemStack; public class CloseButton implements GUIButton { private ItemStack...
635
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilHandler.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/anvil/AnvilHandler.java
package me.patothebest.gamecore.gui.anvil; import me.patothebest.gamecore.util.Utils; import java.lang.reflect.Constructor; class AnvilHandler { // -------------------------------------------- // // CONSTANTS // -------------------------------------------- // static final Class<?> CHAT_MESSAGE_CLAS...
4,264
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilGUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/anvil/AnvilGUI.java
package me.patothebest.gamecore.gui.anvil; import me.patothebest.gamecore.util.Utils; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.event.EventHandler; import org.bukkit.event.HandlerList; import org.bukkit.event.Listener; import org.bukkit.event.inventory.InventoryClickEvent; import org...
7,695
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilSlot.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/anvil/AnvilSlot.java
package me.patothebest.gamecore.gui.anvil; public enum AnvilSlot { INPUT_LEFT(0), INPUT_RIGHT(1), OUTPUT(2); private final int slot; AnvilSlot(int slot) { this.slot = slot; } public int getSlot() { return this.slot; } public static AnvilSlot bySl...
516
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilClickEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/anvil/AnvilClickEvent.java
package me.patothebest.gamecore.gui.anvil; import org.bukkit.entity.Player; public class AnvilClickEvent { // -------------------------------------------- // // FIELDS // -------------------------------------------- // private final AnvilSlot slot; private final String name; private final S...
1,248
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AnvilClickEventHandler.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/gui/anvil/AnvilClickEventHandler.java
package me.patothebest.gamecore.gui.anvil; public interface AnvilClickEventHandler { void onAnvilClick(AnvilClickEvent event); }
137
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandRegistrationException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandRegistrationException.java
package me.patothebest.gamecore.command; /** * A problem registering commands */ public class CommandRegistrationException extends RuntimeException { public CommandRegistrationException() { } public CommandRegistrationException(String message) { super(message); } public CommandRegistra...
496
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BaseCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/BaseCommand.java
package me.patothebest.gamecore.command; import me.patothebest.gamecore.treasure.TreasureCommand; import me.patothebest.gamecore.sign.SignCommand; /** * An interface declaring the base command of the plugin * <p> * This class can be used on the {@link ChildOf} @interface * when you want a command to be a subcomma...
552
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
UnhandledCommandException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/UnhandledCommandException.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
935
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SuggestionContext.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/SuggestionContext.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
4,708
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
NestedCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/NestedCommand.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
2,008
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandAlias.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandAlias.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,396
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Console.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/Console.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,100
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WrappedCommandsManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/WrappedCommandsManager.java
package me.patothebest.gamecore.command; import me.patothebest.gamecore.lang.interfaces.ILang; public class WrappedCommandsManager extends CommandsManager<WrappedCommandSender> { @Override public boolean hasPermission(WrappedCommandSender player, String perm) { return player.hasPermission(perm); }...
449
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandContext.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandContext.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
21,783
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Command.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/Command.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
2,999
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SuggestException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/SuggestException.java
package me.patothebest.gamecore.command; import com.google.common.collect.ImmutableList; import java.util.List; /** * Throw this exception out of a command method to suggest completions for the command. * * This is only allowed when {@link CommandContext#isSuggesting()} is true. If it isn't, * then the exception...
681
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Injector.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/Injector.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,992
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
MissingNestedCommandException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/MissingNestedCommandException.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,055
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandOverride.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandOverride.java
package me.patothebest.gamecore.command; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * Defines a command as one that'll override any axisting command * with the aliases */ @Retention(RetentionPolicy.RUNTIME) public @interface CommandOverride { }
295
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Logging.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/Logging.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,714
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChatColor.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/ChatColor.java
package me.patothebest.gamecore.command; import java.util.HashMap; import java.util.Map; import java.util.regex.Pattern; /** * All supported color values for chat * * Class provided as part of the Bukkit project with slight modifications to * reduce dependencies. * */ public enum ChatColor { /** * Repr...
7,141
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandsManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandsManager.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
32,455
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandPermissions.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandPermissions.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,489
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChildOf.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/ChildOf.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,741
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandNumberFormatException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandNumberFormatException.java
package me.patothebest.gamecore.command; public class CommandNumberFormatException extends CommandException { private final String actualText; public CommandNumberFormatException(String actualText) { super("Number expected in place of '" + actualText + "'"); this.actualText = actualText; ...
394
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandPermissionsException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandPermissionsException.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
998
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WrappedCommandException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/WrappedCommandException.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,008
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WrappedCommandSender.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/WrappedCommandSender.java
package me.patothebest.gamecore.command; public interface WrappedCommandSender { String getName(); void sendMessage(String message); void sendMessage(String[] messages); boolean hasPermission(String permission); Type getType(); Object getCommandSender(); enum Type { CONSOLE, ...
374
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HiddenCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/HiddenCommand.java
package me.patothebest.gamecore.command; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * Defines a command that will be hidden from the help menu */ @Retention(RetentionPolicy.RUNTIME) public @interface HiddenCommand { }
267
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SimpleInjector.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/SimpleInjector.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,802
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandException.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
2,800
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandLocals.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandLocals.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,494
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandUsageException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/CommandUsageException.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team 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 Sof...
1,435
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LangDescription.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/LangDescription.java
package me.patothebest.gamecore.command; import me.patothebest.gamecore.lang.interfaces.ILang; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * This annotation indicates that a command has a description * that can be translatable per player, meaning that the description * ...
788
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandAlias.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/CommandAlias.java
package me.patothebest.gamecore.command.impl; import org.apache.commons.lang.StringUtils; import org.bukkit.Bukkit; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import java.util.Arrays; /** * Hacky class to have command aliases for commands such * as /night to be redirected to /time ...
907
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandInfo.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/CommandInfo.java
/* * WorldEdit * Copyright (C) 2012 sk89q <http://www.sk89q.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version...
1,671
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/CommandManager.java
package me.patothebest.gamecore.command.impl; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.command.CommandsManager; import org.bukkit.command.CommandSender; public class CommandManager extends CommandsManagerRegistration<CommandSender> { public CommandManager(CorePlugin abstractJavaP...
497
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandsManagerRegistration.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/CommandsManagerRegistration.java
// $Id$ /* * WorldEdit * Copyright (C) 2011 sk89q <http://www.sk89q.com> and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your ...
2,999
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DynamicPluginCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/DynamicPluginCommand.java
// $Id$ /* * WorldEdit * Copyright (C) 2011 sk89q <http://www.sk89q.com> and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your ...
3,843
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FallbackRegistrationListener.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/FallbackRegistrationListener.java
// $Id$ /* * WorldEdit * Copyright (C) 2011 sk89q <http://www.sk89q.com> and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your ...
1,502
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DynamicPluginCommandHelpTopic.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/DynamicPluginCommandHelpTopic.java
/* * WorldEdit * Copyright (C) 2012 sk89q <http://www.sk89q.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version...
4,696
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BukkitCommandsManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/BukkitCommandsManager.java
package me.patothebest.gamecore.command.impl; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.command.CommandsManager; import org.bukkit.command.CommandSender; public class BukkitCommandsManager extends CommandsManager<CommandSender> { @Override public boolean hasPermissi...
552
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandRegistration.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/CommandRegistration.java
// $Id$ /* * WorldEdit * Copyright (C) 2011 sk89q <http://www.sk89q.com> and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your ...
5,551
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BukkitWrappedCommandSender.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/command/impl/BukkitWrappedCommandSender.java
package me.patothebest.gamecore.command.impl; import me.patothebest.gamecore.command.WrappedCommandSender; import org.bukkit.command.BlockCommandSender; import org.bukkit.command.CommandSender; import org.bukkit.command.ConsoleCommandSender; import org.bukkit.entity.Player; public class BukkitWrappedCommandSender imp...
1,413
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ScoreboardManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/ScoreboardManager.java
package me.patothebest.gamecore.scoreboard; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.event.player.ArenaLeaveEvent; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.pluginhooks.PluginHo...
3,724
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CoreScoreboardType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/CoreScoreboardType.java
package me.patothebest.gamecore.scoreboard; public enum CoreScoreboardType implements ScoreboardType { LOBBY("lobby-scoreboard"), WAITING("waiting-scoreboard"), GAME("game-scoreboard"), NONE("none") ; private boolean enabled; private final String configName; CoreScoreboardType(Strin...
643
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerScoreboard.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/PlayerScoreboard.java
package me.patothebest.gamecore.scoreboard; import org.apache.commons.lang.Validate; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.entity.Player; import org.bukkit.scoreboard.DisplaySlot; import org.bukkit.scoreboard.Objective; import org.bukkit.scoreboard.Score; import org.bukkit.scoreboard...
3,429
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ScoreboardFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/ScoreboardFile.java
package me.patothebest.gamecore.scoreboard; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.util.Utils; import me.patothebest.gamecore.file.VersionFile; import me.patothebes...
1,809
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ScoreboardType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/ScoreboardType.java
package me.patothebest.gamecore.scoreboard; public interface ScoreboardType { boolean isEnabled(); String getConfigName(); void setEnabled(boolean enabled); }
174
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CustomScoreboard.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/CustomScoreboard.java
package me.patothebest.gamecore.scoreboard; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.util.WrappedBukkitRunnable; import org.bukkit.Bukkit; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.entity.Player; import java.util.Map; import java.util.concurrent.Concurren...
2,745
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ScoreboardEntry.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/ScoreboardEntry.java
package me.patothebest.gamecore.scoreboard; import me.patothebest.gamecore.placeholder.PlaceHolderManager; import me.patothebest.gamecore.util.Tickable; import me.patothebest.gamecore.util.Utils; import me.patothebest.gamecore.animation.AnimationManager; import org.bukkit.entity.Player; import java.util.ArrayList; im...
3,725
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ScoreboardTeam.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/scoreboard/ScoreboardTeam.java
package me.patothebest.gamecore.scoreboard; import com.google.common.base.Splitter; import org.bukkit.ChatColor; import org.bukkit.scoreboard.Score; import org.bukkit.scoreboard.Team; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class ScoreboardTeam { private final Player...
3,106
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DefaultFontInfo.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/chat/DefaultFontInfo.java
package me.patothebest.gamecore.chat; public enum DefaultFontInfo { A('A', 5), a('a', 5), B('B', 5), b('b', 5), C('C', 5), c('c', 5), D('D', 5), d('d', 5), E('E', 5), e('e', 5), F('F', 5), f('f', 4), G('G', 5), g('g', 5), H('H', 5), h('h', 5), I('I',...
2,597
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Pagination.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/chat/Pagination.java
package me.patothebest.gamecore.chat; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterators; import me.patothebest.gamecore.command.ChatColor; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.util.Utils; import me.patothebest.gamecore.util.IndexedFunctio...
4,123
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommandPagination.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/chat/CommandPagination.java
package me.patothebest.gamecore.chat; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.command.ChatColor; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.permission.Permission; import me.patothebest.gamecore.c...
6,303
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z