From 568f6b36bd63accedf8121d92a15569fb38e406f Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Wed, 19 Nov 2014 17:16:11 +0100 Subject: [PATCH 1/8] Documented the API even further --- .../plot/api/PlotAPI.java | 243 ++++++++++++------ .../plot/util/PlotSquaredException.java | 5 +- 2 files changed, 169 insertions(+), 79 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java index 28018d8d5..816719215 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java @@ -33,7 +33,9 @@ import com.intellectualcrafters.plot.object.PlotManager; import com.intellectualcrafters.plot.object.PlotWorld; import com.intellectualcrafters.plot.util.PlayerFunctions; import com.intellectualcrafters.plot.util.PlotHelper; +import com.intellectualcrafters.plot.util.PlotSquaredException; import com.intellectualcrafters.plot.util.SchematicHandler; +import com.sun.istack.internal.NotNull; import org.bukkit.Bukkit; import org.bukkit.Location; import org.bukkit.World; @@ -45,41 +47,70 @@ import java.util.ArrayList; import java.util.Set; /** - * The plotMain api class. + * PlotSquared API * - * @author Citymonstret, Empire92 + * @author Citymonstret + * @author Empire92 + * + * @version API 2.0 */ -@SuppressWarnings({"unused", "javadoc"}) + +@SuppressWarnings("unused") public class PlotAPI { /** - * Admin Permission + * Permission that allows for admin access, + * this permission node will allow the player + * to use any part of the plugin, without limitations. */ public static final String ADMIN_PERMISSION = "plots.admin"; + + /** + * Plot Helper Class + *

+ * General functions involving plots, and the management of them + * + * @see com.intellectualcrafters.plot.util.PlotHelper + */ private static PlotHelper plotHelper; + + /** + * Player Functions + * + * General functions involving players, and plot worlds + * @see com.intellectualcrafters.plot.util.PlayerFunctions + */ private static PlayerFunctions playerFunctions; + + /** + * Flag Manager + * + * The manager which handles all flags + * @see com.intellectualcrafters.plot.flag.FlagManager + */ private static FlagManager flagManager; + + /** + * Schematic Handler + * + * The handler which is used to create, and paste, schematics + * @see com.intellectualcrafters.plot.util.SchematicHandler + */ private static SchematicHandler schematicHandler; - // Methods/fields in PlotMain class - - // PlotMain.checkForExpiredPlots(); #Ignore - // PlotMain.killAllEntities(); #Ignore - // - // PlotMain.createConfiguration(plotworld); - // PlotMain.getPlots(player) - // PlotMain.getPlots(world) - // PlotMain.getPlots(world, player) - // PlotMain.getWorldPlots(world) - // PlotMain.getPlotWorlds() - // PlotMain.isPlotWorld(world) - // PlotMain.removePlot(world, id, callEvent) - // PlotMain.teleportPlayer(player, from, plot) - // PlotMain.updatePlot(plot); + /** + * The translation class. + * + * @see com.intellectualcrafters.plot.config.C + */ private static C c; - // Reference - // To access plotMain stuff. + /** + * PlotMain instance + * + * This is the instance that allows for most methods to be used. + * @see com.intellectualcrafters.plot.PlotMain + */ private final PlotMain plotMain; /** @@ -87,15 +118,21 @@ public class PlotAPI { * (Optimally the plugin that is accessing the method) * * @param plugin Plugin used to access this method + * @throws com.intellectualcrafters.plot.util.PlotSquaredException if the program fails to fetch the PlotMain instance + * @see com.intellectualcrafters.plot.PlotMain */ - public PlotAPI(final JavaPlugin plugin) { + public PlotAPI(@NotNull final JavaPlugin plugin) { this.plotMain = JavaPlugin.getPlugin(PlotMain.class); + if (plotMain == null) { + throw new PlotSquaredException(PlotSquaredException.PlotError.PLOTMAIN_NULL, "Failed to fetch the plotmain instance, Plot API for " + plugin.getName() + " will be disabled"); + } } /** * Get all plots * * @return all plots + * @see com.intellectualcrafters.plot.PlotMain#getPlots() */ public Set getAllPlots() { return PlotMain.getPlots(); @@ -104,15 +141,15 @@ public class PlotAPI { /** * Return all plots for a player * - * @param player + * @param player Player, whose plots to search for * @return all plots that a player owns */ - public Set getPlayerPlots(final Player player) { + public Set getPlayerPlots(@NotNull final Player player) { return PlotMain.getPlots(player); } /** - * Add a plotoworld + * Add a plot world * * @param world World Name * @param plotWorld Plot World Object @@ -121,7 +158,7 @@ public class PlotAPI { * com.intellectualcrafters.plot.object.PlotWorld, * com.intellectualcrafters.plot.object.PlotManager) */ - public void addPlotWorld(final String world, final PlotWorld plotWorld, final PlotManager manager) { + public void addPlotWorld(@NotNull final String world, @NotNull final PlotWorld plotWorld, @NotNull final PlotManager manager) { PlotMain.addPlotWorld(world, plotWorld, manager); } @@ -147,6 +184,7 @@ public class PlotAPI { * Only use this if you really need it * * @return PlotMain PlotSquared Main Class + * @see com.intellectualcrafters.plot.PlotMain */ public PlotMain getMain() { return this.plotMain; @@ -156,6 +194,7 @@ public class PlotAPI { * PlotHelper class contains useful methods relating to plots. * * @return PlotHelper + * @see com.intellectualcrafters.plot.util.PlotHelper */ public PlotHelper getPlotHelper() { return plotHelper; @@ -166,6 +205,7 @@ public class PlotAPI { * player/plot methods are here as well * * @return PlayerFunctions + * @see com.intellectualcrafters.plot.util.PlayerFunctions */ public PlayerFunctions getPlayerFunctions() { return playerFunctions; @@ -175,6 +215,7 @@ public class PlotAPI { * FlagManager class contains methods relating to plot flags * * @return FlagManager + * @see com.intellectualcrafters.plot.flag.FlagManager */ public FlagManager getFlagManager() { return flagManager; @@ -184,6 +225,7 @@ public class PlotAPI { * SchematicHandler class contains methods related to pasting schematics * * @return SchematicHandler + * @see com.intellectualcrafters.plot.util.SchematicHandler */ public SchematicHandler getSchematicHandler() { return schematicHandler; @@ -193,6 +235,7 @@ public class PlotAPI { * C class contains all the captions from the translations.yml file. * * @return C + * @see com.intellectualcrafters.plot.config.C */ public C getCaptions() { return c; @@ -202,10 +245,12 @@ public class PlotAPI { * Get the plot manager for a world. - Most of these methods can be accessed * through the PlotHelper * - * @param world + * @param world Which manager to get * @return PlotManager + * @see com.intellectualcrafters.plot.object.PlotManager + * @see PlotMain#getPlotManager(org.bukkit.World) */ - public PlotManager getPlotManager(final World world) { + public PlotManager getPlotManager(@NotNull final World world) { return PlotMain.getPlotManager(world); } @@ -213,10 +258,12 @@ public class PlotAPI { * Get the plot manager for a world. - Contains useful low level methods for * plot merging, clearing, and tessellation * - * @param world + * @param world Plot World * @return PlotManager + * @see PlotMain#getPlotManager(String) + * @see com.intellectualcrafters.plot.object.PlotManager */ - public PlotManager getPlotManager(final String world) { + public PlotManager getPlotManager(@NotNull final String world) { return PlotMain.getPlotManager(world); } @@ -228,8 +275,10 @@ public class PlotAPI { * @param world (to get settings of) * @return PlotWorld class for that world ! will return null if not a plot * world world + * @see PlotMain#getWorldSettings(org.bukkit.World) + * @see com.intellectualcrafters.plot.object.PlotWorld */ - public PlotWorld getWorldSettings(final World world) { + public PlotWorld getWorldSettings(@NotNull final World world) { return PlotMain.getWorldSettings(world); } @@ -239,37 +288,42 @@ public class PlotAPI { * @param world (to get settings of) * @return PlotWorld class for that world ! will return null if not a plot * world world + * @see PlotMain#getWorldSettings(String) + * @see com.intellectualcrafters.plot.object.PlotWorld */ - public PlotWorld getWorldSettings(final String world) { + public PlotWorld getWorldSettings(@NotNull final String world) { return PlotMain.getWorldSettings(world); } /** * Send a message to a player. * - * @param player + * @param player Player that will receive the message * @param c (Caption) + * @see com.intellectualcrafters.plot.util.PlayerFunctions#sendMessage(org.bukkit.entity.Player, com.intellectualcrafters.plot.config.C, String...) */ - public void sendMessage(final Player player, final C c) { + public void sendMessage(@NotNull final Player player, @NotNull final C c) { PlayerFunctions.sendMessage(player, c); } /** * Send a message to a player. - Supports color codes * - * @param player - * @param string + * @param player Player that will receive the message + * @param string The message + * @see com.intellectualcrafters.plot.util.PlayerFunctions#sendMessage(org.bukkit.entity.Player, String) */ - public void sendMessage(final Player player, final String string) { + public void sendMessage(@NotNull final Player player, @NotNull final String string) { PlayerFunctions.sendMessage(player, string); } /** * Send a message to the console. - Supports color codes * - * @param msg + * @param msg Message that should be sent to the console + * @see PlotMain#sendConsoleSenderMessage(String) */ - public void sendConsoleMessage(final String msg) { + public void sendConsoleMessage(@NotNull final String msg) { PlotMain.sendConsoleSenderMessage(msg); } @@ -277,17 +331,19 @@ public class PlotAPI { * Send a message to the console * * @param c (Caption) + * @see #sendConsoleMessage(String) */ - public void sendConsoleMessage(final C c) { + public void sendConsoleMessage(@NotNull final C c) { sendConsoleMessage(c.s()); } /** * Register a flag for use in plots * - * @param flag + * @param flag Flag that should be registered + * @see com.intellectualcrafters.plot.flag.FlagManager#addFlag(com.intellectualcrafters.plot.flag.AbstractFlag) */ - public void addFlag(final AbstractFlag flag) { + public void addFlag(@NotNull final AbstractFlag flag) { FlagManager.addFlag(flag); } @@ -295,6 +351,8 @@ public class PlotAPI { * get all the currently registered flags * * @return array of Flag[] + * @see com.intellectualcrafters.plot.flag.FlagManager#getFlags() + * @see com.intellectualcrafters.plot.flag.AbstractFlag */ public AbstractFlag[] getFlags() { return FlagManager.getFlags().toArray(new AbstractFlag[FlagManager.getFlags().size()]); @@ -303,42 +361,49 @@ public class PlotAPI { /** * Get a plot based on the ID * - * @param world - * @param x - * @param z + * @param world World in which the plot is located + * @param x Plot Location X Co-ord + * @param z Plot Location Z Co-ord * @return plot, null if ID is wrong + * @see PlotHelper#getPlot(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) + * @see com.intellectualcrafters.plot.object.Plot */ - public Plot getPlot(final World world, final int x, final int z) { + public Plot getPlot(@NotNull final World world, final int x, final int z) { return PlotHelper.getPlot(world, new PlotId(x, z)); } /** * Get a plot based on the location * - * @param l + * @param l The location that you want to to retrieve the plot from * @return plot if found, otherwise it creates a temporary plot- + * @see PlotHelper#getCurrentPlot(org.bukkit.Location) + * @see com.intellectualcrafters.plot.object.Plot */ - public Plot getPlot(final Location l) { + public Plot getPlot(@NotNull final Location l) { return PlotHelper.getCurrentPlot(l); } /** * Get a plot based on the player location * - * @param player + * @param player Get the current plot for the player location * @return plot if found, otherwise it creates a temporary plot + * @see #getPlot(org.bukkit.Location) + * @see com.intellectualcrafters.plot.object.Plot */ - public Plot getPlot(final Player player) { + public Plot getPlot(@NotNull final Player player) { return this.getPlot(player.getLocation()); } /** * Check whether or not a player has a plot * - * @param player + * @param player Player that you want to check for * @return true if player has a plot, false if not. + * @see #getPlots(org.bukkit.World, org.bukkit.entity.Player, boolean) */ - public boolean hasPlot(final World world, final Player player) { + public boolean hasPlot(@NotNull final World world, @NotNull final Player player) { return (getPlots(world, player, true) != null) && (getPlots(world, player, true).length > 0); } @@ -347,8 +412,9 @@ public class PlotAPI { * * @param plr to search for * @param just_owner should we just search for owner? Or with rights? + * @see com.intellectualcrafters.plot.object.Plot */ - public Plot[] getPlots(final World world, final Player plr, final boolean just_owner) { + public Plot[] getPlots(@NotNull final World world, @NotNull final Player plr, final boolean just_owner) { final ArrayList pPlots = new ArrayList<>(); for (final Plot plot : PlotMain.getPlots(world).values()) { if (just_owner) { @@ -369,8 +435,10 @@ public class PlotAPI { * * @param world to get plots of * @return Plot[] - array of plot objects in world + * @see PlotMain#getWorldPlots(org.bukkit.World) + * @see com.intellectualcrafters.plot.object.Plot */ - public Plot[] getPlots(final World world) { + public Plot[] getPlots(@NotNull final World world) { return PlotMain.getWorldPlots(world); } @@ -378,6 +446,7 @@ public class PlotAPI { * Get all plot worlds * * @return World[] - array of plot worlds + * @see com.intellectualcrafters.plot.PlotMain#getPlotWorlds() */ public String[] getPlotWorlds() { return PlotMain.getPlotWorlds(); @@ -388,18 +457,23 @@ public class PlotAPI { * * @param world (to check if plot world) * @return boolean (if plot world or not) + * @see com.intellectualcrafters.plot.PlotMain#isPlotWorld(org.bukkit.World) */ - public boolean isPlotWorld(final World world) { + public boolean isPlotWorld(@NotNull final World world) { return PlotMain.isPlotWorld(world); } /** * Get plot locations * - * @param p + * @param p Plot that you want to get the locations for * @return [0] = bottomLc, [1] = topLoc, [2] = home + * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotBottomLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) + * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotTopLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) + * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotHome(org.bukkit.World, com.intellectualcrafters.plot.object.Plot) + * @see com.intellectualcrafters.plot.object.PlotHomePosition */ - public Location[] getLocations(final Plot p) { + public Location[] getLocations(@NotNull final Plot p) { final World world = Bukkit.getWorld(p.world); return new Location[]{PlotHelper.getPlotBottomLoc(world, p.id), PlotHelper.getPlotTopLoc(world, p.id), PlotHelper.getPlotHome(world, p.id)}; } @@ -407,31 +481,35 @@ public class PlotAPI { /** * Get home location * - * @param p + * @param p Plot that you want to get the location for * @return plot bottom location + * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotHome(org.bukkit.World, com.intellectualcrafters.plot.object.Plot) + * @see com.intellectualcrafters.plot.object.PlotHomePosition */ - public Location getHomeLocation(final Plot p) { + public Location getHomeLocation(@NotNull final Plot p) { return PlotHelper.getPlotHome(p.getWorld(), p.id); } /** - * Get Bottom Location + * Get Bottom Location (min, min, min) * - * @param p + * @param p Plot that you want to get the location for * @return plot bottom location + * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotBottomLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) */ - public Location getBottomLocation(final Plot p) { + public Location getBottomLocation(@NotNull final Plot p) { final World world = Bukkit.getWorld(p.world); return PlotHelper.getPlotBottomLoc(world, p.id); } /** - * Get Top Location + * Get Top Location (max, max, max) * - * @param p + * @param p Plot that you want to get the location for * @return plot top location + * @see PlotHelper#getPlotTopLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) */ - public Location getTopLocation(final Plot p) { + public Location getTopLocation(@NotNull final Plot p) { final World world = Bukkit.getWorld(p.world); return PlotHelper.getPlotTopLoc(world, p.id); } @@ -439,19 +517,21 @@ public class PlotAPI { /** * Check whether or not a player is in a plot * - * @param player + * @param player who we're checking for * @return true if the player is in a plot, false if not- + * @see com.intellectualcrafters.plot.util.PlayerFunctions#isInPlot(org.bukkit.entity.Player) */ - public boolean isInPlot(final Player player) { + public boolean isInPlot(@NotNull final Player player) { return PlayerFunctions.isInPlot(player); } /** * Register a subcommand * - * @param c + * @param c SubCommand, that we want to register + * @see com.intellectualcrafters.plot.commands.MainCommand#subCommands */ - public void registerCommand(final SubCommand c) { + public void registerCommand(@NotNull final SubCommand c) { MainCommand.subCommands.add(c); } @@ -459,6 +539,7 @@ public class PlotAPI { * Get the plotMain class * * @return PlotMain Class + * @see com.intellectualcrafters.plot.PlotMain */ public PlotMain getPlotMain() { return this.plotMain; @@ -467,30 +548,36 @@ public class PlotAPI { /** * Get the player plot count * - * @param player - * @return + * @param world Specify the world we want to select the plots from + * @param player Player, for whom we're getting the plot count + * @return the number of plots the player has + * @see com.intellectualcrafters.plot.util.PlayerFunctions#getPlayerPlotCount(org.bukkit.World, org.bukkit.entity.Player) */ - public int getPlayerPlotCount(final World world, final Player player) { + public int getPlayerPlotCount(@NotNull final World world, @NotNull final Player player) { return PlayerFunctions.getPlayerPlotCount(world, player); } /** - * Get a players plots + * Get a collection containing the players plots * - * @param player + * @param world Specify the world we want to select the plots from + * @param player Player, for whom we're getting the plots * @return a set containing the players plots + * @see com.intellectualcrafters.plot.util.PlayerFunctions#getPlayerPlots(org.bukkit.World, org.bukkit.entity.Player) + * @see com.intellectualcrafters.plot.object.Plot */ - public Set getPlayerPlots(final World world, final Player player) { + public Set getPlayerPlots(@NotNull final World world, @NotNull final Player player) { return PlayerFunctions.getPlayerPlots(world, player); } /** - * Get the allowed plot count for a player + * Get the numbers of plots, which the player is able to build in * - * @param player + * @param player Player, for whom we're getting the plots (trusted, helper and owner) * @return the number of allowed plots + * @see com.intellectualcrafters.plot.util.PlayerFunctions#getAllowedPlots(org.bukkit.entity.Player) */ - public int getAllowedPlots(final Player player) { + public int getAllowedPlots(@NotNull final Player player) { return PlayerFunctions.getAllowedPlots(player); } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotSquaredException.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotSquaredException.java index e88888c04..70fe2ae40 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotSquaredException.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotSquaredException.java @@ -24,7 +24,9 @@ package com.intellectualcrafters.plot.util; import com.intellectualcrafters.plot.PlotMain; /** - * Created by Citymonstret on 2014-09-29. + * Created 2014-09-29 for PlotSquared + * + * @author Citymonstret */ public class PlotSquaredException extends RuntimeException { @@ -34,6 +36,7 @@ public class PlotSquaredException extends RuntimeException { } public static enum PlotError { + PLOTMAIN_NULL("The PlotMain instance was null"), MISSING_DEPENDENCY("Missing Dependency"); private String errorHeader; From 8261b944b23d32b803e399f5a9baac3c9e25a8d1 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Wed, 19 Nov 2014 17:46:30 +0100 Subject: [PATCH 2/8] Fixed lots of "warnings", and minor stuff. Deprecated old Plot Constructor(s) --- .../plot/object/Plot.java | 63 ++++++++++++++++++- .../plot/object/PlotBlock.java | 3 + .../plot/object/PlotComment.java | 3 + .../plot/object/PlotHomePosition.java | 10 +-- .../plot/object/PlotSettings.java | 16 +++-- .../plot/object/PlotWorld.java | 10 +-- .../plot/object/Title.java | 5 +- .../plot/util/LSetCube.java | 1 + .../intellectualcrafters/plot/util/PWE.java | 3 +- .../plot/util/PlotHelper.java | 17 ++--- .../plot/util/ReflectionUtils.java | 5 +- .../plot/uuid/NameFetcher.java | 5 +- .../plot/uuid/PlotUUIDSaver.java | 4 +- .../plot/uuid/UUIDFetcher.java | 52 ++++++++------- .../plot/uuid/UUIDSaver.java | 18 +++--- .../plot/uuid/UUIDSet.java | 2 +- 16 files changed, 148 insertions(+), 69 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Plot.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Plot.java index dbc7a0785..7a3126e7e 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Plot.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Plot.java @@ -37,6 +37,7 @@ import java.util.UUID; * The plot class * * @author Citymonstret + * @author Empire92 */ @SuppressWarnings("javadoc") public class Plot implements Cloneable { @@ -91,7 +92,11 @@ public class Plot implements Cloneable { * @param plotBiome * @param helpers * @param denied + * + * @deprecated */ + @Deprecated + @SuppressWarnings("unused") public Plot(final PlotId id, final UUID owner, final Biome plotBiome, final ArrayList helpers, final ArrayList denied, final String world) { this.id = id; this.settings = new PlotSettings(this); @@ -107,6 +112,29 @@ public class Plot implements Cloneable { this.world = world; } + /** + * Primary constructor + * + * @param id + * @param owner + * @param helpers + * @param denied + */ + public Plot(final PlotId id, final UUID owner, final ArrayList helpers, final ArrayList denied, final String world) { + this.id = id; + this.settings = new PlotSettings(this); + this.owner = owner; + this.deny_entry = this.owner == null; + this.helpers = helpers; + this.denied = denied; + this.trusted = new ArrayList<>(); + this.settings.setAlias(""); + this.settings.setPosition(PlotHomePosition.DEFAULT); + this.delete = false; + this.settings.setFlags(new Flag[0]); + this.world = world; + } + /** * Constructor for saved plots * @@ -116,7 +144,11 @@ public class Plot implements Cloneable { * @param helpers * @param denied * @param merged + * + * @deprecated */ + @Deprecated + @SuppressWarnings("unused") public Plot(final PlotId id, final UUID owner, final Biome plotBiome, final ArrayList helpers, final ArrayList trusted, final ArrayList denied, final String alias, final PlotHomePosition position, final Flag[] flags, final String world, final boolean[] merged) { this.id = id; this.settings = new PlotSettings(this); @@ -137,6 +169,35 @@ public class Plot implements Cloneable { this.world = world; } + /** + * Constructor for saved plots + * + * @param id + * @param owner + * @param helpers + * @param denied + * @param merged + */ + public Plot(final PlotId id, final UUID owner, final ArrayList helpers, final ArrayList trusted, final ArrayList denied, final String alias, final PlotHomePosition position, final Flag[] flags, final String world, final boolean[] merged) { + this.id = id; + this.settings = new PlotSettings(this); + this.owner = owner; + this.deny_entry = this.owner != null; + this.trusted = trusted; + this.helpers = helpers; + this.denied = denied; + this.settings.setAlias(alias); + this.settings.setPosition(position); + this.settings.setMerged(merged); + this.delete = false; + if (flags != null) { + this.settings.setFlags(flags); + } else { + this.settings.setFlags(new Flag[0]); + } + this.world = world; + } + /** * Check if the plot has a set owner * @@ -205,7 +266,7 @@ public class Plot implements Cloneable { public Object clone() throws CloneNotSupportedException { Plot p = (Plot) super.clone(); if (!p.equals(this) || p != this) { - return new Plot(id, owner, settings.getBiome(), helpers, trusted, denied, settings.getAlias(), settings.getPosition(), settings.getFlags().toArray(new Flag[settings.getFlags().size()]), getWorld().getName(), settings.getMerged()); + return new Plot(id, owner, helpers, trusted, denied, settings.getAlias(), settings.getPosition(), settings.getFlags().toArray(new Flag[settings.getFlags().size()]), getWorld().getName(), settings.getMerged()); } return p; } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotBlock.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotBlock.java index 6e0a3904e..363065d6c 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotBlock.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotBlock.java @@ -21,6 +21,9 @@ package com.intellectualcrafters.plot.object; +/** + * @author Empire92 + */ public class PlotBlock { public short id; public byte data; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotComment.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotComment.java index 2de692e78..1472435bb 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotComment.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotComment.java @@ -21,6 +21,9 @@ package com.intellectualcrafters.plot.object; +/** + * @author Empire92 + */ public class PlotComment { public final String comment; public final int tier; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotHomePosition.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotHomePosition.java index e600aed7a..47de42939 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotHomePosition.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotHomePosition.java @@ -22,7 +22,7 @@ package com.intellectualcrafters.plot.object; /** - * Created by Citymonstret on 2014-08-05. + * @author Citymonstret */ public enum PlotHomePosition { CENTER("Center", 'c'), @@ -37,13 +37,7 @@ public enum PlotHomePosition { } public boolean isMatching(final String string) { - if ((string.length() < 2) && (string.charAt(0) == this.ch)) { - return true; - } - if (string.equalsIgnoreCase(this.string)) { - return true; - } - return false; + return (string.length() < 2) && (string.charAt(0) == this.ch) || string.equalsIgnoreCase(this.string); } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java index d0a207cd3..0c1af3d41 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotSettings.java @@ -23,6 +23,7 @@ package com.intellectualcrafters.plot.object; import com.intellectualcrafters.plot.flag.Flag; import com.intellectualcrafters.plot.util.PlotHelper; +import com.sun.istack.internal.NotNull; import org.bukkit.block.Biome; import java.util.ArrayList; @@ -36,6 +37,7 @@ import java.util.Set; * @author Citymonstret * @author Empire92 */ +@SuppressWarnings("unused") public class PlotSettings { /** * merged plots @@ -133,15 +135,19 @@ public class PlotSettings { } /** - * @param flags + * Set multiple flags + * + * @param flags Flag Array */ - public void setFlags(final Flag[] flags) { - this.flags = new HashSet(Arrays.asList(flags)); + public void setFlags(@NotNull final Flag[] flags) { + this.flags = new HashSet<>(Arrays.asList(flags)); } /** - * @param flag - * @return + * Get a flag + * + * @param flag Flag to get + * @return flag */ public Flag getFlag(final String flag) { for (final Flag myflag : this.flags) { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotWorld.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotWorld.java index 103cbf946..6bd58a650 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotWorld.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/PlotWorld.java @@ -42,7 +42,7 @@ public abstract class PlotWorld { // TODO make this configurable // make non static and static_default_valu + add config option @SuppressWarnings("deprecation") - public static ArrayList BLOCKS = new ArrayList(Arrays.asList(new Material[]{ACACIA_STAIRS, BEACON, BEDROCK, BIRCH_WOOD_STAIRS, BOOKSHELF, BREWING_STAND, BRICK, BRICK_STAIRS, BURNING_FURNACE, CAKE_BLOCK, CAULDRON, CLAY_BRICK, CLAY, COAL_BLOCK, COAL_ORE, COBBLE_WALL, COBBLESTONE, COBBLESTONE_STAIRS, COMMAND, DARK_OAK_STAIRS, DAYLIGHT_DETECTOR, DIAMOND_ORE, DIAMOND_BLOCK, DIRT, DISPENSER, DROPPER, EMERALD_BLOCK, EMERALD_ORE, ENCHANTMENT_TABLE, ENDER_PORTAL_FRAME, ENDER_STONE, FURNACE, GLOWSTONE, GOLD_ORE, GOLD_BLOCK, GRASS, GRAVEL, GLASS, HARD_CLAY, HAY_BLOCK, HUGE_MUSHROOM_1, HUGE_MUSHROOM_2, IRON_BLOCK, IRON_ORE, JACK_O_LANTERN, JUKEBOX, JUNGLE_WOOD_STAIRS, LAPIS_BLOCK, LAPIS_ORE, LEAVES, LEAVES_2, LOG, LOG_2, MELON_BLOCK, MOB_SPAWNER, MOSSY_COBBLESTONE, MYCEL, NETHER_BRICK, NETHER_BRICK_STAIRS, NETHERRACK, NOTE_BLOCK, OBSIDIAN, PACKED_ICE, PUMPKIN, QUARTZ_BLOCK, QUARTZ_ORE, QUARTZ_STAIRS, REDSTONE_BLOCK, SANDSTONE, SAND, + public static ArrayList BLOCKS = new ArrayList<>(Arrays.asList(new Material[]{ACACIA_STAIRS, BEACON, BEDROCK, BIRCH_WOOD_STAIRS, BOOKSHELF, BREWING_STAND, BRICK, BRICK_STAIRS, BURNING_FURNACE, CAKE_BLOCK, CAULDRON, CLAY_BRICK, CLAY, COAL_BLOCK, COAL_ORE, COBBLE_WALL, COBBLESTONE, COBBLESTONE_STAIRS, COMMAND, DARK_OAK_STAIRS, DAYLIGHT_DETECTOR, DIAMOND_ORE, DIAMOND_BLOCK, DIRT, DISPENSER, DROPPER, EMERALD_BLOCK, EMERALD_ORE, ENCHANTMENT_TABLE, ENDER_PORTAL_FRAME, ENDER_STONE, FURNACE, GLOWSTONE, GOLD_ORE, GOLD_BLOCK, GRASS, GRAVEL, GLASS, HARD_CLAY, HAY_BLOCK, HUGE_MUSHROOM_1, HUGE_MUSHROOM_2, IRON_BLOCK, IRON_ORE, JACK_O_LANTERN, JUKEBOX, JUNGLE_WOOD_STAIRS, LAPIS_BLOCK, LAPIS_ORE, LEAVES, LEAVES_2, LOG, LOG_2, MELON_BLOCK, MOB_SPAWNER, MOSSY_COBBLESTONE, MYCEL, NETHER_BRICK, NETHER_BRICK_STAIRS, NETHERRACK, NOTE_BLOCK, OBSIDIAN, PACKED_ICE, PUMPKIN, QUARTZ_BLOCK, QUARTZ_ORE, QUARTZ_STAIRS, REDSTONE_BLOCK, SANDSTONE, SAND, SANDSTONE_STAIRS, SMOOTH_BRICK, SMOOTH_STAIRS, SNOW_BLOCK, SOUL_SAND, SPONGE, SPRUCE_WOOD_STAIRS, STONE, WOOD, WOOD_STAIRS, WORKBENCH, WOOL, getMaterial(44), getMaterial(126)})); public static boolean AUTO_MERGE_DEFAULT = false; public static boolean MOB_SPAWNING_DEFAULT = false; @@ -52,7 +52,7 @@ public abstract class PlotWorld { public static boolean SCHEMATIC_ON_CLAIM_DEFAULT = false; public static String SCHEMATIC_FILE_DEFAULT = "null"; public static List SCHEMATICS_DEFAULT = null; - public static List DEFAULT_FLAGS_DEFAULT = new ArrayList(); + public static List DEFAULT_FLAGS_DEFAULT = new ArrayList<>(); public static boolean USE_ECONOMY_DEFAULT = false; public static double PLOT_PRICE_DEFAULT = 100; public static double MERGE_PRICE_DEFAULT = 100; @@ -89,7 +89,7 @@ public abstract class PlotWorld { /** * When a world is created, the following method will be called for each * - * @param config + * @param config Configuration Section */ public void loadDefaultConfiguration(final ConfigurationSection config) { this.MOB_SPAWNING = config.getBoolean("natural_mob_spawning"); @@ -118,10 +118,10 @@ public abstract class PlotWorld { /** * Saving core plotworld settings * - * @param config + * @param config Configuration Section */ public void saveConfiguration(final ConfigurationSection config) { - final HashMap options = new HashMap(); + final HashMap options = new HashMap<>(); options.put("natural_mob_spawning", PlotWorld.MOB_SPAWNING_DEFAULT); options.put("plot.auto_merge", PlotWorld.AUTO_MERGE_DEFAULT); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Title.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Title.java index 14011de67..f3881123f 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Title.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/Title.java @@ -43,6 +43,7 @@ public class Title { static { CORRESPONDING_TYPES = new HashMap<>(); } + /* Title packet */ private Class packetTitle; /* Title packet actions ENUM */ @@ -50,7 +51,7 @@ public class Title { /* Chat serializer */ private Class nmsChatSerializer; /* Title text and color */ - private String title = ""; + private String title; private ChatColor titleColor = ChatColor.WHITE; /* Subtitle text and color */ private String subtitle = ""; @@ -78,6 +79,7 @@ public class Title { * @param subtitle Subtitle text */ public Title(final String title, final String subtitle) { + this.title = ""; this.title = title; this.subtitle = subtitle; loadClasses(); @@ -93,6 +95,7 @@ public class Title { * @param fadeOutTime Fade out time */ public Title(final String title, final String subtitle, final int fadeInTime, final int stayTime, final int fadeOutTime) { + this.title = ""; this.title = title; this.subtitle = subtitle; this.fadeInTime = fadeInTime; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/LSetCube.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/LSetCube.java index 78f861bea..8ae392e45 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/LSetCube.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/LSetCube.java @@ -28,6 +28,7 @@ import org.bukkit.Location; * * @author Citymonstret */ +@SuppressWarnings({"javadoc", "unused"}) public class LSetCube { /** diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java index 6bdac9b9a..b663f391f 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java @@ -98,6 +98,7 @@ public class PWE { return s.getMask() == null; } + @SuppressWarnings("deprecation") public static void setNoMask(final Player p) { try { LocalSession s; @@ -110,7 +111,7 @@ public class PWE { final Vector p1 = new Vector(69, 69, 69), p2 = new Vector(69, 69, 69); s.setMask(new RegionMask(new CuboidRegion(plr.getWorld(), p1, p2))); } catch (final Exception e) { - + // } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java index 94229e43a..c12637607 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java @@ -45,10 +45,11 @@ import java.util.UUID; * * @author Citymonstret */ +@SuppressWarnings({"unused", "javadoc", "deprecation"}) public class PlotHelper { public static boolean canSetFast = false; - public static ArrayList runners_p = new ArrayList(); - public static HashMap runners = new HashMap(); + public static ArrayList runners_p = new ArrayList<>(); + public static HashMap runners = new HashMap<>(); static long state = 1; /** @@ -190,7 +191,7 @@ public class PlotHelper { final PlotManager manager = PlotMain.getPlotManager(world); final PlotWorld plotworld = PlotMain.getWorldSettings(world); - if (lesserPlot.id.x == greaterPlot.id.x) { + if (lesserPlot.id.x.equals(greaterPlot.id.x)) { if (!lesserPlot.settings.getMerged(2)) { lesserPlot.settings.setMerged(2, true); greaterPlot.settings.setMerged(0, true); @@ -208,7 +209,7 @@ public class PlotHelper { /* * Random number gen section */ - public static final long nextLong() { + public static long nextLong() { final long a = state; state = xorShift64(a); return a; @@ -218,14 +219,14 @@ public class PlotHelper { * End of random number gen section */ - public static final long xorShift64(long a) { + public static long xorShift64(long a) { a ^= (a << 21); a ^= (a >>> 35); a ^= (a << 4); return a; } - public static final int random(final int n) { + public static int random(final int n) { if (n == 1) { return 0; } @@ -352,7 +353,6 @@ public class PlotHelper { count++; final PlotId bot = PlayerFunctions.getBottomPlot(world, plot).id; final PlotId top = PlayerFunctions.getTopPlot(world, plot).id; - merge = false; plots = PlayerFunctions.getPlotSelectionIds(world, new PlotId(bot.x, bot.y - 1), new PlotId(top.x, top.y)); if (ownsPlots(world, plots, player, 0)) { final boolean result = mergePlots(world, plots); @@ -765,6 +765,7 @@ public class PlotHelper { } } } catch (final Exception e) { + // } } } @@ -794,7 +795,7 @@ public class PlotHelper { } } } catch (final Exception e) { - + // } } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/ReflectionUtils.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/ReflectionUtils.java index 600fc1425..96b365722 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/ReflectionUtils.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/ReflectionUtils.java @@ -28,6 +28,7 @@ import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.ArrayList; +import java.util.Arrays; import java.util.Collections; import java.util.List; @@ -232,8 +233,8 @@ public class ReflectionUtils { if (methodTypes.length != classes.length) { continue; } - for (int i = 0; i < classes.length; i++) { - if (!classes.equals(methodTypes)) { + for (Class aClass : classes) { + if (!Arrays.equals(classes, methodTypes)) { continue findMethod; } return new RefMethod(m); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/NameFetcher.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/NameFetcher.java index 71ad971d9..5adc83cb8 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/NameFetcher.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/NameFetcher.java @@ -35,7 +35,8 @@ import java.util.UUID; import java.util.concurrent.Callable; /** - * @author + * Name Fetcher Class + * From Bukkit */ public class NameFetcher implements Callable> { private static final String PROFILE_URL = "https://sessionserver.mojang.com/session/minecraft/profile/"; @@ -48,7 +49,7 @@ public class NameFetcher implements Callable> { @Override public Map call() throws Exception { - final Map uuidStringMap = new HashMap(); + final Map uuidStringMap = new HashMap<>(); for (final UUID uuid : this.uuids) { if (uuidStringMap.containsKey(uuid)) { continue; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java index 826a2a52d..97ca78944 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java @@ -37,9 +37,9 @@ import java.net.URLConnection; import java.util.UUID; /** - * Created by Citymonstret on 2014-10-13. + * Plot UUID Saver/Fetcher */ -public class PlotUUIDSaver extends UUIDSaver { +public class PlotUUIDSaver implements UUIDSaver { @Override public void globalPopulate() { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDFetcher.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDFetcher.java index 1921df1df..e7e36550f 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDFetcher.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDFetcher.java @@ -35,7 +35,8 @@ import java.util.*; import java.util.concurrent.Callable; /** - * @author + * UUID Fetcher + * From Bukkit */ public class UUIDFetcher implements Callable> { private static final double PROFILES_PER_REQUEST = 100; @@ -53,29 +54,6 @@ public class UUIDFetcher implements Callable> { this(names, true); } - @Override - public Map call() throws Exception { - final Map uuidMap = new HashMap(); - final int requests = (int) Math.ceil(this.names.size() / PROFILES_PER_REQUEST); - for (int i = 0; i < requests; i++) { - final HttpURLConnection connection = createConnection(); - final String body = JSONArray.toJSONString(this.names.subList(i * 100, Math.min((i + 1) * 100, this.names.size()))); - writeBody(connection, body); - final JSONArray array = (JSONArray) this.jsonParser.parse(new InputStreamReader(connection.getInputStream())); - for (final Object profile : array) { - final JSONObject jsonProfile = (JSONObject) profile; - final String id = (String) jsonProfile.get("id"); - final String name = (String) jsonProfile.get("name"); - final UUID uuid = UUIDFetcher.getUUID(id); - uuidMap.put(name, uuid); - } - if (this.rateLimiting && (i != (requests - 1))) { - Thread.sleep(100L); - } - } - return uuidMap; - } - private static void writeBody(final HttpURLConnection connection, final String body) throws Exception { final OutputStream stream = connection.getOutputStream(); stream.write(body.getBytes()); @@ -98,6 +76,7 @@ public class UUIDFetcher implements Callable> { return UUID.fromString(id.substring(0, 8) + "-" + id.substring(8, 12) + "-" + id.substring(12, 16) + "-" + id.substring(16, 20) + "-" + id.substring(20, 32)); } + @SuppressWarnings("unused") public static byte[] toBytes(final UUID uuid) { final ByteBuffer byteBuffer = ByteBuffer.wrap(new byte[16]); byteBuffer.putLong(uuid.getMostSignificantBits()); @@ -105,6 +84,7 @@ public class UUIDFetcher implements Callable> { return byteBuffer.array(); } + @SuppressWarnings("unused") public static UUID fromBytes(final byte[] array) { if (array.length != 16) { throw new IllegalArgumentException("Illegal byte array length: " + array.length); @@ -115,7 +95,31 @@ public class UUIDFetcher implements Callable> { return new UUID(mostSignificant, leastSignificant); } + @SuppressWarnings("unused") public static UUID getUUIDOf(final String name) throws Exception { return new UUIDFetcher(Arrays.asList(name)).call().get(name); } + + @Override + public Map call() throws Exception { + final Map uuidMap = new HashMap<>(); + final int requests = (int) Math.ceil(this.names.size() / PROFILES_PER_REQUEST); + for (int i = 0; i < requests; i++) { + final HttpURLConnection connection = createConnection(); + final String body = JSONArray.toJSONString(this.names.subList(i * 100, Math.min((i + 1) * 100, this.names.size()))); + writeBody(connection, body); + final JSONArray array = (JSONArray) this.jsonParser.parse(new InputStreamReader(connection.getInputStream())); + for (final Object profile : array) { + final JSONObject jsonProfile = (JSONObject) profile; + final String id = (String) jsonProfile.get("id"); + final String name = (String) jsonProfile.get("name"); + final UUID uuid = UUIDFetcher.getUUID(id); + uuidMap.put(name, uuid); + } + if (this.rateLimiting && (i != (requests - 1))) { + Thread.sleep(100L); + } + } + return uuidMap; + } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java index 5acfe91d6..f84b8c64a 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java @@ -27,20 +27,20 @@ import com.intellectualcrafters.plot.object.StringWrapper; import java.util.UUID; /** - * Created by Citymonstret on 2014-10-13. + * @author Citymonstret */ -public abstract class UUIDSaver { - public abstract void globalPopulate(); +public interface UUIDSaver { + public void globalPopulate(); - public abstract void globalSave(final BiMap biMap); + public void globalSave(final BiMap biMap); - public abstract void save(final UUIDSet set); + public void save(final UUIDSet set); - public abstract UUIDSet get(final String name); + public UUIDSet get(final String name); - public abstract UUIDSet get(final UUID uuid); + public UUIDSet get(final UUID uuid); - public abstract UUID mojangUUID(final String name) throws Exception; + public UUID mojangUUID(final String name) throws Exception; - public abstract String mojangName(final UUID uuid) throws Exception; + public String mojangName(final UUID uuid) throws Exception; } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java index 5dec9bcd8..82e1554c2 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java @@ -24,7 +24,7 @@ package com.intellectualcrafters.plot.uuid; import java.util.UUID; /** - * Created by Citymonstret on 2014-10-13. + * @author Citymonstret */ public class UUIDSet { private final String name; From a4f55dc3f62653924cae0ac0219c166b2b595887 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Wed, 19 Nov 2014 18:05:09 +0100 Subject: [PATCH 3/8] Minor fixes JavaDoc Fixes Useful additions --- .../plot/commands/Auto.java | 4 +- .../plot/commands/Claim.java | 10 +-- .../plot/commands/DebugClaimTest.java | 2 +- .../plot/events/PlayerClaimPlotEvent.java | 19 ++++-- .../plot/events/PlayerEnterPlotEvent.java | 7 +- .../plot/events/PlayerLeavePlotEvent.java | 7 +- .../plot/events/PlayerPlotDeniedEvent.java | 11 ++-- .../plot/events/PlayerPlotHelperEvent.java | 11 ++-- .../plot/events/PlayerPlotTrustedEvent.java | 11 ++-- .../events/PlayerTeleportToPlotEvent.java | 9 ++- .../plot/events/PlotClearEvent.java | 7 +- .../plot/events/PlotDeleteEvent.java | 7 +- .../plot/events/PlotFlagAddEvent.java | 7 +- .../plot/events/PlotFlagRemoveEvent.java | 7 +- .../plot/events/PlotMergeEvent.java | 7 +- .../plot/events/PlotUnlinkEvent.java | 6 +- .../plot/flag/AbstractFlag.java | 8 ++- .../plot/generator/XPopulator.java | 12 ++-- .../plot/listeners/InventoryListener.java | 1 + .../plot/object/BlockWrapper.java | 66 ++++++++++++++++--- 20 files changed, 153 insertions(+), 66 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Auto.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Auto.java index 4e0ee4ee9..aada4e34c 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Auto.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Auto.java @@ -153,7 +153,7 @@ public class Auto extends SubCommand { Plot plot = PlotHelper.getPlot(world, Auto.lastPlot); if ((plot == null) || (plot.owner == null)) { plot = PlotHelper.getPlot(world, Auto.lastPlot); - Claim.claimPlot(plr, plot, true); + Claim.claimPlot(plr, plot, true, true); br = true; final PlotWorld pw = PlotMain.getWorldSettings(world); final Plot plot2 = PlotMain.getPlots(world).get(plot.id); @@ -187,7 +187,7 @@ public class Auto extends SubCommand { for (int j = start.y; j <= end.y; j++) { final Plot plot = PlotHelper.getPlot(world, new PlotId(i, j)); final boolean teleport = ((i == end.x) && (j == end.y)); - Claim.claimPlot(plr, plot, teleport); + Claim.claimPlot(plr, plot, teleport, true); } } if (!PlotHelper.mergePlots(plr, world, PlayerFunctions.getPlotSelectionIds(world, start, end))) { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Claim.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Claim.java index dd9481924..eb5d40038 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Claim.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Claim.java @@ -47,12 +47,12 @@ public class Claim extends SubCommand { super(Command.CLAIM, "Claim the current plot you're standing on.", "claim", CommandCategory.CLAIMING, true); } - public static boolean claimPlot(final Player player, final Plot plot, final boolean teleport) { - return claimPlot(player, plot, teleport, ""); + public static boolean claimPlot(final Player player, final Plot plot, final boolean teleport, boolean auto) { + return claimPlot(player, plot, teleport, "", auto); } - public static boolean claimPlot(final Player player, final Plot plot, final boolean teleport, final String schematic) { - final PlayerClaimPlotEvent event = new PlayerClaimPlotEvent(player, plot); + public static boolean claimPlot(final Player player, final Plot plot, final boolean teleport, final String schematic, boolean auto) { + final PlayerClaimPlotEvent event = new PlayerClaimPlotEvent(player, plot, auto); Bukkit.getPluginManager().callEvent(event); if (!event.isCancelled()) { PlotHelper.createPlot(player, plot); @@ -134,6 +134,6 @@ public class Claim extends SubCommand { } } - return !claimPlot(plr, plot, false, schematic) || sendMessage(plr, C.PLOT_NOT_CLAIMED); + return !claimPlot(plr, plot, false, schematic, false) || sendMessage(plr, C.PLOT_NOT_CLAIMED); } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/DebugClaimTest.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/DebugClaimTest.java index da5351b05..465b6aa6f 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/DebugClaimTest.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/DebugClaimTest.java @@ -57,7 +57,7 @@ public class DebugClaimTest extends SubCommand { } public static boolean claimPlot(final Player player, final Plot plot, final boolean teleport, @SuppressWarnings("unused") final String schematic) { - final PlayerClaimPlotEvent event = new PlayerClaimPlotEvent(player, plot); + final PlayerClaimPlotEvent event = new PlayerClaimPlotEvent(player, plot, true); Bukkit.getPluginManager().callEvent(event); if (!event.isCancelled()) { PlotHelper.createPlot(player, plot); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.java index 8cca73343..a11660b37 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.java @@ -28,22 +28,26 @@ import org.bukkit.event.HandlerList; import org.bukkit.event.player.PlayerEvent; /** - * Created by Citymonstret on 2014-08-09. + * @author Citymonstret + * @author Empire92 */ +@SuppressWarnings("unused") public class PlayerClaimPlotEvent extends PlayerEvent implements Cancellable { private static HandlerList handlers = new HandlerList(); private final Plot plot; + private final boolean auto; private boolean cancelled; /** * PlayerClaimPlotEvent: Called when a plot is claimed * - * @param player - * @param plot + * @param player Player that claimed the plot + * @param plot Plot that was claimed */ - public PlayerClaimPlotEvent(final Player player, final Plot plot) { + public PlayerClaimPlotEvent(final Player player, final Plot plot, boolean auto) { super(player); this.plot = plot; + this.auto = auto; } public static HandlerList getHandlerList() { @@ -59,6 +63,13 @@ public class PlayerClaimPlotEvent extends PlayerEvent implements Cancellable { return this.plot; } + /** + * @return true if it was an automated claim, else false + */ + public boolean wasAuto() { + return this.auto; + } + @Override public HandlerList getHandlers() { return handlers; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.java index 6b7256976..25698112b 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.java @@ -27,7 +27,8 @@ import org.bukkit.event.HandlerList; import org.bukkit.event.player.PlayerEvent; /** - * Created by Citymonstret on 2014-08-16. + * @author Citymonstret + * @author Empire92 */ public class PlayerEnterPlotEvent extends PlayerEvent { @@ -38,8 +39,8 @@ public class PlayerEnterPlotEvent extends PlayerEvent { /** * PlayerEnterPlotEvent: Called when a player leaves a plot * - * @param player - * @param plot + * @param player Player that entered the plot + * @param plot Plot that was entered */ public PlayerEnterPlotEvent(final Player player, final Plot plot) { super(player); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.java index 3193f98d7..0414b0dda 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.java @@ -27,7 +27,8 @@ import org.bukkit.event.HandlerList; import org.bukkit.event.player.PlayerEvent; /** - * Created by Citymonstret on 2014-08-16. + * @author Citymonstret + * @author Empire92 */ public class PlayerLeavePlotEvent extends PlayerEvent { private static HandlerList handlers = new HandlerList(); @@ -37,8 +38,8 @@ public class PlayerLeavePlotEvent extends PlayerEvent { /** * PlayerLeavePlotEvent: Called when a player leaves a plot * - * @param player - * @param plot + * @param player Player that left the plot + * @param plot Plot that was left */ public PlayerLeavePlotEvent(final Player player, final Plot plot) { super(player); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.java index b1f4598ee..7f1229c54 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.java @@ -29,7 +29,8 @@ import org.bukkit.event.HandlerList; import java.util.UUID; /** - * Created by Citymonstret on 2014-08-16. + * @author Citymonstret + * @author Empire92 */ public class PlayerPlotDeniedEvent extends Event { private static HandlerList handlers = new HandlerList(); @@ -43,10 +44,10 @@ public class PlayerPlotDeniedEvent extends Event { * PlayerPlotDeniedEvent: Called when the denied UUID list is modified for a * plot * - * @param initiator - * @param plot - * @param player - * @param added + * @param initiator Player that initiated the event + * @param plot Plot in which the event occurred + * @param player Player that was denied/un-denied + * @param added true of add to deny list, false if removed */ public PlayerPlotDeniedEvent(final Player initiator, final Plot plot, final UUID player, final boolean added) { this.initiator = initiator; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.java index 483fa0dba..ea6412512 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.java @@ -29,7 +29,8 @@ import org.bukkit.event.HandlerList; import java.util.UUID; /** - * Created by Citymonstret on 2014-08-16. + * @author Empire92 + * @author Citymonstret */ public class PlayerPlotHelperEvent extends Event { private static HandlerList handlers = new HandlerList(); @@ -42,10 +43,10 @@ public class PlayerPlotHelperEvent extends Event { /** * PlayerPlotHelperEvent: Called when a plot helper is added/removed * - * @param initiator - * @param plot - * @param player - * @param added + * @param initiator Player that initiated the event + * @param plot Plot in which the event occurred + * @param player Player that was added/removed from the helper list + * @param added true of the player was added, false if the player was removed */ public PlayerPlotHelperEvent(final Player initiator, final Plot plot, final UUID player, final boolean added) { this.initiator = initiator; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.java index 74040ab50..eb608505c 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.java @@ -29,7 +29,8 @@ import org.bukkit.event.HandlerList; import java.util.UUID; /** - * Created by Citymonstret on 2014-08-16. + * @author Citymonstret + * @author Empire92 */ public class PlayerPlotTrustedEvent extends Event { private static HandlerList handlers = new HandlerList(); @@ -42,10 +43,10 @@ public class PlayerPlotTrustedEvent extends Event { /** * PlayerPlotTrustedEvent: Called when a plot trusted user is added/removed * - * @param initiator - * @param plot - * @param player - * @param added + * @param initiator Player that initiated the event + * @param plot Plot in which the event occurred + * @param player Player that was added/removed from the trusted list + * @param added true of the player was added, false if the player was removed */ public PlayerPlotTrustedEvent(final Player initiator, final Plot plot, final UUID player, final boolean added) { this.initiator = initiator; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.java index 14926ad5e..4dab9fd13 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.java @@ -30,6 +30,9 @@ import org.bukkit.event.player.PlayerEvent; /** * Called when a player teleports to a plot + * + * @author Citymonstret + * @author Empire92 */ public class PlayerTeleportToPlotEvent extends PlayerEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); @@ -42,9 +45,9 @@ public class PlayerTeleportToPlotEvent extends PlayerEvent implements Cancellabl /** * PlayerTeleportToPlotEvent: Called when a player teleports to a plot * - * @param player - * @param from - * @param plot + * @param player That was teleported + * @param from Start location + * @param plot Plot to which the player was teleported */ public PlayerTeleportToPlotEvent(final Player player, final Location from, final Plot plot) { super(player); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotClearEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotClearEvent.java index bf22e72a8..bf5886614 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotClearEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotClearEvent.java @@ -28,6 +28,9 @@ import org.bukkit.event.HandlerList; /** * Called when a plot is cleared + * + * @author Citymonstret + * @author Empire92 */ public class PlotClearEvent extends Event implements Cancellable { private static HandlerList handlers = new HandlerList(); @@ -38,8 +41,8 @@ public class PlotClearEvent extends Event implements Cancellable { /** * PlotDeleteEvent: Called when a plot is cleared * - * @param world - * @param id + * @param world The world in which the plot was cleared + * @param id The plot that was cleared */ public PlotClearEvent(final String world, final PlotId id) { this.id = id; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotDeleteEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotDeleteEvent.java index 5358c3469..269dc6ab8 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotDeleteEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotDeleteEvent.java @@ -28,6 +28,9 @@ import org.bukkit.event.HandlerList; /** * Called when a plot is deleted + * + * @author Citymonstret + * @author Empire92 */ public class PlotDeleteEvent extends Event implements Cancellable { private static HandlerList handlers = new HandlerList(); @@ -38,8 +41,8 @@ public class PlotDeleteEvent extends Event implements Cancellable { /** * PlotDeleteEvent: Called when a plot is deleted * - * @param world - * @param id + * @param world The world in which the plot was deleted + * @param id The ID of the plot that was deleted */ public PlotDeleteEvent(final String world, final PlotId id) { this.id = id; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagAddEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagAddEvent.java index 82b63527f..89505350a 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagAddEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagAddEvent.java @@ -29,6 +29,9 @@ import org.bukkit.event.HandlerList; /** * Called when a Flag is added to a plot + * + * @author Citymonstret + * @author Empire92 */ public class PlotFlagAddEvent extends Event implements Cancellable { private static HandlerList handlers = new HandlerList(); @@ -39,8 +42,8 @@ public class PlotFlagAddEvent extends Event implements Cancellable { /** * PlotFlagAddEvent: Called when a Flag is added to a plot * - * @param flag - * @param plot + * @param flag Flag that was added + * @param plot Plot to which the flag was added */ public PlotFlagAddEvent(final Flag flag, final Plot plot) { this.plot = plot; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.java index 84923d1fa..23e99bef4 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.java @@ -29,6 +29,9 @@ import org.bukkit.event.HandlerList; /** * Called when a flag is removed from a plot + * + * @author Citymonstret + * @author Empire92 */ public class PlotFlagRemoveEvent extends Event implements Cancellable { private static HandlerList handlers = new HandlerList(); @@ -39,8 +42,8 @@ public class PlotFlagRemoveEvent extends Event implements Cancellable { /** * PlotFlagRemoveEvent: Called when a flag is removed from a plot * - * @param flag - * @param plot + * @param flag Flag that was removed + * @param plot Plot from which the flag was removed */ public PlotFlagRemoveEvent(final Flag flag, final Plot plot) { this.plot = plot; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotMergeEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotMergeEvent.java index 155557c75..4ae4fce83 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotMergeEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotMergeEvent.java @@ -31,7 +31,7 @@ import org.bukkit.event.HandlerList; import java.util.ArrayList; /** - * Created by Citymonstret on 2014-08-09. + * @author Empire92 */ public class PlotMergeEvent extends Event implements Cancellable { private static HandlerList handlers = new HandlerList(); @@ -43,8 +43,9 @@ public class PlotMergeEvent extends Event implements Cancellable { /** * PlotMergeEvent: Called when plots are merged * - * @param player - * @param plot + * @param world World in which the event occurred + * @param plot Plot that was merged + * @param plots A list of plots involved in the event */ public PlotMergeEvent(final World world, final Plot plot, final ArrayList plots) { this.plots = plots; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotUnlinkEvent.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotUnlinkEvent.java index 40d70b3a1..6727ab007 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotUnlinkEvent.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/events/PlotUnlinkEvent.java @@ -30,7 +30,7 @@ import org.bukkit.event.HandlerList; import java.util.ArrayList; /** - * Created by Citymonstret on 2014-08-09. + * @author Empire92 */ public class PlotUnlinkEvent extends Event implements Cancellable { private static HandlerList handlers = new HandlerList(); @@ -41,8 +41,8 @@ public class PlotUnlinkEvent extends Event implements Cancellable { /** * Called when a mega-plot is unlinked. * - * @param world - * @param plots + * @param world World in which the event occurred + * @param plots Plots that are involved in the event */ public PlotUnlinkEvent(final World world, final ArrayList plots) { this.plots = plots; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/flag/AbstractFlag.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/flag/AbstractFlag.java index fea1d482e..878c9a5d1 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/flag/AbstractFlag.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/flag/AbstractFlag.java @@ -52,11 +52,15 @@ public class AbstractFlag { throw new IllegalArgumentException("Key must be <= 16 characters"); } this.key = key.toLowerCase(); - this.value = new FlagValue.StringValue(); + if (value == null) { + this.value = new FlagValue.StringValue(); + } else { + this.value = value; + } } public String parseValue(final String value) { - return this.value.parse(value).toString(); + return this.value.parse(value); } public String getValueDesc() { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/XPopulator.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/XPopulator.java index d4fa33c1a..95c0179b7 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/XPopulator.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/generator/XPopulator.java @@ -33,6 +33,7 @@ import java.util.Random; /** * @author Citymonstret */ +@SuppressWarnings("unused") public class XPopulator extends BlockPopulator { /* @@ -237,7 +238,6 @@ public class XPopulator extends BlockPopulator { setCuboidRegion(16 - value, (16 - value) + 1, this.roadheight, this.roadheight + 1, start, 16, this.floor2, w); // } if ((roadStartZ <= 16) && (roadStartZ > 1)) { - final int val = roadStartZ; int start, end; if ((plotMinX + 2) <= 16) { start = 16 - plotMinX - 1; @@ -252,11 +252,10 @@ public class XPopulator extends BlockPopulator { if (!(((plotMinX + 2) <= 16) || ((roadStartX - 1) <= 16))) { start = 0; } - setCuboidRegion(0, end, this.roadheight, this.roadheight + 1, (16 - val) + 1, (16 - val) + 2, this.floor2, w); - setCuboidRegion(start, 16, this.roadheight, this.roadheight + 1, (16 - val) + 1, (16 - val) + 2, this.floor2, w); + setCuboidRegion(0, end, this.roadheight, this.roadheight + 1, (16 - roadStartZ) + 1, (16 - roadStartZ) + 2, this.floor2, w); + setCuboidRegion(start, 16, this.roadheight, this.roadheight + 1, (16 - roadStartZ) + 1, (16 - roadStartZ) + 2, this.floor2, w); } if ((roadStartX <= 16) && (roadStartX > 1)) { - final int val = roadStartX; int start, end; if ((plotMinZ + 2) <= 16) { start = 16 - plotMinZ - 1; @@ -271,8 +270,8 @@ public class XPopulator extends BlockPopulator { if (!(((plotMinZ + 2) <= 16) || ((roadStartZ - 1) <= 16))) { start = 0; } - setCuboidRegion((16 - val) + 1, (16 - val) + 2, this.roadheight, this.roadheight + 1, 0, end, this.floor2, w); // - setCuboidRegion((16 - val) + 1, (16 - val) + 2, this.roadheight, this.roadheight + 1, start, 16, this.floor2, w); // + setCuboidRegion((16 - roadStartX) + 1, (16 - roadStartX) + 2, this.roadheight, this.roadheight + 1, 0, end, this.floor2, w); // + setCuboidRegion((16 - roadStartX) + 1, (16 - roadStartX) + 2, this.roadheight, this.roadheight + 1, start, 16, this.floor2, w); // } } // WALLS @@ -460,6 +459,7 @@ public class XPopulator extends BlockPopulator { } } + @SuppressWarnings("deprecation") private void setBlock(final World w, final int x, final int y, final int z, final short id, final byte val) { w.getBlockAt(this.X + x, y, this.Z + z).setData(val, false); } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/InventoryListener.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/InventoryListener.java index 5eff5912d..831622c19 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/InventoryListener.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/InventoryListener.java @@ -15,6 +15,7 @@ import org.bukkit.inventory.Inventory; * * @author Citymonstret */ +@SuppressWarnings("unused") public class InventoryListener implements Listener { @EventHandler diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/BlockWrapper.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/BlockWrapper.java index 4b44bbc84..1e0055842 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/BlockWrapper.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/object/BlockWrapper.java @@ -21,6 +21,10 @@ package com.intellectualcrafters.plot.object; +import com.sun.istack.internal.NotNull; +import org.bukkit.World; +import org.bukkit.block.Block; + /** * Wrapper class for blocks, using * pure data rather than the object. @@ -28,16 +32,34 @@ package com.intellectualcrafters.plot.object; * Useful for NMS * * @author Empire92 + * @author Citymonstret */ public class BlockWrapper { - // Public Final ////////////////////////// - public final int x; // - public final int y; // - public final int z; // - public final int id; // - public final byte data; // - ////////////////////////////////////////// + /** + * X Coordinate + */ + public final int x; + + /** + * Y Coordinate + */ + public final int y; + + /** + * Z Coordinate + */ + public final int z; + + /** + * Block ID + */ + public final int id; + + /** + * Block Data Value + */ + public final byte data; /** * Constructor @@ -48,11 +70,39 @@ public class BlockWrapper { * @param id Material ID * @param data Data Value */ - public BlockWrapper(int x, int y, int z, short id, byte data) { + public BlockWrapper(final int x, final int y, final int z, final short id, final byte data) { this.x = x; this.y = y; this.z = z; this.id = id; this.data = data; } + + /** + * Alternative Constructor + * Uses block data, rather than typed data + * + * @param block Block from which we get the data + */ + @SuppressWarnings({"deprecation", "unused"}) + public BlockWrapper(@NotNull final Block block) { + this.x = block.getX(); + this.y = block.getY(); + this.z = block.getZ(); + this.id = block.getTypeId(); + this.data = block.getData(); + } + + /** + * Get a block based on the block wrapper + * + * @param world World in which the block is/will be, located + * @return block created/fetched from settings + */ + @SuppressWarnings({"unused", "deprecation"}) + public Block toBlock(@NotNull final World world) { + Block block = world.getBlockAt(x, y, z); + block.setTypeIdAndData(id, data, true); + return block; + } } From 3499cf1341bba48eb0f00d92e649e483e3648502 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Wed, 19 Nov 2014 18:18:18 +0100 Subject: [PATCH 4/8] Some database fixes --- .../plot/database/AbstractDB.java | 191 ++++++++++++------ .../plot/database/DBFunc.java | 15 +- .../plot/database/SQLManager.java | 3 +- 3 files changed, 133 insertions(+), 76 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/AbstractDB.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/AbstractDB.java index ae4302908..3c7c4308b 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/AbstractDB.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/AbstractDB.java @@ -35,136 +35,207 @@ import java.util.UUID; /** * @author Citymonstret + * @author Empire92 */ -public abstract class AbstractDB { +public interface AbstractDB { // TODO MongoDB @Brandon /** - * + * The UUID that will count as everyone */ public UUID everyone = UUID.fromString("1-1-3-3-7"); /** * Set Plot owner * - * @param plot - * @param uuid + * @param plot Plot in which the owner should be set + * @param uuid The uuid of the new owner */ - public abstract void setOwner(final Plot plot, final UUID uuid); + public void setOwner(final Plot plot, final UUID uuid); - public abstract void createAllSettingsAndHelpers(final ArrayList plots); + /** + * Create all settings, and create default helpers, trusted + denied lists + * + * @param plots Plots for which the default table entries should be created + */ + public void createAllSettingsAndHelpers(final ArrayList plots); /** * Create a plot * - * @param plots + * @param plots Plots that should be created */ - public abstract void createPlots(final ArrayList plots); + public void createPlots(final ArrayList plots); /** * Create a plot * - * @param plot + * @param plot That should be created */ - public abstract void createPlot(final Plot plot); + public void createPlot(final Plot plot); /** * Create tables * - * @throws SQLException + * @param database Database in which the tables will be created + * + * @throws SQLException If the database manager is unable to create the tables */ - public abstract void createTables(final String database, final boolean add_constraint) throws Exception; + public void createTables(final String database, final boolean add_constraint) throws Exception; /** * Delete a plot * - * @param plot + * @param plot Plot that should be deleted */ - public abstract void delete(final String world, final Plot plot); + public void delete(final String world, final Plot plot); /** * Create plot settings * - * @param id - * @param plot + * @param id Plot Entry ID + * @param plot Plot Object */ - public abstract void createPlotSettings(final int id, final Plot plot); - - public abstract int getId(final String world, final PlotId id2); + public void createPlotSettings(final int id, final Plot plot); /** - * @return + * Get the table entry ID + * + * @param world Which the plot is located in + * @param id2 Plot ID + * @return Integer = Plot Entry Id */ - public abstract LinkedHashMap> getPlots(); - - public abstract void setMerged(final String world, final Plot plot, final boolean[] merged); - - public abstract void setFlags(final String world, final Plot plot, final Flag[] flags); + public int getId(final String world, final PlotId id2); /** - * @param plot - * @param alias + * @return A linked hashmap containing all plots */ - public abstract void setAlias(final String world, final Plot plot, final String alias); - - public abstract void purge(final String world, final PlotId id); - - public abstract void purge(final String world); + public LinkedHashMap> getPlots(); /** - * @param plot - * @param position + * Set the merged status for a plot + * + * @param world World in which the plot is located + * @param plot Plot Object + * @param merged boolean[] */ - public abstract void setPosition(final String world, final Plot plot, final String position); + public void setMerged(final String world, final Plot plot, final boolean[] merged); /** - * @param id - * @return + * Set plot flags + * + * @param world World in which the plot is located + * @param plot Plot Object + * @param flags flags to set (flag[]) */ - public abstract HashMap getSettings(final int id); + public void setFlags(final String world, final Plot plot, final Flag[] flags); /** - * @param plot - * @param player + * Set the plot alias + * + * @param plot Plot for which the alias should be set + * @param alias Plot Alias */ - public abstract void removeHelper(final String world, final Plot plot, final OfflinePlayer player); + public void setAlias(final String world, final Plot plot, final String alias); /** - * @param plot - * @param player + * Purgle a plot + * + * @param world World in which the plot is located + * @param id Plot ID */ - public abstract void removeTrusted(final String world, final Plot plot, final OfflinePlayer player); + public void purge(final String world, final PlotId id); /** - * @param plot - * @param player + * Purge a whole world + * + * @param world World in which the plots should be purged */ - public abstract void setHelper(final String world, final Plot plot, final OfflinePlayer player); + public void purge(final String world); /** - * @param plot - * @param player + * Set Plot Home Position + * @param plot Plot Object + * @param position Plot Home Position */ - public abstract void setTrusted(final String world, final Plot plot, final OfflinePlayer player); + public void setPosition(final String world, final Plot plot, final String position); /** - * @param plot - * @param player + * @param id Plot Entry ID + * @return Plot Settings */ - public abstract void removeDenied(final String world, final Plot plot, final OfflinePlayer player); + public HashMap getSettings(final int id); /** - * @param plot - * @param player + * @param plot Plot Object + * @param player Player that should be removed */ - public abstract void setDenied(final String world, final Plot plot, final OfflinePlayer player); + public void removeHelper(final String world, final Plot plot, final OfflinePlayer player); - public abstract double getRatings(final Plot plot); + /** + * @param plot Plot Object + * @param player Player that should be removed + */ + public void removeTrusted(final String world, final Plot plot, final OfflinePlayer player); - public abstract void removeComment(final String world, final Plot plot, final PlotComment comment); + /** + * @param plot Plot Object + * @param player Player that should be removed + */ + public void setHelper(final String world, final Plot plot, final OfflinePlayer player); - public abstract void setComment(final String world, final Plot plot, final PlotComment comment); + /** + * @param plot Plot Object + * @param player Player that should be added + */ + public void setTrusted(final String world, final Plot plot, final OfflinePlayer player); - public abstract ArrayList getComments(final String world, final Plot plot, final int tier); + /** + * @param plot Plot Object + * @param player Player that should be added + */ + public void removeDenied(final String world, final Plot plot, final OfflinePlayer player); + + /** + * @param plot Plot Object + * @param player Player that should be added + */ + public void setDenied(final String world, final Plot plot, final OfflinePlayer player); + + /** + * Get Plots ratings + * + * @param plot Plot Object + * @return Plot Ratings (pre-calculated) + */ + public double getRatings(final Plot plot); + + /** + * Remove a plot comment + * + * @param world World in which the plot is located + * @param plot Plot Object + * @param comment Comment to remove + */ + public void removeComment(final String world, final Plot plot, final PlotComment comment); + + /** + * Set a plot comment + * + * @param world World in which the plot is located + * @param plot Plot Object + * @param comment Comment to add + */ + public void setComment(final String world, final Plot plot, final PlotComment comment); + + /** + * Get Plot Comments + * + * @param world World in which the plot is located + * @param plot Plot Object + * @param tier Comment Tier + * @return Plot Comments within the specified tier + */ + public ArrayList getComments(final String world, final Plot plot, final int tier); } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/DBFunc.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/DBFunc.java index 16df06c77..fff72a0cb 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/DBFunc.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/DBFunc.java @@ -40,17 +40,9 @@ public class DBFunc { public static AbstractDB dbManager; // TODO MongoDB @Brandon - /** - * - */ + public static UUID everyone = UUID.fromString("1-1-3-3-7"); - /** - * Set Plot owner - * - * @param plot - * @param uuid - */ public static void setOwner(final Plot plot, final UUID uuid) { dbManager.setOwner(plot, uuid); } @@ -59,11 +51,6 @@ public class DBFunc { dbManager.createAllSettingsAndHelpers(plots); } - /** - * Create a plot - * - * @param plots - */ public static void createPlots(final ArrayList plots) { dbManager.createPlots(plots); } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java index 57bca029e..fecce6f33 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java @@ -41,7 +41,7 @@ import java.util.*; /** * @author Citymonstret */ -public class SQLManager extends AbstractDB { +public class SQLManager implements AbstractDB { // Public final public final String SET_OWNER; @@ -452,7 +452,6 @@ public class SQLManager extends AbstractDB { plots.put(id, p); } // stmt.close(); - /* * Getting helpers */ From ea7e771caeacd54a6526816fc2f6c3be88ab2529 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Wed, 19 Nov 2014 18:48:17 +0100 Subject: [PATCH 5/8] Updated documentation --- PlotSquared/doc/Test1.html | 518 +++ PlotSquared/doc/allclasses-frame.html | 411 +++ PlotSquared/doc/allclasses-noframe.html | 395 +++ .../jnbt/ByteArrayTag.html | 353 ++ .../intellectualcrafters/jnbt/ByteTag.html | 355 ++ .../jnbt/CompoundTag.html | 915 ++++++ .../jnbt/CompoundTagBuilder.html | 664 ++++ .../intellectualcrafters/jnbt/DoubleTag.html | 355 ++ .../com/intellectualcrafters/jnbt/EndTag.html | 327 ++ .../intellectualcrafters/jnbt/FloatTag.html | 355 ++ .../jnbt/IntArrayTag.html | 355 ++ .../com/intellectualcrafters/jnbt/IntTag.html | 355 ++ .../intellectualcrafters/jnbt/ListTag.html | 927 ++++++ .../jnbt/ListTagBuilder.html | 395 +++ .../intellectualcrafters/jnbt/LongTag.html | 355 ++ .../jnbt/NBTConstants.html | 547 ++++ .../jnbt/NBTInputStream.html | 340 ++ .../jnbt/NBTOutputStream.html | 347 ++ .../intellectualcrafters/jnbt/NBTUtils.html | 348 ++ .../intellectualcrafters/jnbt/ShortTag.html | 355 ++ .../intellectualcrafters/jnbt/StringTag.html | 355 ++ .../com/intellectualcrafters/jnbt/Tag.html | 288 ++ .../jnbt/WorldEditUtils.html | 284 ++ .../jnbt/package-frame.html | 51 + .../jnbt/package-summary.html | 274 ++ .../jnbt/package-tree.html | 207 ++ .../com/intellectualcrafters/json/CDL.html | 640 ++++ .../com/intellectualcrafters/json/Cookie.html | 413 +++ .../intellectualcrafters/json/CookieList.html | 340 ++ .../com/intellectualcrafters/json/HTTP.html | 445 +++ .../json/HTTPTokener.html | 333 ++ .../intellectualcrafters/json/JSONArray.html | 1795 ++++++++++ .../json/JSONException.html | 354 ++ .../com/intellectualcrafters/json/JSONML.html | 516 +++ .../intellectualcrafters/json/JSONObject.html | 2356 +++++++++++++ .../intellectualcrafters/json/JSONString.html | 235 ++ .../json/JSONStringer.html | 374 +++ .../json/JSONTokener.html | 770 +++++ .../intellectualcrafters/json/JSONWriter.html | 687 ++++ .../com/intellectualcrafters/json/Kim.html | 644 ++++ .../intellectualcrafters/json/Property.html | 330 ++ .../com/intellectualcrafters/json/XML.html | 663 ++++ .../intellectualcrafters/json/XMLTokener.html | 544 +++ .../json/package-frame.html | 53 + .../json/package-summary.html | 292 ++ .../json/package-tree.html | 201 ++ .../intellectualcrafters/plot/PlotMain.html | 1611 +++++++++ .../plot/api/PlotAPI.html | 1509 +++++++++ .../plot/api/package-frame.html | 22 + .../plot/api/package-summary.html | 137 + .../plot/api/package-tree.html | 130 + .../plot/commands/Auto.html | 450 +++ .../plot/commands/Ban.html | 378 +++ .../plot/commands/Claim.html | 422 +++ .../plot/commands/Clear.html | 373 +++ .../plot/commands/Clipboard.html | 373 +++ .../plot/commands/Command.html | 850 +++++ .../plot/commands/CommandPermission.html | 328 ++ .../plot/commands/Comment.html | 373 +++ .../plot/commands/Copy.html | 373 +++ .../plot/commands/DEOP.html | 378 +++ .../plot/commands/Database.html | 400 +++ .../plot/commands/Debug.html | 373 +++ .../plot/commands/DebugClaimTest.html | 419 +++ .../plot/commands/DebugLoadTest.html | 377 +++ .../plot/commands/DebugSaveTest.html | 377 +++ .../plot/commands/Delete.html | 373 +++ .../plot/commands/Denied.html | 373 +++ .../plot/commands/Help.html | 373 +++ .../plot/commands/Helpers.html | 373 +++ .../plot/commands/Home.html | 377 +++ .../plot/commands/Inbox.html | 373 +++ .../plot/commands/Info.html | 377 +++ .../plot/commands/Inventory.html | 373 +++ .../plot/commands/Kick.html | 373 +++ .../plot/commands/MainCommand.html | 444 +++ .../plot/commands/Merge.html | 436 +++ .../plot/commands/MusicSubcommand.html | 373 +++ .../plot/commands/OP.html | 378 +++ .../plot/commands/Paste.html | 373 +++ .../plot/commands/Purge.html | 373 +++ .../plot/commands/Rate.html | 373 +++ .../plot/commands/Reload.html | 373 +++ .../plot/commands/Schematic.html | 373 +++ .../plot/commands/Set.html | 421 +++ .../plot/commands/SetOwner.html | 373 +++ .../plot/commands/Setup.html | 414 +++ .../commands/SubCommand.CommandCategory.html | 448 +++ .../plot/commands/SubCommand.html | 656 ++++ .../plot/commands/Swap.html | 374 +++ .../plot/commands/TP.html | 377 +++ .../plot/commands/Trusted.html | 373 +++ .../plot/commands/Unban.html | 378 +++ .../plot/commands/Unlink.html | 378 +++ .../plot/commands/Visit.html | 390 +++ .../plot/commands/list.html | 377 +++ .../plot/commands/package-frame.html | 111 + .../plot/commands/package-summary.html | 397 +++ .../plot/commands/package-tree.html | 328 ++ .../plot/commands/plugin.html | 432 +++ .../intellectualcrafters/plot/config/C.html | 2915 +++++++++++++++++ .../config/Configuration.SettingValue.html | 325 ++ .../plot/config/Configuration.html | 493 +++ .../plot/config/ConfigurationNode.html | 376 +++ .../plot/config/Settings.DB.html | 454 +++ .../plot/config/Settings.html | 612 ++++ .../plot/config/package-frame.html | 34 + .../plot/config/package-summary.html | 186 ++ .../plot/config/package-tree.html | 163 + .../plot/database/AbstractDB.html | 959 ++++++ .../plot/database/DBFunc.html | 932 ++++++ .../plot/database/Database.html | 497 +++ .../plot/database/FlatFileManager.html | 241 ++ .../plot/database/MySQL.html | 546 +++ .../plot/database/PlotMeConverter.html | 293 ++ .../plot/database/SQLManager.html | 1320 ++++++++ .../plot/database/SQLite.html | 534 +++ .../plot/database/package-frame.html | 39 + .../plot/database/package-summary.html | 199 ++ .../plot/database/package-tree.html | 167 + .../plot/database/sqlobjects/PlotTable.html | 305 ++ .../plot/database/sqlobjects/SQLField.html | 301 ++ .../plot/database/sqlobjects/SQLTable.html | 327 ++ .../plot/database/sqlobjects/SQLType.html | 457 +++ .../database/sqlobjects/package-frame.html | 31 + .../database/sqlobjects/package-summary.html | 174 + .../database/sqlobjects/package-tree.html | 158 + .../plot/events/PlayerClaimPlotEvent.html | 457 +++ .../plot/events/PlayerEnterPlotEvent.html | 393 +++ .../plot/events/PlayerLeavePlotEvent.html | 393 +++ .../plot/events/PlayerPlotDeniedEvent.html | 439 +++ .../plot/events/PlayerPlotHelperEvent.html | 436 +++ .../plot/events/PlayerPlotTrustedEvent.html | 439 +++ .../events/PlayerTeleportToPlotEvent.html | 465 +++ .../plot/events/PlotClearEvent.html | 430 +++ .../plot/events/PlotDeleteEvent.html | 430 +++ .../plot/events/PlotFlagAddEvent.html | 436 +++ .../plot/events/PlotFlagRemoveEvent.html | 436 +++ .../plot/events/PlotMergeEvent.html | 454 +++ .../plot/events/PlotUnlinkEvent.html | 422 +++ .../plot/events/package-frame.html | 46 + .../plot/events/package-summary.html | 220 ++ .../plot/events/package-tree.html | 195 ++ .../plot/flag/AbstractFlag.html | 377 +++ .../intellectualcrafters/plot/flag/Flag.html | 401 +++ .../plot/flag/FlagManager.html | 530 +++ .../plot/flag/FlagValue.BooleanValue.html | 384 +++ .../plot/flag/FlagValue.StringValue.html | 382 +++ .../plot/flag/FlagValue.html | 381 +++ .../plot/flag/package-frame.html | 31 + .../plot/flag/package-summary.html | 169 + .../plot/flag/package-tree.html | 152 + .../plot/generator/DefaultPlotManager.html | 973 ++++++ .../plot/generator/DefaultPlotWorld.html | 928 ++++++ .../plot/generator/WorldGenerator.html | 580 ++++ .../plot/generator/XPopulator.html | 381 +++ .../plot/generator/package-frame.html | 28 + .../plot/generator/package-summary.html | 153 + .../plot/generator/package-tree.html | 171 + .../plot/listeners/EntityListener.html | 404 +++ .../plot/listeners/ForceFieldListener.html | 297 ++ .../plot/listeners/InventoryListener.html | 297 ++ .../plot/listeners/PlayerEvents.html | 784 +++++ .../plot/listeners/PlotListener.html | 548 ++++ .../listeners/PlotPlusListener.Interval.html | 334 ++ .../PlotPlusListener.RecordMeta.html | 366 +++ .../plot/listeners/PlotPlusListener.html | 480 +++ .../plot/listeners/WorldEditListener.html | 431 +++ .../plot/listeners/WorldGuardListener.html | 471 +++ .../plot/listeners/package-frame.html | 40 + .../plot/listeners/package-summary.html | 201 ++ .../plot/listeners/package-tree.html | 177 + .../plot/object/BlockWrapper.html | 448 +++ .../plot/object/InfoInventory.html | 339 ++ .../plot/object/Plot.html | 1059 ++++++ .../plot/object/PlotBlock.html | 301 ++ .../plot/object/PlotComment.html | 318 ++ .../plot/object/PlotGenerator.html | 336 ++ .../plot/object/PlotHomePosition.html | 393 +++ .../plot/object/PlotId.html | 416 +++ .../plot/object/PlotManager.html | 756 +++++ .../plot/object/PlotSelection.html | 407 +++ .../plot/object/PlotSettings.html | 694 ++++ .../plot/object/PlotWorld.html | 951 ++++++ .../plot/object/StringWrapper.html | 382 +++ .../plot/object/Title.html | 556 ++++ .../plot/object/package-frame.html | 50 + .../plot/object/package-summary.html | 227 ++ .../plot/object/package-tree.html | 200 ++ .../plot/package-frame.html | 21 + .../plot/package-summary.html | 137 + .../plot/package-tree.html | 137 + .../plot/util/ConsoleColors.html | 301 ++ .../plot/util/LSetCube.LCycler.html | 312 ++ .../plot/util/LSetCube.html | 391 +++ .../intellectualcrafters/plot/util/Lag.html | 478 +++ .../plot/util/Logger.LogLevel.html | 413 +++ .../plot/util/Logger.html | 340 ++ .../plot/util/Metrics.Graph.html | 389 +++ .../plot/util/Metrics.Plotter.html | 393 +++ .../plot/util/Metrics.html | 515 +++ .../intellectualcrafters/plot/util/PWE.html | 336 ++ .../plot/util/PlayerFunctions.html | 707 ++++ .../plot/util/PlotHelper.html | 1294 ++++++++ .../util/PlotSquaredException.PlotError.html | 415 +++ .../plot/util/PlotSquaredException.html | 307 ++ .../plot/util/RUtils.html | 405 +++ .../plot/util/ReflectionUtils.RefClass.html | 592 ++++ .../util/ReflectionUtils.RefConstructor.html | 293 ++ .../ReflectionUtils.RefField.RefExecutor.html | 308 ++ .../plot/util/ReflectionUtils.RefField.html | 343 ++ ...ReflectionUtils.RefMethod.RefExecutor.html | 291 ++ .../plot/util/ReflectionUtils.RefMethod.html | 368 +++ .../plot/util/ReflectionUtils.html | 395 +++ .../util/SchematicHandler.DataCollection.html | 298 ++ .../plot/util/SchematicHandler.Dimension.html | 315 ++ .../plot/util/SchematicHandler.Schematic.html | 331 ++ .../plot/util/SchematicHandler.html | 467 +++ .../plot/util/SetBlockFast.html | 309 ++ .../plot/util/StringComparison.html | 413 +++ .../plot/util/UUIDHandler.html | 451 +++ .../plot/util/package-frame.html | 76 + .../plot/util/package-summary.html | 337 ++ .../plot/util/package-tree.html | 264 ++ .../plot/uuid/NameFetcher.html | 287 ++ .../plot/uuid/PlotUUIDSaver.html | 453 +++ .../plot/uuid/UUIDFetcher.html | 369 +++ .../plot/uuid/UUIDSaver.html | 338 ++ .../plot/uuid/UUIDSet.html | 309 ++ .../plot/uuid/package-frame.html | 33 + .../plot/uuid/package-summary.html | 177 + .../plot/uuid/package-tree.html | 153 + .../translation/Translation.html | 235 ++ .../translation/TranslationAsset.html | 326 ++ .../translation/TranslationFile.html | 364 ++ .../translation/TranslationLanguage.html | 450 +++ .../translation/TranslationManager.html | 685 ++++ .../translation/TranslationObject.html | 322 ++ .../translation/YamlTranslationFile.html | 514 +++ .../translation/bukkit/BukkitTranslation.html | 364 ++ .../translation/bukkit/TranslationPlugin.html | 338 ++ .../translation/bukkit/package-frame.html | 24 + .../translation/bukkit/package-summary.html | 142 + .../translation/bukkit/package-tree.html | 143 + .../translation/package-frame.html | 37 + .../translation/package-summary.html | 193 ++ .../translation/package-tree.html | 162 + PlotSquared/doc/constant-values.html | 343 ++ PlotSquared/doc/deprecated-list.html | 177 + PlotSquared/doc/help-doc.html | 250 ++ PlotSquared/doc/index-files/index-1.html | 525 +++ PlotSquared/doc/index-files/index-10.html | 359 ++ PlotSquared/doc/index-files/index-11.html | 222 ++ PlotSquared/doc/index-files/index-12.html | 342 ++ PlotSquared/doc/index-files/index-13.html | 416 +++ PlotSquared/doc/index-files/index-14.html | 377 +++ PlotSquared/doc/index-files/index-15.html | 759 +++++ PlotSquared/doc/index-files/index-16.html | 1189 +++++++ PlotSquared/doc/index-files/index-17.html | 185 ++ PlotSquared/doc/index-files/index-18.html | 654 ++++ PlotSquared/doc/index-files/index-19.html | 1402 ++++++++ PlotSquared/doc/index-files/index-2.html | 373 +++ PlotSquared/doc/index-files/index-20.html | 877 +++++ PlotSquared/doc/index-files/index-21.html | 322 ++ PlotSquared/doc/index-files/index-22.html | 343 ++ PlotSquared/doc/index-files/index-23.html | 348 ++ PlotSquared/doc/index-files/index-24.html | 204 ++ PlotSquared/doc/index-files/index-25.html | 166 + PlotSquared/doc/index-files/index-26.html | 141 + PlotSquared/doc/index-files/index-3.html | 975 ++++++ PlotSquared/doc/index-files/index-4.html | 462 +++ PlotSquared/doc/index-files/index-5.html | 583 ++++ PlotSquared/doc/index-files/index-6.html | 386 +++ PlotSquared/doc/index-files/index-7.html | 2583 +++++++++++++++ PlotSquared/doc/index-files/index-8.html | 362 ++ PlotSquared/doc/index-files/index-9.html | 469 +++ PlotSquared/doc/index.html | 78 + PlotSquared/doc/overview-frame.html | 54 + PlotSquared/doc/overview-summary.html | 206 ++ PlotSquared/doc/overview-tree.html | 905 +++++ PlotSquared/doc/package-frame.html | 20 + PlotSquared/doc/package-list | 18 + PlotSquared/doc/package-summary.html | 125 + PlotSquared/doc/package-tree.html | 127 + PlotSquared/doc/resources/background.gif | Bin 0 -> 2313 bytes PlotSquared/doc/resources/tab.gif | Bin 0 -> 291 bytes PlotSquared/doc/resources/titlebar.gif | Bin 0 -> 10701 bytes PlotSquared/doc/resources/titlebar_end.gif | Bin 0 -> 849 bytes PlotSquared/doc/serialized-form.html | 160 + PlotSquared/doc/stylesheet.css | 569 ++++ README.md | 15 +- 291 files changed, 120598 insertions(+), 3 deletions(-) create mode 100644 PlotSquared/doc/Test1.html create mode 100644 PlotSquared/doc/allclasses-frame.html create mode 100644 PlotSquared/doc/allclasses-noframe.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/CDL.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/Cookie.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/CookieList.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/HTTP.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONException.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONML.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONString.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/Kim.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/Property.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/XML.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/json/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/C.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/Translation.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/package-frame.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/package-summary.html create mode 100644 PlotSquared/doc/com/intellectualsites/translation/package-tree.html create mode 100644 PlotSquared/doc/constant-values.html create mode 100644 PlotSquared/doc/deprecated-list.html create mode 100644 PlotSquared/doc/help-doc.html create mode 100644 PlotSquared/doc/index-files/index-1.html create mode 100644 PlotSquared/doc/index-files/index-10.html create mode 100644 PlotSquared/doc/index-files/index-11.html create mode 100644 PlotSquared/doc/index-files/index-12.html create mode 100644 PlotSquared/doc/index-files/index-13.html create mode 100644 PlotSquared/doc/index-files/index-14.html create mode 100644 PlotSquared/doc/index-files/index-15.html create mode 100644 PlotSquared/doc/index-files/index-16.html create mode 100644 PlotSquared/doc/index-files/index-17.html create mode 100644 PlotSquared/doc/index-files/index-18.html create mode 100644 PlotSquared/doc/index-files/index-19.html create mode 100644 PlotSquared/doc/index-files/index-2.html create mode 100644 PlotSquared/doc/index-files/index-20.html create mode 100644 PlotSquared/doc/index-files/index-21.html create mode 100644 PlotSquared/doc/index-files/index-22.html create mode 100644 PlotSquared/doc/index-files/index-23.html create mode 100644 PlotSquared/doc/index-files/index-24.html create mode 100644 PlotSquared/doc/index-files/index-25.html create mode 100644 PlotSquared/doc/index-files/index-26.html create mode 100644 PlotSquared/doc/index-files/index-3.html create mode 100644 PlotSquared/doc/index-files/index-4.html create mode 100644 PlotSquared/doc/index-files/index-5.html create mode 100644 PlotSquared/doc/index-files/index-6.html create mode 100644 PlotSquared/doc/index-files/index-7.html create mode 100644 PlotSquared/doc/index-files/index-8.html create mode 100644 PlotSquared/doc/index-files/index-9.html create mode 100644 PlotSquared/doc/index.html create mode 100644 PlotSquared/doc/overview-frame.html create mode 100644 PlotSquared/doc/overview-summary.html create mode 100644 PlotSquared/doc/overview-tree.html create mode 100644 PlotSquared/doc/package-frame.html create mode 100644 PlotSquared/doc/package-list create mode 100644 PlotSquared/doc/package-summary.html create mode 100644 PlotSquared/doc/package-tree.html create mode 100644 PlotSquared/doc/resources/background.gif create mode 100644 PlotSquared/doc/resources/tab.gif create mode 100644 PlotSquared/doc/resources/titlebar.gif create mode 100644 PlotSquared/doc/resources/titlebar_end.gif create mode 100644 PlotSquared/doc/serialized-form.html create mode 100644 PlotSquared/doc/stylesheet.css diff --git a/PlotSquared/doc/Test1.html b/PlotSquared/doc/Test1.html new file mode 100644 index 000000000..f89c3dbbc --- /dev/null +++ b/PlotSquared/doc/Test1.html @@ -0,0 +1,518 @@ + + + + + + Test1 + + + + + +

JavaScript is disabled on your browser.
+ + +
+ + + + + +
+ + + +
+

Class Test1

+
+
+ +
+
    +
  • +
    +
    +
    public class Test1
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Test1()  +
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Test1

        +
        public Test1()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        nextTest

        +
        public boolean nextTest()
        +
      • +
      + + + +
        +
      • +

        t1

        +
        public void t1()
        +
      • +
      + + + +
        +
      • +

        t2

        +
        public void t2()
        +
      • +
      + + + +
        +
      • +

        t3

        +
        public void t3()
        +
      • +
      + + + +
        +
      • +

        t4

        +
        public void t4()
        +
      • +
      + + + +
        +
      • +

        t5

        +
        public void t5()
        +
      • +
      + + + +
        +
      • +

        t6

        +
        public void t6()
        +
      • +
      + + + +
        +
      • +

        t7

        +
        public void t7()
        +
      • +
      + + + +
        +
      • +

        t8

        +
        public void t8()
        +
      • +
      + + + +
        +
      • +

        t9

        +
        public void t9()
        +
      • +
      + + + +
        +
      • +

        test1_Square

        +
        public boolean test1_Square()
        +
      • +
      + + + +
        +
      • +

        test2_InitMain

        +
        public boolean test2_InitMain()
        +
      • +
      + + + +
        +
      • +

        test3_InitPlotId

        +
        public boolean test3_InitPlotId()
        +
      • +
      + + + +
        +
      • +

        test4_InitPlot

        +
        public boolean test4_InitPlot()
        +
      • +
      + + + +
        +
      • +

        test5_InitDBFunc

        +
        public boolean test5_InitDBFunc()
        +
      • +
      + + + +
        +
      • +

        test6_Plots

        +
        public boolean test6_Plots()
        +
      • +
      + + + +
        +
      • +

        test7_OnEnable

        +
        public boolean test7_OnEnable()
        +
      • +
      + + + +
        +
      • +

        test8_AddPlotWorld

        +
        public boolean test8_AddPlotWorld()
        +
      • +
      + + + +
        +
      • +

        test9_CanSetFast

        +
        public boolean test9_CanSetFast()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/allclasses-frame.html b/PlotSquared/doc/allclasses-frame.html new file mode 100644 index 000000000..43539614b --- /dev/null +++ b/PlotSquared/doc/allclasses-frame.html @@ -0,0 +1,411 @@ + + + + + + All Classes + + + + +

All Classes

+ +
+ +
+ + diff --git a/PlotSquared/doc/allclasses-noframe.html b/PlotSquared/doc/allclasses-noframe.html new file mode 100644 index 000000000..1aad7c38e --- /dev/null +++ b/PlotSquared/doc/allclasses-noframe.html @@ -0,0 +1,395 @@ + + + + + + All Classes + + + + +

All Classes

+ +
+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html new file mode 100644 index 000000000..0043eb919 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html @@ -0,0 +1,353 @@ + + + + + + ByteArrayTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class ByteArrayTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class ByteArrayTag
    +extends Tag
    +
    The TAG_Byte_Array tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      ByteArrayTag(byte[] value) + +
      Creates the tag with an empty name.
      +
      ByteArrayTag(java.lang.String name, + byte[] value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      byte[]getValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ByteArrayTag

        +
        public ByteArrayTag(byte[] value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        ByteArrayTag

        +
        public ByteArrayTag(java.lang.String name,
        +            byte[] value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public byte[] getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html new file mode 100644 index 000000000..78191044d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html @@ -0,0 +1,355 @@ + + + + + + ByteTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class ByteTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class ByteTag
    +extends Tag
    +
    The TAG_Byte tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      ByteTag(byte value) + +
      Creates the tag with an empty name.
      +
      ByteTag(java.lang.String name, + byte value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.BytegetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ByteTag

        +
        public ByteTag(byte value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        ByteTag

        +
        public ByteTag(java.lang.String name,
        +       byte value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Byte getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html new file mode 100644 index 000000000..4ff42a3e7 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html @@ -0,0 +1,915 @@ + + + + + + CompoundTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class CompoundTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class CompoundTag
    +extends Tag
    +
    The TAG_Compound tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      CompoundTag(java.util.Map<java.lang.String,Tag> value) + +
      Creates the tag with an empty name.
      +
      CompoundTag(java.lang.String name, + java.util.Map<java.lang.String,Tag> value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      doubleasDouble(java.lang.String key) + +
      Get a double named with the given key, even if it's another + type of number. +
      +
      intasInt(java.lang.String key) + +
      Get an int named with the given key, even if it's another + type of number. +
      +
      longasLong(java.lang.String key) + +
      Get a long named with the given key, even if it's another + type of number. +
      +
      booleancontainsKey(java.lang.String key) + +
      Returns whether this compound tag contains the given key.
      +
      CompoundTagBuildercreateBuilder() + +
      Create a compound tag builder.
      +
      bytegetByte(java.lang.String key) + +
      Get a byte named with the given key.
      +
      byte[]getByteArray(java.lang.String key) + +
      Get a byte array named with the given key.
      +
      doublegetDouble(java.lang.String key) + +
      Get a double named with the given key.
      +
      floatgetFloat(java.lang.String key) + +
      Get a float named with the given key.
      +
      intgetInt(java.lang.String key) + +
      Get an int named with the given key.
      +
      int[]getIntArray(java.lang.String key) + +
      Get a int[] named with the given key.
      +
      java.util.List<Tag>getList(java.lang.String key) + +
      Get a list of tags named with the given key.
      +
      <T extends Tag
      java.util.List<T> +
      getList(java.lang.String key, + java.lang.Class<T> listType) + +
      Get a list of tags named with the given key.
      +
      ListTag + getListTag(java.lang.String key) + +
      Get a TagList named with the given key.
      +
      longgetLong(java.lang.String key) + +
      Get a long named with the given key.
      +
      shortgetShort(java.lang.String key) + +
      Get a short named with the given key.
      +
      java.lang.StringgetString(java.lang.String key) + +
      Get a string named with the given key.
      +
      java.util.Map<java.lang.String,Tag>getValue() + +
      Gets the value of this tag.
      +
      CompoundTag + setValue(java.util.Map<java.lang.String,Tag> value) + +
      Return a new compound tag with the given values.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        CompoundTag

        +
        public CompoundTag(java.util.Map<java.lang.String,Tag> value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        CompoundTag

        +
        public CompoundTag(java.lang.String name,
        +           java.util.Map<java.lang.String,Tag> value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        containsKey

        +
        public boolean containsKey(java.lang.String key)
        +
        Returns whether this compound tag contains the given key.
        +
        +
        Parameters:
        +
        key - the given key
        +
        Returns:
        +
        true if the tag contains the given key
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public java.util.Map<java.lang.String,Tag> getValue()
        +
        Description copied from class: Tag
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        setValue

        +
        public CompoundTag setValue(java.util.Map<java.lang.String,Tag> value)
        +
        Return a new compound tag with the given values.
        +
        +
        Parameters:
        +
        value - the value
        +
        Returns:
        +
        the new compound tag
        +
        +
      • +
      + + + +
        +
      • +

        createBuilder

        +
        public CompoundTagBuilder createBuilder()
        +
        Create a compound tag builder.
        +
        +
        Returns:
        +
        the builder
        +
        +
      • +
      + + + +
        +
      • +

        getByteArray

        +
        public byte[] getByteArray(java.lang.String key)
        +
        Get a byte array named with the given key. +

        + +

        + If the key does not exist or its value is not a byte array tag, then an + empty byte array will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a byte array
        +
        +
      • +
      + + + +
        +
      • +

        getByte

        +
        public byte getByte(java.lang.String key)
        +
        Get a byte named with the given key. +

        + +

        + If the key does not exist or its value is not a byte tag, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a byte
        +
        +
      • +
      + + + +
        +
      • +

        getDouble

        +
        public double getDouble(java.lang.String key)
        +
        Get a double named with the given key. +

        + +

        + If the key does not exist or its value is not a double tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a double
        +
        +
      • +
      + + + +
        +
      • +

        asDouble

        +
        public double asDouble(java.lang.String key)
        +
        Get a double named with the given key, even if it's another + type of number. +

        + +

        + If the key does not exist or its value is not a number, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a double
        +
        +
      • +
      + + + +
        +
      • +

        getFloat

        +
        public float getFloat(java.lang.String key)
        +
        Get a float named with the given key. +

        + +

        + If the key does not exist or its value is not a float tag, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a float
        +
        +
      • +
      + + + +
        +
      • +

        getIntArray

        +
        public int[] getIntArray(java.lang.String key)
        +
        Get a int[] named with the given key. +

        + +

        + If the key does not exist or its value is not an int array tag, then an + empty array will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        an int array
        +
        +
      • +
      + + + +
        +
      • +

        getInt

        +
        public int getInt(java.lang.String key)
        +
        Get an int named with the given key. +

        + +

        + If the key does not exist or its value is not an int tag, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        an int
        +
        +
      • +
      + + + +
        +
      • +

        asInt

        +
        public int asInt(java.lang.String key)
        +
        Get an int named with the given key, even if it's another + type of number. +

        + +

        + If the key does not exist or its value is not a number, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        an int
        +
        +
      • +
      + + + +
        +
      • +

        getList

        +
        public java.util.List<Tag> getList(java.lang.String key)
        +
        Get a list of tags named with the given key. +

        + +

        + If the key does not exist or its value is not a list tag, then an empty + list will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a list of tags
        +
        +
      • +
      + + + +
        +
      • +

        getListTag

        +
        public ListTag getListTag(java.lang.String key)
        +
        Get a TagList named with the given key. +

        + +

        + If the key does not exist or its value is not a list tag, then an empty + tag list will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a tag list instance
        +
        +
      • +
      + + + +
        +
      • +

        getList

        +
        public <T extends Tag> java.util.List<T> getList(java.lang.String key,
        +                                        java.lang.Class<T> listType)
        +
        Get a list of tags named with the given key. +

        + +

        + If the key does not exist or its value is not a list tag, then an empty + list will be returned. If the given key references a list but the list of + of a different type, then an empty list will also be returned. +

        +
        +
        Type Parameters:
        +
        T - the type of list
        +
        Parameters:
        +
        key - the key
        +
        listType - the class of the contained type
        +
        Returns:
        +
        a list of tags
        +
        +
      • +
      + + + +
        +
      • +

        getLong

        +
        public long getLong(java.lang.String key)
        +
        Get a long named with the given key. +

        + +

        + If the key does not exist or its value is not a long tag, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a long
        +
        +
      • +
      + + + +
        +
      • +

        asLong

        +
        public long asLong(java.lang.String key)
        +
        Get a long named with the given key, even if it's another + type of number. +

        + +

        + If the key does not exist or its value is not a number, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a long
        +
        +
      • +
      + + + +
        +
      • +

        getShort

        +
        public short getShort(java.lang.String key)
        +
        Get a short named with the given key. +

        + +

        + If the key does not exist or its value is not a short tag, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a short
        +
        +
      • +
      + + + +
        +
      • +

        getString

        +
        public java.lang.String getString(java.lang.String key)
        +
        Get a string named with the given key. +

        + +

        + If the key does not exist or its value is not a string tag, then + "" will be returned. +

        +
        +
        Parameters:
        +
        key - the key
        +
        Returns:
        +
        a string
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html new file mode 100644 index 000000000..55719e324 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html @@ -0,0 +1,664 @@ + + + + + + CompoundTagBuilder + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class CompoundTagBuilder

+
+
+ +
+
    +
  • +
    +
    +
    public class CompoundTagBuilder
    +extends java.lang.Object
    +
    Helps create compound tags.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      CompoundTag + build() + +
      Build an unnamed compound tag with this builder's entries.
      +
      CompoundTag + build(java.lang.String name) + +
      Build a new compound tag with this builder's entries.
      +
      static CompoundTagBuildercreate() + +
      Create a new builder instance.
      +
      CompoundTagBuilderput(java.lang.String key, + Tag value) + +
      Put the given key and tag into the compound tag.
      +
      CompoundTagBuilderputAll(java.util.Map<java.lang.String,? + extends Tag> value) + +
      Put all the entries from the given map into this map.
      +
      CompoundTagBuilderputByte(java.lang.String key, + byte value) + +
      Put the given key and value into the compound tag as a + ByteTag. +
      +
      CompoundTagBuilderputByteArray(java.lang.String key, + byte[] value) + +
      Put the given key and value into the compound tag as a + ByteArrayTag. +
      +
      CompoundTagBuilderputDouble(java.lang.String key, + double value) + +
      Put the given key and value into the compound tag as a DoubleTag. +
      +
      CompoundTagBuilderputFloat(java.lang.String key, + float value) + +
      Put the given key and value into the compound tag as a + FloatTag. +
      +
      CompoundTagBuilderputInt(java.lang.String key, + int value) + +
      Put the given key and value into the compound tag as an + IntTag. +
      +
      CompoundTagBuilderputIntArray(java.lang.String key, + int[] value) + +
      Put the given key and value into the compound tag as a + IntArrayTag. +
      +
      CompoundTagBuilderputLong(java.lang.String key, + long value) + +
      Put the given key and value into the compound tag as a + LongTag. +
      +
      CompoundTagBuilderputShort(java.lang.String key, + short value) + +
      Put the given key and value into the compound tag as a + ShortTag. +
      +
      CompoundTagBuilderputString(java.lang.String key, + java.lang.String value) + +
      Put the given key and value into the compound tag as a StringTag. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        create

        +
        public static CompoundTagBuilder create()
        +
        Create a new builder instance.
        +
        +
        Returns:
        +
        a new builder
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public CompoundTagBuilder put(java.lang.String key,
        +                     Tag value)
        +
        Put the given key and tag into the compound tag.
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putByteArray

        +
        public CompoundTagBuilder putByteArray(java.lang.String key,
        +                              byte[] value)
        +
        Put the given key and value into the compound tag as a + ByteArrayTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putByte

        +
        public CompoundTagBuilder putByte(java.lang.String key,
        +                         byte value)
        +
        Put the given key and value into the compound tag as a + ByteTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putDouble

        +
        public CompoundTagBuilder putDouble(java.lang.String key,
        +                           double value)
        +
        Put the given key and value into the compound tag as a + DoubleTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putFloat

        +
        public CompoundTagBuilder putFloat(java.lang.String key,
        +                          float value)
        +
        Put the given key and value into the compound tag as a + FloatTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putIntArray

        +
        public CompoundTagBuilder putIntArray(java.lang.String key,
        +                             int[] value)
        +
        Put the given key and value into the compound tag as a + IntArrayTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putInt

        +
        public CompoundTagBuilder putInt(java.lang.String key,
        +                        int value)
        +
        Put the given key and value into the compound tag as an + IntTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putLong

        +
        public CompoundTagBuilder putLong(java.lang.String key,
        +                         long value)
        +
        Put the given key and value into the compound tag as a + LongTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putShort

        +
        public CompoundTagBuilder putShort(java.lang.String key,
        +                          short value)
        +
        Put the given key and value into the compound tag as a + ShortTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putString

        +
        public CompoundTagBuilder putString(java.lang.String key,
        +                           java.lang.String value)
        +
        Put the given key and value into the compound tag as a + StringTag. +
        +
        +
        Parameters:
        +
        key - they key
        +
        value - the value
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        putAll

        +
        public CompoundTagBuilder putAll(java.util.Map<java.lang.String,? extends Tag> value)
        +
        Put all the entries from the given map into this map.
        +
        +
        Parameters:
        +
        value - the map of tags
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        build

        +
        public CompoundTag build()
        +
        Build an unnamed compound tag with this builder's entries.
        +
        +
        Returns:
        +
        the new compound tag
        +
        +
      • +
      + + + +
        +
      • +

        build

        +
        public CompoundTag build(java.lang.String name)
        +
        Build a new compound tag with this builder's entries.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        Returns:
        +
        the created compound tag
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html new file mode 100644 index 000000000..171be5fd1 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html @@ -0,0 +1,355 @@ + + + + + + DoubleTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class DoubleTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class DoubleTag
    +extends Tag
    +
    The TAG_Double tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      DoubleTag(double value) + +
      Creates the tag with an empty name.
      +
      DoubleTag(java.lang.String name, + double value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.DoublegetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DoubleTag

        +
        public DoubleTag(double value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        DoubleTag

        +
        public DoubleTag(java.lang.String name,
        +         double value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Double getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html new file mode 100644 index 000000000..f1459e6e4 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html @@ -0,0 +1,327 @@ + + + + + + EndTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class EndTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class EndTag
    +extends Tag
    +
    The TAG_End tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      EndTag() + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ObjectgetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        EndTag

        +
        public EndTag()
        +
        Creates the tag.
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Object getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html new file mode 100644 index 000000000..e1b6fdbe2 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html @@ -0,0 +1,355 @@ + + + + + + FloatTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class FloatTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class FloatTag
    +extends Tag
    +
    The TAG_Float tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      FloatTag(float value) + +
      Creates the tag with an empty name.
      +
      FloatTag(java.lang.String name, + float value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.FloatgetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        FloatTag

        +
        public FloatTag(float value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        FloatTag

        +
        public FloatTag(java.lang.String name,
        +        float value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Float getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html new file mode 100644 index 000000000..307b7c6c3 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html @@ -0,0 +1,355 @@ + + + + + + IntArrayTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class IntArrayTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class IntArrayTag
    +extends Tag
    +
    The TAG_Int_Array tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      IntArrayTag(int[] value) + +
      Creates the tag with an empty name.
      +
      IntArrayTag(java.lang.String name, + int[] value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      int[]getValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        IntArrayTag

        +
        public IntArrayTag(int[] value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        IntArrayTag

        +
        public IntArrayTag(java.lang.String name,
        +           int[] value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public int[] getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html new file mode 100644 index 000000000..367868953 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html @@ -0,0 +1,355 @@ + + + + + + IntTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class IntTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class IntTag
    +extends Tag
    +
    The TAG_Int tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      IntTag(int value) + +
      Creates the tag with an empty name.
      +
      IntTag(java.lang.String name, + int value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.IntegergetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        IntTag

        +
        public IntTag(int value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        IntTag

        +
        public IntTag(java.lang.String name,
        +      int value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Integer getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html new file mode 100644 index 000000000..076194d3d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html @@ -0,0 +1,927 @@ + + + + + + ListTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class ListTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class ListTag
    +extends Tag
    +
    The TAG_List tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      ListTag(java.lang.Class<? + extends Tag> type, + java.util.List<? extends Tag> value) + +
      Creates the tag with an empty name.
      +
      ListTag(java.lang.String name, + java.lang.Class<? extends Tag> type, + java.util.List<? extends Tag> value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      doubleasDouble(int index) + +
      Get a double named with the given index, even if it's another + type of number. +
      +
      intasInt(int index) + +
      Get an int named with the given index, even if it's another + type of number. +
      +
      longasLong(int index) + +
      Get a long named with the given index, even if it's another + type of number. +
      +
      bytegetByte(int index) + +
      Get a byte named with the given index.
      +
      byte[]getByteArray(int index) + +
      Get a byte array named with the given index.
      +
      doublegetDouble(int index) + +
      Get a double named with the given index.
      +
      floatgetFloat(int index) + +
      Get a float named with the given index.
      +
      Tag + getIfExists(int index) + +
      Get the tag if it exists at the given index.
      +
      intgetInt(int index) + +
      Get an int named with the given index.
      +
      int[]getIntArray(int index) + +
      Get a int[] named with the given index.
      +
      java.util.List<Tag>getList(int index) + +
      Get a list of tags named with the given index.
      +
      <T extends Tag
      java.util.List<T> +
      getList(int index, + java.lang.Class<T> listType) + +
      Get a list of tags named with the given index.
      +
      ListTag + getListTag(int index) + +
      Get a TagList named with the given index.
      +
      longgetLong(int index) + +
      Get a long named with the given index.
      +
      shortgetShort(int index) + +
      Get a short named with the given index.
      +
      java.lang.StringgetString(int index) + +
      Get a string named with the given index.
      +
      java.lang.Class<? extends Tag>getType() + +
      Gets the type of item in this list.
      +
      java.util.List<Tag>getValue() + +
      Gets the value of this tag.
      +
      ListTag + setValue(java.util.List<Tag> list) + +
      Create a new list tag with this tag's name and type.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ListTag

        +
        public ListTag(java.lang.Class<? extends Tag> type,
        +       java.util.List<? extends Tag> value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        type - the type of tag
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        ListTag

        +
        public ListTag(java.lang.String name,
        +       java.lang.Class<? extends Tag> type,
        +       java.util.List<? extends Tag> value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        type - the type of tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getType

        +
        public java.lang.Class<? extends Tag> getType()
        +
        Gets the type of item in this list.
        +
        +
        Returns:
        +
        The type of item in this list.
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public java.util.List<Tag> getValue()
        +
        Description copied from class: Tag
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        setValue

        +
        public ListTag setValue(java.util.List<Tag> list)
        +
        Create a new list tag with this tag's name and type.
        +
        +
        Parameters:
        +
        list - the new list
        +
        Returns:
        +
        a new list tag
        +
        +
      • +
      + + + +
        +
      • +

        getIfExists

        +
        @Nullable
        +public Tag getIfExists(int index)
        +
        Get the tag if it exists at the given index.
        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        the tag or null
        +
        +
      • +
      + + + +
        +
      • +

        getByteArray

        +
        public byte[] getByteArray(int index)
        +
        Get a byte array named with the given index. +

        + +

        + If the index does not exist or its value is not a byte array tag, then an + empty byte array will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a byte array
        +
        +
      • +
      + + + +
        +
      • +

        getByte

        +
        public byte getByte(int index)
        +
        Get a byte named with the given index. +

        + +

        + If the index does not exist or its value is not a byte tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a byte
        +
        +
      • +
      + + + +
        +
      • +

        getDouble

        +
        public double getDouble(int index)
        +
        Get a double named with the given index. +

        + +

        + If the index does not exist or its value is not a double tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a double
        +
        +
      • +
      + + + +
        +
      • +

        asDouble

        +
        public double asDouble(int index)
        +
        Get a double named with the given index, even if it's another + type of number. +

        + +

        + If the index does not exist or its value is not a number, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a double
        +
        +
      • +
      + + + +
        +
      • +

        getFloat

        +
        public float getFloat(int index)
        +
        Get a float named with the given index. +

        + +

        + If the index does not exist or its value is not a float tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a float
        +
        +
      • +
      + + + +
        +
      • +

        getIntArray

        +
        public int[] getIntArray(int index)
        +
        Get a int[] named with the given index. +

        + +

        + If the index does not exist or its value is not an int array tag, then an + empty array will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        an int array
        +
        +
      • +
      + + + +
        +
      • +

        getInt

        +
        public int getInt(int index)
        +
        Get an int named with the given index. +

        + +

        + If the index does not exist or its value is not an int tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        an int
        +
        +
      • +
      + + + +
        +
      • +

        asInt

        +
        public int asInt(int index)
        +
        Get an int named with the given index, even if it's another + type of number. +

        + +

        + If the index does not exist or its value is not a number, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        an int
        +
        +
      • +
      + + + +
        +
      • +

        getList

        +
        public java.util.List<Tag> getList(int index)
        +
        Get a list of tags named with the given index. +

        + +

        + If the index does not exist or its value is not a list tag, then an empty + list will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a list of tags
        +
        +
      • +
      + + + +
        +
      • +

        getListTag

        +
        public ListTag getListTag(int index)
        +
        Get a TagList named with the given index. +

        + +

        + If the index does not exist or its value is not a list tag, then an empty + tag list will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a tag list instance
        +
        +
      • +
      + + + +
        +
      • +

        getList

        +
        public <T extends Tag> java.util.List<T> getList(int index,
        +                                        java.lang.Class<T> listType)
        +
        Get a list of tags named with the given index. +

        + +

        + If the index does not exist or its value is not a list tag, then an empty + list will be returned. If the given index references a list but the list + of of a different type, then an empty list will also be returned. +

        +
        +
        Type Parameters:
        +
        T - the NBT type
        +
        Parameters:
        +
        index - the index
        +
        listType - the class of the contained type
        +
        Returns:
        +
        a list of tags
        +
        +
      • +
      + + + +
        +
      • +

        getLong

        +
        public long getLong(int index)
        +
        Get a long named with the given index. +

        + +

        + If the index does not exist or its value is not a long tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a long
        +
        +
      • +
      + + + +
        +
      • +

        asLong

        +
        public long asLong(int index)
        +
        Get a long named with the given index, even if it's another + type of number. +

        + +

        + If the index does not exist or its value is not a number, then 0 + will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a long
        +
        +
      • +
      + + + +
        +
      • +

        getShort

        +
        public short getShort(int index)
        +
        Get a short named with the given index. +

        + +

        + If the index does not exist or its value is not a short tag, then + 0 will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a short
        +
        +
      • +
      + + + +
        +
      • +

        getString

        +
        public java.lang.String getString(int index)
        +
        Get a string named with the given index. +

        + +

        + If the index does not exist or its value is not a string tag, then + "" will be returned. +

        +
        +
        Parameters:
        +
        index - the index
        +
        Returns:
        +
        a string
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html new file mode 100644 index 000000000..d1149fd03 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html @@ -0,0 +1,395 @@ + + + + + + ListTagBuilder + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class ListTagBuilder

+
+
+ +
+
    +
  • +
    +
    +
    public class ListTagBuilder
    +extends java.lang.Object
    +
    Helps create list tags.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      ListTagBuilderadd(Tag value) + +
      Add the given tag.
      +
      ListTagBuilderaddAll(java.util.Collection<? + extends Tag> value) + +
      Add all the tags in the given list.
      +
      ListTag + build() + +
      Build an unnamed list tag with this builder's entries.
      +
      ListTag + build(java.lang.String name) + +
      Build a new list tag with this builder's entries.
      +
      static ListTagBuildercreate(java.lang.Class<? + extends Tag> type) + +
      Create a new builder instance.
      +
      static <T extends Tag
      ListTagBuilder
      createWith(T... entries) + +
      Create a new builder instance.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        create

        +
        public static ListTagBuilder create(java.lang.Class<? extends Tag> type)
        +
        Create a new builder instance.
        +
        +
        Returns:
        +
        a new builder
        +
        +
      • +
      + + + + + +
        +
      • +

        createWith

        +
        public static <T extends TagListTagBuilder createWith(T... entries)
        +
        Create a new builder instance.
        +
        +
        Returns:
        +
        a new builder
        +
        +
      • +
      + + + +
        +
      • +

        add

        +
        public ListTagBuilder add(Tag value)
        +
        Add the given tag.
        +
        +
        Parameters:
        +
        value - the tag
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        addAll

        +
        public ListTagBuilder addAll(java.util.Collection<? extends Tag> value)
        +
        Add all the tags in the given list.
        +
        +
        Parameters:
        +
        value - a list of tags
        +
        Returns:
        +
        this object
        +
        +
      • +
      + + + +
        +
      • +

        build

        +
        public ListTag build()
        +
        Build an unnamed list tag with this builder's entries.
        +
        +
        Returns:
        +
        the new list tag
        +
        +
      • +
      + + + +
        +
      • +

        build

        +
        public ListTag build(java.lang.String name)
        +
        Build a new list tag with this builder's entries.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        Returns:
        +
        the created list tag
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html new file mode 100644 index 000000000..6f6f4d62b --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html @@ -0,0 +1,355 @@ + + + + + + LongTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class LongTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class LongTag
    +extends Tag
    +
    The TAG_Long tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      LongTag(long value) + +
      Creates the tag with an empty name.
      +
      LongTag(java.lang.String name, + long value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.LonggetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        LongTag

        +
        public LongTag(long value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        LongTag

        +
        public LongTag(java.lang.String name,
        +       long value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Long getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html new file mode 100644 index 000000000..460af5096 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html @@ -0,0 +1,547 @@ + + + + + + NBTConstants + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class NBTConstants

+
+
+ +
+
    +
  • +
    +
    +
    public final class NBTConstants
    +extends java.lang.Object
    +
    A class which holds constant values.
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Class<? extends Tag>getClassFromType(int id) + +
      Convert a type ID to its corresponding Tag class. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html new file mode 100644 index 000000000..af0001137 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html @@ -0,0 +1,340 @@ + + + + + + NBTInputStream + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class NBTInputStream

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Closeable, java.lang.AutoCloseable
    +
    +
    +
    +
    public final class NBTInputStream
    +extends java.lang.Object
    +implements java.io.Closeable
    +
    This class reads NBT, or Named Binary Tag + streams, and produces an object graph of subclasses of the Tag + object. +

    + +

    + The NBT format was created by Markus Persson, and the specification may be + found at + http://www.minecraft.net/docs/NBT.txt. +

    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      NBTInputStream(java.io.InputStream is) + +
      Creates a new NBTInputStream, which will source its + data + from the specified input stream. +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidclose()  +
      Tag + readTag() + +
      Reads an NBT tag from the stream.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        NBTInputStream

        +
        public NBTInputStream(java.io.InputStream is)
        +               throws java.io.IOException
        +
        Creates a new NBTInputStream, which will source its data + from the specified input stream. +
        +
        +
        Parameters:
        +
        is - the input stream
        +
        Throws:
        +
        java.io.IOException - if an I/O error occurs
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        readTag

        +
        public Tag readTag()
        +            throws java.io.IOException
        +
        Reads an NBT tag from the stream.
        +
        +
        Returns:
        +
        The tag that was read.
        +
        Throws:
        +
        java.io.IOException - if an I/O error occurs.
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        public void close()
        +           throws java.io.IOException
        +
        +
        Specified by:
        +
        close in interface java.io.Closeable
        +
        Specified by:
        +
        close in interface java.lang.AutoCloseable +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html new file mode 100644 index 000000000..0d0eab593 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html @@ -0,0 +1,347 @@ + + + + + + NBTOutputStream + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class NBTOutputStream

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Closeable, java.lang.AutoCloseable
    +
    +
    +
    +
    public final class NBTOutputStream
    +extends java.lang.Object
    +implements java.io.Closeable
    +

    + This class writes NBT, or Named Binary Tag + Tag objects to an underlying OutputStream. +

    + +

    + +

    + The NBT format was created by Markus Persson, and the specification may be + found at + http://www.minecraft.net/docs/NBT.txt. +

    +
    +
    Author:
    +
    Graham Edgecombe
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      NBTOutputStream(java.io.OutputStream os) + +
      Creates a new NBTOutputStream, which will write data + to the + specified underlying output stream. +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidclose()  +
      voidwriteTag(Tag tag) + +
      Writes a tag.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        NBTOutputStream

        +
        public NBTOutputStream(java.io.OutputStream os)
        +                throws java.io.IOException
        +
        Creates a new NBTOutputStream, which will write data to + the + specified underlying output stream. +
        +
        +
        Parameters:
        +
        os - The output stream.
        +
        Throws:
        +
        java.io.IOException - if an I/O error occurs.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        writeTag

        +
        public void writeTag(Tag tag)
        +              throws java.io.IOException
        +
        Writes a tag.
        +
        +
        Parameters:
        +
        tag - The tag to write.
        +
        Throws:
        +
        java.io.IOException - if an I/O error occurs.
        +
        +
      • +
      + + + +
        +
      • +

        close

        +
        public void close()
        +           throws java.io.IOException
        +
        +
        Specified by:
        +
        close in interface java.io.Closeable
        +
        Specified by:
        +
        close in interface java.lang.AutoCloseable +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html new file mode 100644 index 000000000..0224f0c06 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html @@ -0,0 +1,348 @@ + + + + + + NBTUtils + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class NBTUtils

+
+
+ +
+
    +
  • +
    +
    +
    public final class NBTUtils
    +extends java.lang.Object
    +
    A class which contains NBT-related utility methods.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static <T extends Tag
      T
      +
      getChildTag(java.util.Map<java.lang.String,Tag> items, + java.lang.String key, + java.lang.Class<T> expected) + +
      Get child tag of a NBT structure.
      +
      static java.lang.Class<? extends Tag>getTypeClass(int type) + +
      Gets the class of a type of tag.
      +
      static intgetTypeCode(java.lang.Class<? + extends Tag> clazz) + +
      Gets the type code of a tag class.
      +
      static java.lang.StringgetTypeName(java.lang.Class<? + extends Tag> clazz) + +
      Gets the type name of a tag.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getTypeName

        +
        public static java.lang.String getTypeName(java.lang.Class<? extends Tag> clazz)
        +
        Gets the type name of a tag.
        +
        +
        Parameters:
        +
        clazz - the tag class
        +
        Returns:
        +
        The type name.
        +
        +
      • +
      + + + +
        +
      • +

        getTypeCode

        +
        public static int getTypeCode(java.lang.Class<? extends Tag> clazz)
        +
        Gets the type code of a tag class.
        +
        +
        Parameters:
        +
        clazz - the tag class
        +
        Returns:
        +
        The type code.
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if the tag class is invalid. +
        +
        +
      • +
      + + + +
        +
      • +

        getTypeClass

        +
        public static java.lang.Class<? extends Tag> getTypeClass(int type)
        +
        Gets the class of a type of tag.
        +
        +
        Parameters:
        +
        type - the type
        +
        Returns:
        +
        The class.
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if the tag type is invalid. +
        +
        +
      • +
      + + + +
        +
      • +

        getChildTag

        +
        public static <T extends Tag> T getChildTag(java.util.Map<java.lang.String,Tag> items,
        +                            java.lang.String key,
        +                            java.lang.Class<T> expected)
        +                                 throws java.lang.IllegalArgumentException
        +
        Get child tag of a NBT structure.
        +
        +
        Parameters:
        +
        items - the map to read from
        +
        key - the key to look for
        +
        expected - the expected NBT class type
        +
        Returns:
        +
        child tag
        +
        Throws:
        +
        InvalidFormatException
        +
        java.lang.IllegalArgumentException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html new file mode 100644 index 000000000..040b99148 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html @@ -0,0 +1,355 @@ + + + + + + ShortTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class ShortTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class ShortTag
    +extends Tag
    +
    The TAG_Short tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      ShortTag(short value) + +
      Creates the tag with an empty name.
      +
      ShortTag(java.lang.String name, + short value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ShortgetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ShortTag

        +
        public ShortTag(short value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        ShortTag

        +
        public ShortTag(java.lang.String name,
        +        short value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Short getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html new file mode 100644 index 000000000..4c6b3b315 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html @@ -0,0 +1,355 @@ + + + + + + StringTag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class StringTag

+
+
+ +
+
    +
  • +
    +
    +
    public final class StringTag
    +extends Tag
    +
    The TAG_String tag.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      StringTag(java.lang.String value) + +
      Creates the tag with an empty name.
      +
      StringTag(java.lang.String name, + java.lang.String value) + +
      Creates the tag.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetValue() + +
      Gets the value of this tag.
      +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        + getName +
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        StringTag

        +
        public StringTag(java.lang.String value)
        +
        Creates the tag with an empty name.
        +
        +
        Parameters:
        +
        value - the value of the tag
        +
        +
      • +
      + + + +
        +
      • +

        StringTag

        +
        public StringTag(java.lang.String name,
        +         java.lang.String value)
        +
        Creates the tag.
        +
        +
        Parameters:
        +
        name - the name of the tag
        +
        value - the value of the tag
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.String getValue()
        +
        Description copied from class: Tag +
        +
        Gets the value of this tag.
        +
        +
        Specified by:
        +
        getValue in + class Tag +
        +
        Returns:
        +
        the value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html new file mode 100644 index 000000000..de0e80f53 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html @@ -0,0 +1,288 @@ + + + + + + Tag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class Tag

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetName() + +
      Gets the name of this tag.
      +
      abstract java.lang.ObjectgetValue() + +
      Gets the value of this tag.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public final java.lang.String getName()
        +
        Gets the name of this tag.
        +
        +
        Returns:
        +
        the name of this tag
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public abstract java.lang.Object getValue()
        +
        Gets the value of this tag.
        +
        +
        Returns:
        +
        the value
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html new file mode 100644 index 000000000..d9117fb91 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html @@ -0,0 +1,284 @@ + + + + + + WorldEditUtils + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.jnbt
+

Class WorldEditUtils

+
+
+ +
+
    +
  • +
    +
    +
    public class WorldEditUtils
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      WorldEditUtils()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidsetNBT(org.bukkit.World world, + short id, + byte data, + int x, + int y, + int z, + CompoundTag tag)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        WorldEditUtils

        +
        public WorldEditUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setNBT

        +
        public static void setNBT(org.bukkit.World world,
        +          short id,
        +          byte data,
        +          int x,
        +          int y,
        +          int z,
        +          CompoundTag tag)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html new file mode 100644 index 000000000..3eed3fbcf --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html @@ -0,0 +1,51 @@ + + + + + + com.intellectualcrafters.jnbt + + + + +

com.intellectualcrafters.jnbt +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html new file mode 100644 index 000000000..2f5218938 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html @@ -0,0 +1,274 @@ + + + + + + com.intellectualcrafters.jnbt + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.jnbt

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html new file mode 100644 index 000000000..49bcf36be --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html @@ -0,0 +1,207 @@ + + + + + + com.intellectualcrafters.jnbt Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.jnbt

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/CDL.html b/PlotSquared/doc/com/intellectualcrafters/json/CDL.html new file mode 100644 index 000000000..33f242285 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/CDL.html @@ -0,0 +1,640 @@ + + + + + + CDL + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class CDL

+
+
+ +
+
    +
  • +
    +
    +
    public class CDL
    +extends java.lang.Object
    +
    This provides static methods to convert comma delimited text into a + JSONArray, and to covert a JSONArray into comma delimited text. Comma + delimited text is a very popular format for data interchange. It is + understood by most database, spreadsheet, and organizer programs. +

    + Each row of text represents a row in a table or a data record. Each row ends + with a NEWLINE character. Each row contains one or more values. Values are + separated by commas. A value can contain any character except for comma, + unless is is wrapped in single quotes or double quotes. +

    + The first row usually contains the names of the columns. +

    + A comma delimited list can be converted into a JSONArray of JSONObjects. The + names for the elements in the JSONObjects can be taken from the names in the + first row. +

    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      CDL()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static JSONArrayrowToJSONArray(JSONTokener x) + +
      Produce a JSONArray of strings from a row of comma delimited + values. +
      +
      static JSONObjectrowToJSONObject(JSONArray names, + JSONTokener x) + +
      Produce a JSONObject from a row of comma delimited text, using a + parallel JSONArray of strings to provides the names of the elements. +
      +
      static java.lang.StringrowToString(JSONArray ja) + +
      Produce a comma delimited text row from a JSONArray.
      +
      static JSONArraytoJSONArray(JSONArray names, + JSONTokener x) + +
      Produce a JSONArray of JSONObjects from a comma delimited text string + using a supplied JSONArray as the source of element names. +
      +
      static JSONArraytoJSONArray(JSONArray names, + java.lang.String string) + +
      Produce a JSONArray of JSONObjects from a comma delimited text string + using a supplied JSONArray as the source of element names. +
      +
      static JSONArraytoJSONArray(JSONTokener x) + +
      Produce a JSONArray of JSONObjects from a comma delimited text + string, + using the first row as a source of names. +
      +
      static JSONArraytoJSONArray(java.lang.String string) + +
      Produce a JSONArray of JSONObjects from a comma delimited text + string, + using the first row as a source of names. +
      +
      static java.lang.StringtoString(JSONArray ja) + +
      Produce a comma delimited text from a JSONArray of JSONObjects.
      +
      static java.lang.StringtoString(JSONArray names, + JSONArray ja) + +
      Produce a comma delimited text from a JSONArray of JSONObjects using + a provided list of names. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        CDL

        +
        public CDL()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        rowToJSONArray

        +
        public static JSONArray rowToJSONArray(JSONTokener x)
        +                                throws JSONException
        +
        Produce a JSONArray of strings from a row of comma delimited values. +
        +
        +
        Parameters:
        +
        x - A JSONTokener of the source text.
        +
        Returns:
        +
        A JSONArray of strings.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        rowToJSONObject

        +
        public static JSONObject rowToJSONObject(JSONArray names,
        +                         JSONTokener x)
        +                                  throws JSONException
        +
        Produce a JSONObject from a row of comma delimited text, using a + parallel JSONArray of strings to provides the names of the elements. +
        +
        +
        Parameters:
        +
        names - A JSONArray of names. This is commonly obtained from the + first row of a comma delimited text file using the + rowToJSONArray + method. +
        +
        x - A JSONTokener of the source text.
        +
        Returns:
        +
        A JSONObject combining the names and values.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        rowToString

        +
        public static java.lang.String rowToString(JSONArray ja)
        +
        Produce a comma delimited text row from a JSONArray. Values containing + the comma character will be quoted. Troublesome characters may be + removed. +
        +
        +
        Parameters:
        +
        ja - A JSONArray of strings.
        +
        Returns:
        +
        A string ending in NEWLINE.
        +
        +
      • +
      + + + +
        +
      • +

        toJSONArray

        +
        public static JSONArray toJSONArray(java.lang.String string)
        +                             throws JSONException
        +
        Produce a JSONArray of JSONObjects from a comma delimited text string, + using the first row as a source of names. +
        +
        +
        Parameters:
        +
        string - The comma delimited text.
        +
        Returns:
        +
        A JSONArray of JSONObjects.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toJSONArray

        +
        public static JSONArray toJSONArray(JSONTokener x)
        +                             throws JSONException
        +
        Produce a JSONArray of JSONObjects from a comma delimited text string, + using the first row as a source of names. +
        +
        +
        Parameters:
        +
        x - The JSONTokener containing the comma delimited text.
        +
        Returns:
        +
        A JSONArray of JSONObjects.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toJSONArray

        +
        public static JSONArray toJSONArray(JSONArray names,
        +                    java.lang.String string)
        +                             throws JSONException
        +
        Produce a JSONArray of JSONObjects from a comma delimited text string + using a supplied JSONArray as the source of element names. +
        +
        +
        Parameters:
        +
        names - A JSONArray of strings.
        +
        string - The comma delimited text.
        +
        Returns:
        +
        A JSONArray of JSONObjects.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toJSONArray

        +
        public static JSONArray toJSONArray(JSONArray names,
        +                    JSONTokener x)
        +                             throws JSONException
        +
        Produce a JSONArray of JSONObjects from a comma delimited text string + using a supplied JSONArray as the source of element names. +
        +
        +
        Parameters:
        +
        names - A JSONArray of strings.
        +
        x - A JSONTokener of the source text.
        +
        Returns:
        +
        A JSONArray of JSONObjects.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONArray ja)
        +                                 throws JSONException
        +
        Produce a comma delimited text from a JSONArray of JSONObjects. The + first row will be a list of names obtained by inspecting the first + JSONObject. +
        +
        +
        Parameters:
        +
        ja - A JSONArray of JSONObjects.
        +
        Returns:
        +
        A comma delimited text.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONArray names,
        +                        JSONArray ja)
        +                                 throws JSONException
        +
        Produce a comma delimited text from a JSONArray of JSONObjects using + a provided list of names. The list of names is not included in the + output. +
        +
        +
        Parameters:
        +
        names - A JSONArray of strings.
        +
        ja - A JSONArray of JSONObjects.
        +
        Returns:
        +
        A comma delimited text.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/Cookie.html b/PlotSquared/doc/com/intellectualcrafters/json/Cookie.html new file mode 100644 index 000000000..9548a2383 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/Cookie.html @@ -0,0 +1,413 @@ + + + + + + Cookie + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class Cookie

+
+
+ +
+
    +
  • +
    +
    +
    public class Cookie
    +extends java.lang.Object
    +
    Convert a web browser cookie specification to a JSONObject and back. + JSON and Cookies are both notations for name/value pairs. +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Cookie()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringescape(java.lang.String string) + +
      Produce a copy of a string in which the characters '+', '%', '=', ';' + and control characters are replaced with "%hh". +
      +
      static JSONObjecttoJSONObject(java.lang.String string) + +
      Convert a cookie specification string into a JSONObject.
      +
      static java.lang.StringtoString(JSONObject jo) + +
      Convert a JSONObject into a cookie specification string.
      +
      static java.lang.Stringunescape(java.lang.String string) + +
      Convert %hh sequences to single characters, and + convert plus to space. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Cookie

        +
        public Cookie()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        escape

        +
        public static java.lang.String escape(java.lang.String string)
        +
        Produce a copy of a string in which the characters '+', '%', '=', ';' + and control characters are replaced with "%hh". This is a gentle form + of URL encoding, attempting to cause as little distortion to the + string as possible. The characters '=' and ';' are meta characters in + cookies. By convention, they are escaped using the URL-encoding. This is + only a convention, not a standard. Often, cookies are expected to have + encoded values. We encode '=' and ';' because we must. We encode '%' and + '+' because they are meta characters in URL encoding. +
        +
        +
        Parameters:
        +
        string - The source string.
        +
        Returns:
        +
        The escaped result.
        +
        +
      • +
      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(java.lang.String string)
        +                               throws JSONException
        +
        Convert a cookie specification string into a JSONObject. The string + will contain a name value pair separated by '='. The name and the value + will be unescaped, possibly converting '+' and '%' sequences. The + cookie properties may follow, separated by ';', also represented as + name=value (except the secure property, which does not have a value). + The name will be stored under the key "name", and the value will be + stored under the key "value". This method does not do checking or + validation of the parameters. It only converts the cookie string into + a JSONObject. +
        +
        +
        Parameters:
        +
        string - The cookie specification string.
        +
        Returns:
        +
        A JSONObject containing "name", "value", and possibly other + members. +
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONObject jo)
        +                                 throws JSONException
        +
        Convert a JSONObject into a cookie specification string. The JSONObject + must contain "name" and "value" members. + If the JSONObject contains "expires", "domain", "path", or "secure" + members, they will be appended to the cookie specification string. + All other members are ignored. +
        +
        +
        Parameters:
        +
        jo - A JSONObject
        +
        Returns:
        +
        A cookie specification string
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        unescape

        +
        public static java.lang.String unescape(java.lang.String string)
        +
        Convert %hh sequences to single characters, and + convert plus to space. +
        +
        +
        Parameters:
        +
        string - A string that may contain + +   + (plus) + and %hh + sequences. +
        +
        Returns:
        +
        The unescaped string.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/CookieList.html b/PlotSquared/doc/com/intellectualcrafters/json/CookieList.html new file mode 100644 index 000000000..f86a86646 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/CookieList.html @@ -0,0 +1,340 @@ + + + + + + CookieList + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class CookieList

+
+
+ +
+
    +
  • +
    +
    +
    public class CookieList
    +extends java.lang.Object
    +
    Convert a web browser cookie list string to a JSONObject and back.
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      CookieList()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static JSONObjecttoJSONObject(java.lang.String string) + +
      Convert a cookie list into a JSONObject.
      +
      static java.lang.StringtoString(JSONObject jo) + +
      Convert a JSONObject into a cookie list.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        CookieList

        +
        public CookieList()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(java.lang.String string)
        +                               throws JSONException
        +
        Convert a cookie list into a JSONObject. A cookie list is a sequence + of name/value pairs. The names are separated from the values by '='. + The pairs are separated by ';'. The names and the values + will be unescaped, possibly converting '+' and '%' sequences. +

        + To add a cookie to a cooklist, + cookielistJSONObject.put(cookieJSONObject.getString("name"), + cookieJSONObject.getString("value")); +

        +
        +
        Parameters:
        +
        string - A cookie list string
        +
        Returns:
        +
        A JSONObject
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONObject jo)
        +                                 throws JSONException
        +
        Convert a JSONObject into a cookie list. A cookie list is a sequence + of name/value pairs. The names are separated from the values by '='. + The pairs are separated by ';'. The characters '%', '+', '=', and ';' + in the names and values are replaced by "%hh". +
        +
        +
        Parameters:
        +
        jo - A JSONObject
        +
        Returns:
        +
        A cookie list string
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/HTTP.html b/PlotSquared/doc/com/intellectualcrafters/json/HTTP.html new file mode 100644 index 000000000..086a595ce --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/HTTP.html @@ -0,0 +1,445 @@ + + + + + + HTTP + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class HTTP

+
+
+ +
+
    +
  • +
    +
    +
    public class HTTP
    +extends java.lang.Object
    +
    Convert an HTTP header to a JSONObject and back.
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringCRLF + +
      Carriage return/line feed.
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      HTTP()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static JSONObjecttoJSONObject(java.lang.String string) + +
      Convert an HTTP header string into a JSONObject.
      +
      static java.lang.StringtoString(JSONObject jo) + +
      Convert a JSONObject into an HTTP header.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        CRLF

        +
        public static final java.lang.String CRLF
        +
        Carriage return/line feed.
        +
        +
        See Also:
        +
        Constant + Field Values
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        HTTP

        +
        public HTTP()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(java.lang.String string)
        +                               throws JSONException
        +
        Convert an HTTP header string into a JSONObject. It can be a request + header or a response header. A request header will contain +

        +

        + {
        +    Method: "POST" (for example),
        +    "Request-URI": "/" (for example),
        +    "HTTP-Version": "HTTP/1.1" (for example)
        + }
        + 
        +

        + A response header will contain +

        +

        + {
        +    "HTTP-Version": "HTTP/1.1" (for example),
        +    "Status-Code": "200" (for example),
        +    "Reason-Phrase": "OK" (for example)
        + }
        + 
        +

        + In addition, the other parameters in the header will be captured, using + the HTTP field names as JSON names, so that +

        +

        +    Date: Sun, 26 May 2002 18:06:04 GMT
        +    Cookie: Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s
        +    Cache-Control: no-cache
        + 
        +

        + become +

        +

        + {...
        +    Date: "Sun, 26 May 2002 18:06:04 GMT",
        +    Cookie: "Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s",
        +    "Cache-Control": "no-cache",
        + ...}
        + 
        +

        + It does no further checking or conversion. It does not parse dates. + It does not do '%' transforms on URLs. +

        +
        +
        Parameters:
        +
        string - An HTTP header string.
        +
        Returns:
        +
        A JSONObject containing the elements and attributes + of the XML string. +
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONObject jo)
        +                                 throws JSONException
        +
        Convert a JSONObject into an HTTP header. A request header must contain +

        +

        + {
        +    Method: "POST" (for example),
        +    "Request-URI": "/" (for example),
        +    "HTTP-Version": "HTTP/1.1" (for example)
        + }
        + 
        +

        + A response header must contain +

        +

        + {
        +    "HTTP-Version": "HTTP/1.1" (for example),
        +    "Status-Code": "200" (for example),
        +    "Reason-Phrase": "OK" (for example)
        + }
        + 
        +

        + Any other members of the JSONObject will be output as HTTP fields. + The result will end with two CRLF pairs. +

        +
        +
        Parameters:
        +
        jo - A JSONObject
        +
        Returns:
        +
        An HTTP header string.
        +
        Throws:
        +
        JSONException - + if the object does not contain enough + information. +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html b/PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html new file mode 100644 index 000000000..c962a10cc --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html @@ -0,0 +1,333 @@ + + + + + + HTTPTokener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class HTTPTokener

+
+
+ +
+
    +
  • +
    +
    +
    public class HTTPTokener
    +extends JSONTokener
    +
    The HTTPTokener extends the JSONTokener to provide additional methods + for the parsing of HTTP headers. +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      HTTPTokener(java.lang.String string) + +
      Construct an HTTPTokener from a string.
      +
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        HTTPTokener

        +
        public HTTPTokener(java.lang.String string)
        +
        Construct an HTTPTokener from a string.
        +
        +
        Parameters:
        +
        string - A source string.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        nextToken

        +
        public java.lang.String nextToken()
        +                           throws JSONException
        +
        Get the next token or string. This is used in parsing HTTP headers. +
        +
        +
        Returns:
        +
        A String.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html new file mode 100644 index 000000000..e79cc84d5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html @@ -0,0 +1,1795 @@ + + + + + + JSONArray + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONArray

+
+
+ +
+
    +
  • +
    +
    +
    public class JSONArray
    +extends java.lang.Object
    +
    A JSONArray is an ordered sequence of values. Its external text form is a + string wrapped in square brackets with commas separating the values. The + internal form is an object having get and opt + methods for accessing the values by index, and put methods for + adding or replacing values. The values can be any of these types: + Boolean, JSONArray, JSONObject, + Number, String, or the + JSONObject.NULL object. +

    + The constructor can convert a JSON text into a Java object. The + toString method converts to JSON text. +

    + A get method returns a value if one can be found, and throws an + exception if one cannot be found. An opt method returns a + default value instead of throwing an exception, and so is useful for + obtaining optional values. +

    + The generic get() and opt() methods return an + object which you can cast or query for type. There are also typed + get and opt methods that do type checking and type + coercion for you. +

    + The texts produced by the toString methods strictly conform to + JSON syntax rules. The constructors are more forgiving in the texts they will + accept: +

      +
    • An extra ,  + (comma) + may appear just + before the closing bracket. +
    • +
    • The null value will be inserted when there is , +   + (comma) + elision. +
    • +
    • Strings may be quoted with '  + (single + quote) + + . +
    • +
    • Strings do not need to be quoted at all if they do not begin with a quote + or single quote, and if they do not contain leading or trailing spaces, and + if they do not contain any of these characters: + { } [ ] / \ : , # and if they do not look like numbers and if + they are not the reserved words true, false, or + null. +
    • +
    +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONArray() + +
      Construct an empty JSONArray.
      +
      JSONArray(java.util.Collection<java.lang.Object> collection) + +
      Construct a JSONArray from a Collection.
      +
      JSONArray(JSONTokener x) + +
      Construct a JSONArray from a JSONTokener.
      +
      JSONArray(java.lang.Object array) + +
      Construct a JSONArray from an array
      +
      JSONArray(java.lang.String source) + +
      Construct a JSONArray from a source JSON text.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectget(int index) + +
      Get the object value associated with an index.
      +
      booleangetBoolean(int index) + +
      Get the boolean value associated with an index.
      +
      doublegetDouble(int index) + +
      Get the double value associated with an index.
      +
      intgetInt(int index) + +
      Get the int value associated with an index.
      +
      JSONArraygetJSONArray(int index) + +
      Get the JSONArray associated with an index.
      +
      JSONObjectgetJSONObject(int index) + +
      Get the JSONObject associated with an index.
      +
      longgetLong(int index) + +
      Get the long value associated with an index.
      +
      java.lang.StringgetString(int index) + +
      Get the string associated with an index.
      +
      booleanisNull(int index) + +
      Determine if the value is null.
      +
      java.lang.Stringjoin(java.lang.String separator) + +
      Make a string from the contents of this JSONArray.
      +
      intlength() + +
      Get the number of elements in the JSONArray, included nulls.
      +
      java.lang.Objectopt(int index) + +
      Get the optional object value associated with an index.
      +
      booleanoptBoolean(int index) + +
      Get the optional boolean value associated with an index.
      +
      booleanoptBoolean(int index, + boolean defaultValue) + +
      Get the optional boolean value associated with an index.
      +
      doubleoptDouble(int index) + +
      Get the optional double value associated with an index.
      +
      doubleoptDouble(int index, + double defaultValue) + +
      Get the optional double value associated with an index.
      +
      intoptInt(int index) + +
      Get the optional int value associated with an index.
      +
      intoptInt(int index, + int defaultValue) + +
      Get the optional int value associated with an index.
      +
      JSONArrayoptJSONArray(int index) + +
      Get the optional JSONArray associated with an index.
      +
      JSONObjectoptJSONObject(int index) + +
      Get the optional JSONObject associated with an index.
      +
      longoptLong(int index) + +
      Get the optional long value associated with an index.
      +
      longoptLong(int index, + long defaultValue) + +
      Get the optional long value associated with an index.
      +
      java.lang.StringoptString(int index) + +
      Get the optional string value associated with an index.
      +
      java.lang.StringoptString(int index, + java.lang.String defaultValue) + +
      Get the optional string associated with an index.
      +
      JSONArrayput(boolean value) + +
      Append a boolean value.
      +
      JSONArrayput(java.util.Collection<java.lang.Object> value) + +
      Put a value in the JSONArray, where the value will be a JSONArray which + is produced from a Collection. +
      +
      JSONArrayput(double value) + +
      Append a double value.
      +
      JSONArrayput(int value) + +
      Append an int value.
      +
      JSONArrayput(int index, + boolean value) + +
      Put or replace a boolean value in the JSONArray.
      +
      JSONArrayput(int index, + java.util.Collection<java.lang.Object> value) + +
      Put a value in the JSONArray, where the value will be a JSONArray which + is produced from a Collection. +
      +
      JSONArrayput(int index, + double value) + +
      Put or replace a double value.
      +
      JSONArrayput(int index, + int value) + +
      Put or replace an int value.
      +
      JSONArrayput(int index, + long value) + +
      Put or replace a long value.
      +
      JSONArrayput(int index, + java.util.Map<java.lang.String,java.lang.Object> value) + +
      Put a value in the JSONArray, where the value will be a JSONObject that + is produced from a Map. +
      +
      JSONArrayput(int index, + java.lang.Object value) + +
      Put or replace an object value in the JSONArray.
      +
      JSONArrayput(long value) + +
      Append an long value.
      +
      JSONArrayput(java.util.Map<java.lang.String,java.lang.Object> value) + +
      Put a value in the JSONArray, where the value will be a JSONObject which + is produced from a Map. +
      +
      JSONArrayput(java.lang.Object value) + +
      Append an object value.
      +
      java.lang.Objectremove(int index) + +
      Remove an index and close the hole.
      +
      booleansimilar(java.lang.Object other) + +
      Determine if two JSONArrays are similar.
      +
      JSONObjecttoJSONObject(JSONArray names) + +
      Produce a JSONObject by combining a JSONArray of names with the values of + this JSONArray. +
      +
      java.lang.StringtoString() + +
      Make a JSON text of this JSONArray.
      +
      java.lang.StringtoString(int indentFactor) + +
      Make a prettyprinted JSON text of this JSONArray.
      +
      java.io.Writerwrite(java.io.Writer writer) + +
      Write the contents of the JSONArray as JSON text to a writer.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONArray

        +
        public JSONArray()
        +
        Construct an empty JSONArray.
        +
      • +
      + + + +
        +
      • +

        JSONArray

        +
        public JSONArray(JSONTokener x)
        +          throws JSONException
        +
        Construct a JSONArray from a JSONTokener.
        +
        +
        Parameters:
        +
        x - A JSONTokener
        +
        Throws:
        +
        JSONException - If there is a + syntax error. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONArray

        +
        public JSONArray(java.lang.String source)
        +          throws JSONException
        +
        Construct a JSONArray from a source JSON text.
        +
        +
        Parameters:
        +
        source - A string that begins with [  + (left + bracket) + + and ends with ] +   + (right bracket) + . +
        +
        Throws:
        +
        JSONException - If there is a + syntax error. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONArray

        +
        public JSONArray(java.util.Collection<java.lang.Object> collection)
        +
        Construct a JSONArray from a Collection.
        +
        +
        Parameters:
        +
        collection - A Collection.
        +
        +
      • +
      + + + +
        +
      • +

        JSONArray

        +
        public JSONArray(java.lang.Object array)
        +          throws JSONException
        +
        Construct a JSONArray from an array
        +
        +
        Throws:
        +
        JSONException - If not an + array. +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        get

        +
        public java.lang.Object get(int index)
        +                     throws JSONException
        +
        Get the object value associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        An object value.
        +
        Throws:
        +
        JSONException - If there is no value + for the index. +
        +
        +
      • +
      + + + +
        +
      • +

        getBoolean

        +
        public boolean getBoolean(int index)
        +                   throws JSONException
        +
        Get the boolean value associated with an index. The string values "true" + and "false" are converted to boolean. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The truth.
        +
        Throws:
        +
        JSONException - If there is no value + for the index or if the value is not + convertible to boolean. +
        +
        +
      • +
      + + + +
        +
      • +

        getDouble

        +
        public double getDouble(int index)
        +                 throws JSONException
        +
        Get the double value associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The value.
        +
        Throws:
        +
        JSONException - If the key is not + found or if the value cannot be converted + to a number. +
        +
        +
      • +
      + + + +
        +
      • +

        getInt

        +
        public int getInt(int index)
        +           throws JSONException
        +
        Get the int value associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The value.
        +
        Throws:
        +
        JSONException - If the key is not + found or if the value is not a number. +
        +
        +
      • +
      + + + +
        +
      • +

        getJSONArray

        +
        public JSONArray getJSONArray(int index)
        +                       throws JSONException
        +
        Get the JSONArray associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        A JSONArray value.
        +
        Throws:
        +
        JSONException - If there is no value + for the index. or if the value is not a + JSONArray +
        +
        +
      • +
      + + + +
        +
      • +

        getJSONObject

        +
        public JSONObject getJSONObject(int index)
        +                         throws JSONException
        +
        Get the JSONObject associated with an index.
        +
        +
        Parameters:
        +
        index - subscript
        +
        Returns:
        +
        A JSONObject value.
        +
        Throws:
        +
        JSONException - If there is no value + for the index or if the value is not a + JSONObject +
        +
        +
      • +
      + + + +
        +
      • +

        getLong

        +
        public long getLong(int index)
        +             throws JSONException
        +
        Get the long value associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The value.
        +
        Throws:
        +
        JSONException - If the key is not + found or if the value cannot be converted + to a number. +
        +
        +
      • +
      + + + +
        +
      • +

        getString

        +
        public java.lang.String getString(int index)
        +                           throws JSONException
        +
        Get the string associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        A string value.
        +
        Throws:
        +
        JSONException - If there is no string + value for the index. +
        +
        +
      • +
      + + + +
        +
      • +

        isNull

        +
        public boolean isNull(int index)
        +
        Determine if the value is null.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        true if the value at the index is null, or if there is no value.
        +
        +
      • +
      + + + +
        +
      • +

        join

        +
        public java.lang.String join(java.lang.String separator)
        +                      throws JSONException
        +
        Make a string from the contents of this JSONArray. The + separator string is inserted between each element. Warning: + This method assumes that the data structure is acyclical. +
        +
        +
        Parameters:
        +
        separator - A string that will be inserted between the elements.
        +
        Returns:
        +
        a string.
        +
        Throws:
        +
        JSONException - If the array contains + an invalid number. +
        +
        +
      • +
      + + + +
        +
      • +

        length

        +
        public int length()
        +
        Get the number of elements in the JSONArray, included nulls.
        +
        +
        Returns:
        +
        The length (or size).
        +
        +
      • +
      + + + +
        +
      • +

        opt

        +
        public java.lang.Object opt(int index)
        +
        Get the optional object value associated with an index.
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        An object value, or null if there is no object at that index.
        +
        +
      • +
      + + + +
        +
      • +

        optBoolean

        +
        public boolean optBoolean(int index)
        +
        Get the optional boolean value associated with an index. It returns false + if there is no value at that index, or if the value is not Boolean.TRUE + or the String "true". +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The truth.
        +
        +
      • +
      + + + +
        +
      • +

        optBoolean

        +
        public boolean optBoolean(int index,
        +                 boolean defaultValue)
        +
        Get the optional boolean value associated with an index. It returns the + defaultValue if there is no value at that index or if it is not a Boolean + or the String "true" or "false" (case insensitive). +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        defaultValue - A boolean default.
        +
        Returns:
        +
        The truth.
        +
        +
      • +
      + + + +
        +
      • +

        optDouble

        +
        public double optDouble(int index)
        +
        Get the optional double value associated with an index. NaN is returned + if there is no value for the index, or if the value is not a number and + cannot be converted to a number. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The value.
        +
        +
      • +
      + + + +
        +
      • +

        optDouble

        +
        public double optDouble(int index,
        +               double defaultValue)
        +
        Get the optional double value associated with an index. The defaultValue + is returned if there is no value for the index, or if the value is not a + number and cannot be converted to a number. +
        +
        +
        Parameters:
        +
        index - subscript
        +
        defaultValue - The default value.
        +
        Returns:
        +
        The value.
        +
        +
      • +
      + + + +
        +
      • +

        optInt

        +
        public int optInt(int index)
        +
        Get the optional int value associated with an index. Zero is returned if + there is no value for the index, or if the value is not a number and + cannot be converted to a number. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The value.
        +
        +
      • +
      + + + +
        +
      • +

        optInt

        +
        public int optInt(int index,
        +         int defaultValue)
        +
        Get the optional int value associated with an index. The defaultValue is + returned if there is no value for the index, or if the value is not a + number and cannot be converted to a number. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        defaultValue - The default value.
        +
        Returns:
        +
        The value.
        +
        +
      • +
      + + + +
        +
      • +

        optJSONArray

        +
        public JSONArray optJSONArray(int index)
        +
        Get the optional JSONArray associated with an index.
        +
        +
        Parameters:
        +
        index - subscript
        +
        Returns:
        +
        A JSONArray value, or null if the index has no value, or if the + value is not a JSONArray. +
        +
        +
      • +
      + + + +
        +
      • +

        optJSONObject

        +
        public JSONObject optJSONObject(int index)
        +
        Get the optional JSONObject associated with an index. Null is returned if + the key is not found, or null if the index has no value, or if the value + is not a JSONObject. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        A JSONObject value.
        +
        +
      • +
      + + + +
        +
      • +

        optLong

        +
        public long optLong(int index)
        +
        Get the optional long value associated with an index. Zero is returned if + there is no value for the index, or if the value is not a number and + cannot be converted to a number. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        The value.
        +
        +
      • +
      + + + +
        +
      • +

        optLong

        +
        public long optLong(int index,
        +           long defaultValue)
        +
        Get the optional long value associated with an index. The defaultValue is + returned if there is no value for the index, or if the value is not a + number and cannot be converted to a number. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        defaultValue - The default value.
        +
        Returns:
        +
        The value.
        +
        +
      • +
      + + + +
        +
      • +

        optString

        +
        public java.lang.String optString(int index)
        +
        Get the optional string value associated with an index. It returns an + empty string if there is no value at that index. If the value is not a + string and is not null, then it is coverted to a string. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        Returns:
        +
        A String value.
        +
        +
      • +
      + + + +
        +
      • +

        optString

        +
        public java.lang.String optString(int index,
        +                         java.lang.String defaultValue)
        +
        Get the optional string associated with an index. The defaultValue is + returned if the key is not found. +
        +
        +
        Parameters:
        +
        index - The index must be between 0 and length() - 1.
        +
        defaultValue - The default value.
        +
        Returns:
        +
        A String value.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(boolean value)
        +
        Append a boolean value. This increases the array's length by one.
        +
        +
        Parameters:
        +
        value - A boolean value.
        +
        Returns:
        +
        this.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(java.util.Collection<java.lang.Object> value)
        +
        Put a value in the JSONArray, where the value will be a JSONArray which + is produced from a Collection. +
        +
        +
        Parameters:
        +
        value - A Collection value.
        +
        Returns:
        +
        this.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(double value)
        +              throws JSONException
        +
        Append a double value. This increases the array's length by one.
        +
        +
        Parameters:
        +
        value - A double value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - if the value is not + finite. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int value)
        +
        Append an int value. This increases the array's length by one.
        +
        +
        Parameters:
        +
        value - An int value.
        +
        Returns:
        +
        this.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(long value)
        +
        Append an long value. This increases the array's length by one.
        +
        +
        Parameters:
        +
        value - A long value.
        +
        Returns:
        +
        this.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(java.util.Map<java.lang.String,java.lang.Object> value)
        +
        Put a value in the JSONArray, where the value will be a JSONObject which + is produced from a Map. +
        +
        +
        Parameters:
        +
        value - A Map value.
        +
        Returns:
        +
        this.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(java.lang.Object value)
        +
        Append an object value. This increases the array's length by one.
        +
        +
        Parameters:
        +
        value - An object value. The value should be a Boolean, Double, + Integer, JSONArray, JSONObject, Long, or String, or the + JSONObject.NULL object. +
        +
        Returns:
        +
        this.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            boolean value)
        +              throws JSONException
        +
        Put or replace a boolean value in the JSONArray. If the index is greater + than the length of the JSONArray, then null elements will be added as + necessary to pad it out. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - A boolean value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            java.util.Collection<java.lang.Object> value)
        +              throws JSONException
        +
        Put a value in the JSONArray, where the value will be a JSONArray which + is produced from a Collection. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - A Collection value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative or if the value is not finite. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            double value)
        +              throws JSONException
        +
        Put or replace a double value. If the index is greater than the length of + the JSONArray, then null elements will be added as necessary to pad it + out. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - A double value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative or if the value is not finite. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            int value)
        +              throws JSONException
        +
        Put or replace an int value. If the index is greater than the length of + the JSONArray, then null elements will be added as necessary to pad it + out. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - An int value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            long value)
        +              throws JSONException
        +
        Put or replace a long value. If the index is greater than the length of + the JSONArray, then null elements will be added as necessary to pad it + out. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - A long value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            java.util.Map<java.lang.String,java.lang.Object> value)
        +              throws JSONException
        +
        Put a value in the JSONArray, where the value will be a JSONObject that + is produced from a Map. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - The Map value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative or if the the value is an invalid + number. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONArray put(int index,
        +            java.lang.Object value)
        +              throws JSONException
        +
        Put or replace an object value in the JSONArray. If the index is greater + than the length of the JSONArray, then null elements will be added as + necessary to pad it out. +
        +
        +
        Parameters:
        +
        index - The subscript.
        +
        value - The value to put into the array. The value should be a + Boolean, Double, Integer, JSONArray, JSONObject, Long, or + String, or the JSONObject.NULL object. +
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the index is + negative or if the the value is an invalid + number. +
        +
        +
      • +
      + + + +
        +
      • +

        remove

        +
        public java.lang.Object remove(int index)
        +
        Remove an index and close the hole.
        +
        +
        Parameters:
        +
        index - The index of the element to be removed.
        +
        Returns:
        +
        The value that was associated with the index, or null if there + was no value. +
        +
        +
      • +
      + + + +
        +
      • +

        similar

        +
        public boolean similar(java.lang.Object other)
        +
        Determine if two JSONArrays are similar. + They must contain similar sequences. +
        +
        +
        Parameters:
        +
        other - The other JSONArray
        +
        Returns:
        +
        true if they are equal
        +
        +
      • +
      + + + +
        +
      • +

        toJSONObject

        +
        public JSONObject toJSONObject(JSONArray names)
        +                        throws JSONException
        +
        Produce a JSONObject by combining a JSONArray of names with the values of + this JSONArray. +
        +
        +
        Parameters:
        +
        names - A JSONArray containing a list of key strings. These will be + paired with the values. +
        +
        Returns:
        +
        A JSONObject, or null if there are no names or if this JSONArray + has no values. +
        +
        Throws:
        +
        JSONException - If any of the names + are null. +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        Make a JSON text of this JSONArray. For compactness, no unnecessary + whitespace is added. If it is not possible to produce a syntactically + correct JSON text then null will be returned instead. This could occur if + the array contains an invalid number. +

        + Warning: This method assumes that the data structure is acyclical. +

        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        Returns:
        +
        a printable, displayable, transmittable representation of the + array. +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString(int indentFactor)
        +                          throws JSONException
        +
        Make a prettyprinted JSON text of this JSONArray. Warning: This method + assumes that the data structure is acyclical. +
        +
        +
        Parameters:
        +
        indentFactor - The number of spaces to add to each level of indentation.
        +
        Returns:
        +
        a printable, displayable, transmittable representation of the + object, beginning with [  + (left + bracket) + + and ending with ] +   + (right bracket) + . +
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        write

        +
        public java.io.Writer write(java.io.Writer writer)
        +                     throws JSONException
        +
        Write the contents of the JSONArray as JSON text to a writer. For + compactness, no whitespace is added. +

        + Warning: This method assumes that the data structure is acyclical. +

        +
        +
        Returns:
        +
        The writer.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONException.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONException.html new file mode 100644 index 000000000..43ad71d21 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONException.html @@ -0,0 +1,354 @@ + + + + + + JSONException + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    +
    public class JSONException
    +extends java.lang.RuntimeException
    +
    The JSONException is thrown by the JSON.org classes when things are amiss.
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    See Also:
    +
    Serialized + Form
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONException(java.lang.String message) + +
      Constructs a JSONException with an explanatory message.
      +
      JSONException(java.lang.Throwable cause) + +
      Constructs a new JSONException with the specified cause.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ThrowablegetCause() + +
      Returns the cause of this exception or null if the cause is + nonexistent + or unknown. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Throwable

        + addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, + getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, + setStackTrace, toString
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONException

        +
        public JSONException(java.lang.String message)
        +
        Constructs a JSONException with an explanatory message.
        +
        +
        Parameters:
        +
        message - Detail about the reason for the exception.
        +
        +
      • +
      + + + +
        +
      • +

        JSONException

        +
        public JSONException(java.lang.Throwable cause)
        +
        Constructs a new JSONException with the specified cause.
        +
        +
        Parameters:
        +
        cause - The cause.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getCause

        +
        public java.lang.Throwable getCause()
        +
        Returns the cause of this exception or null if the cause is + nonexistent + or unknown. +
        +
        +
        Overrides:
        +
        getCause in class java.lang.Throwable
        +
        Returns:
        +
        the cause of this exception or null if the cause is nonexistent + or unknown. +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONML.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONML.html new file mode 100644 index 000000000..7ecefb4e7 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONML.html @@ -0,0 +1,516 @@ + + + + + + JSONML + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONML

+
+
+ +
+
    +
  • +
    +
    +
    public class JSONML
    +extends java.lang.Object
    +
    This provides static methods to convert an XML text into a JSONArray or + JSONObject, and to covert a JSONArray or JSONObject into an XML text using + the JsonML transform. +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONML()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static JSONArraytoJSONArray(java.lang.String string) + +
      Convert a well-formed (but not necessarily valid) XML string into a + JSONArray using the JsonML transform. +
      +
      static JSONArraytoJSONArray(XMLTokener x) + +
      Convert a well-formed (but not necessarily valid) XML string into a + JSONArray using the JsonML transform. +
      +
      static JSONObjecttoJSONObject(java.lang.String string) + +
      Convert a well-formed (but not necessarily valid) XML string into a + JSONObject using the JsonML transform. +
      +
      static JSONObjecttoJSONObject(XMLTokener x) + +
      Convert a well-formed (but not necessarily valid) XML string into a + JSONObject using the JsonML transform. +
      +
      static java.lang.StringtoString(JSONArray ja) + +
      Reverse the JSONML transformation, making an XML text from a + JSONArray. +
      +
      static java.lang.StringtoString(JSONObject jo) + +
      Reverse the JSONML transformation, making an XML text from a + JSONObject. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONML

        +
        public JSONML()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toJSONArray

        +
        public static JSONArray toJSONArray(java.lang.String string)
        +                             throws JSONException
        +
        Convert a well-formed (but not necessarily valid) XML string into a + JSONArray using the JsonML transform. Each XML tag is represented as + a JSONArray in which the first element is the tag name. If the tag has + attributes, then the second element will be JSONObject containing the + name/value pairs. If the tag contains children, then strings and + JSONArrays will represent the child tags. + Comments, prologs, DTDs, and <[ [ ]]> are ignored. +
        +
        +
        Parameters:
        +
        string - The source string.
        +
        Returns:
        +
        A JSONArray containing the structured data from the XML string.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toJSONArray

        +
        public static JSONArray toJSONArray(XMLTokener x)
        +                             throws JSONException
        +
        Convert a well-formed (but not necessarily valid) XML string into a + JSONArray using the JsonML transform. Each XML tag is represented as + a JSONArray in which the first element is the tag name. If the tag has + attributes, then the second element will be JSONObject containing the + name/value pairs. If the tag contains children, then strings and + JSONArrays will represent the child content and tags. + Comments, prologs, DTDs, and <[ [ ]]> are ignored. +
        +
        +
        Parameters:
        +
        x - An XMLTokener.
        +
        Returns:
        +
        A JSONArray containing the structured data from the XML string.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(XMLTokener x)
        +                               throws JSONException
        +
        Convert a well-formed (but not necessarily valid) XML string into a + JSONObject using the JsonML transform. Each XML tag is represented as + a JSONObject with a "tagName" property. If the tag has attributes, then + the attributes will be in the JSONObject as properties. If the tag + contains children, the object will have a "childNodes" property which + will be an array of strings and JsonML JSONObjects. +

        + Comments, prologs, DTDs, and <[ [ ]]> are ignored. +

        +
        +
        Parameters:
        +
        x - An XMLTokener of the XML source text.
        +
        Returns:
        +
        A JSONObject containing the structured data from the XML string.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(java.lang.String string)
        +                               throws JSONException
        +
        Convert a well-formed (but not necessarily valid) XML string into a + JSONObject using the JsonML transform. Each XML tag is represented as + a JSONObject with a "tagName" property. If the tag has attributes, then + the attributes will be in the JSONObject as properties. If the tag + contains children, the object will have a "childNodes" property which + will be an array of strings and JsonML JSONObjects. +

        + Comments, prologs, DTDs, and <[ [ ]]> are ignored. +

        +
        +
        Parameters:
        +
        string - The XML source text.
        +
        Returns:
        +
        A JSONObject containing the structured data from the XML string.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONArray ja)
        +                                 throws JSONException
        +
        Reverse the JSONML transformation, making an XML text from a JSONArray. +
        +
        +
        Parameters:
        +
        ja - A JSONArray.
        +
        Returns:
        +
        An XML string.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(JSONObject jo)
        +                                 throws JSONException
        +
        Reverse the JSONML transformation, making an XML text from a JSONObject. + The JSONObject must contain a "tagName" property. If it has children, + then it must have a "childNodes" property containing an array of objects. + The other properties are attributes with string values. +
        +
        +
        Parameters:
        +
        jo - A JSONObject.
        +
        Returns:
        +
        An XML string.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html new file mode 100644 index 000000000..d35abc6b8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html @@ -0,0 +1,2356 @@ + + + + + + JSONObject + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONObject

+
+
+ +
+
    +
  • +
    +
    +
    public class JSONObject
    +extends java.lang.Object
    +
    A JSONObject is an unordered collection of name/value pairs. Its external + form is a string wrapped in curly braces with colons between the names and + values, and commas between the values and names. The internal form is an + object having get and opt methods for accessing + the values by name, and put methods for adding or replacing + values by name. The values can be any of these types: Boolean, + JSONArray, JSONObject, Number, + String, or the JSONObject.NULL object. A + JSONObject constructor can be used to convert an external form JSON text + into an internal form whose values can be retrieved with the get + and opt methods, or to convert values into a + JSON text using the put and toString methods. A + get method returns a value if one can be found, and throws an + exception if one cannot be found. An opt method returns a + default value instead of throwing an exception, and so is useful for + obtaining optional values. +

    + The generic get() and opt() methods return an + object, which you can cast or query for type. There are also typed + get and opt methods that do type checking and type + coercion for you. The opt methods differ from the get methods in that they do + not throw. Instead, they return a specified value, such as null. +

    + The put methods add or replace values in an object. For example, +

    +

    + myString = new JSONObject().put("JSON", "Hello, World!").toString();
    + 
    +

    + produces the string {"JSON": "Hello, World"}. +

    + The texts produced by the toString methods strictly conform to + the JSON syntax rules. The constructors are more forgiving in the texts they + will accept: +

      +
    • An extra ,  + (comma) + may appear just + before the closing brace. +
    • +
    • Strings may be quoted with '  + (single + quote) + + . +
    • +
    • Strings do not need to be quoted at all if they do not begin with a quote + or single quote, and if they do not contain leading or trailing spaces, and + if they do not contain any of these characters: + { } [ ] / \ : , # and if they do not look like numbers and if + they are not the reserved words true, false, or + null. +
    • +
    +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.ObjectNULL + +
      It is sometimes more convenient and less ambiguous to have a + NULL object than to use Java's null value. +
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONObject() + +
      Construct an empty JSONObject.
      +
      JSONObject(JSONObject jo, + java.lang.String[] names) + +
      Construct a JSONObject from a subset of another JSONObject.
      +
      JSONObject(JSONTokener x) + +
      Construct a JSONObject from a JSONTokener.
      +
      JSONObject(java.util.Map<java.lang.String,java.lang.Object> map) + +
      Construct a JSONObject from a Map.
      +
      JSONObject(java.lang.Object bean) + +
      Construct a JSONObject from an Object using bean getters.
      +
      JSONObject(java.lang.Object object, + java.lang.String[] names) + +
      Construct a JSONObject from an Object, using reflection to find the + public members. +
      +
      JSONObject(java.lang.String source) + +
      Construct a JSONObject from a source JSON text string.
      +
      JSONObject(java.lang.String baseName, + java.util.Locale locale) + +
      Construct a JSONObject from a ResourceBundle.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      JSONObjectaccumulate(java.lang.String key, + java.lang.Object value) + +
      Accumulate values under a key.
      +
      JSONObjectappend(java.lang.String key, + java.lang.Object value) + +
      Append values to the array under a key.
      +
      static java.lang.StringdoubleToString(double d) + +
      Produce a string from a double.
      +
      java.lang.Objectget(java.lang.String key) + +
      Get the value object associated with a key.
      +
      booleangetBoolean(java.lang.String key) + +
      Get the boolean value associated with a key.
      +
      doublegetDouble(java.lang.String key) + +
      Get the double value associated with a key.
      +
      intgetInt(java.lang.String key) + +
      Get the int value associated with a key.
      +
      JSONArraygetJSONArray(java.lang.String key) + +
      Get the JSONArray value associated with a key.
      +
      JSONObjectgetJSONObject(java.lang.String key) + +
      Get the JSONObject value associated with a key.
      +
      longgetLong(java.lang.String key) + +
      Get the long value associated with a key.
      +
      static java.lang.String[]getNames(JSONObject jo) + +
      Get an array of field names from a JSONObject.
      +
      static java.lang.String[]getNames(java.lang.Object object) + +
      Get an array of field names from an Object.
      +
      java.lang.StringgetString(java.lang.String key) + +
      Get the string associated with a key.
      +
      booleanhas(java.lang.String key) + +
      Determine if the JSONObject contains a specific key.
      +
      JSONObjectincrement(java.lang.String key) + +
      Increment a property of a JSONObject.
      +
      booleanisNull(java.lang.String key) + +
      Determine if the value associated with the key is null or if there is no + value. +
      +
      java.util.Iterator<java.lang.String>keys() + +
      Get an enumeration of the keys of the JSONObject.
      +
      java.util.Set<java.lang.String>keySet() + +
      Get a set of keys of the JSONObject.
      +
      intlength() + +
      Get the number of keys stored in the JSONObject.
      +
      JSONArraynames() + +
      Produce a JSONArray containing the names of the elements of this + JSONObject. +
      +
      static java.lang.StringnumberToString(java.lang.Number number) + +
      Produce a string from a Number.
      +
      java.lang.Objectopt(java.lang.String key) + +
      Get an optional value associated with a key.
      +
      booleanoptBoolean(java.lang.String key) + +
      Get an optional boolean associated with a key.
      +
      booleanoptBoolean(java.lang.String key, + boolean defaultValue) + +
      Get an optional boolean associated with a key.
      +
      doubleoptDouble(java.lang.String key) + +
      Get an optional double associated with a key, or NaN if there is no such + key or if its value is not a number. +
      +
      doubleoptDouble(java.lang.String key, + double defaultValue) + +
      Get an optional double associated with a key, or the defaultValue if + there is no such key or if its value is not a number. +
      +
      intoptInt(java.lang.String key) + +
      Get an optional int value associated with a key, or zero if there is no + such key or if the value is not a number. +
      +
      intoptInt(java.lang.String key, + int defaultValue) + +
      Get an optional int value associated with a key, or the default if there + is no such key or if the value is not a number. +
      +
      JSONArrayoptJSONArray(java.lang.String key) + +
      Get an optional JSONArray associated with a key.
      +
      JSONObjectoptJSONObject(java.lang.String key) + +
      Get an optional JSONObject associated with a key.
      +
      longoptLong(java.lang.String key) + +
      Get an optional long value associated with a key, or zero if there is no + such key or if the value is not a number. +
      +
      longoptLong(java.lang.String key, + long defaultValue) + +
      Get an optional long value associated with a key, or the default if there + is no such key or if the value is not a number. +
      +
      java.lang.StringoptString(java.lang.String key) + +
      Get an optional string associated with a key.
      +
      java.lang.StringoptString(java.lang.String key, + java.lang.String defaultValue) + +
      Get an optional string associated with a key.
      +
      JSONObjectput(java.lang.String key, + boolean value) + +
      Put a key/boolean pair in the JSONObject.
      +
      JSONObjectput(java.lang.String key, + java.util.Collection<java.lang.Object> value) + +
      Put a key/value pair in the JSONObject, where the value will be a + JSONArray which is produced from a Collection. +
      +
      JSONObjectput(java.lang.String key, + double value) + +
      Put a key/double pair in the JSONObject.
      +
      JSONObjectput(java.lang.String key, + int value) + +
      Put a key/int pair in the JSONObject.
      +
      JSONObjectput(java.lang.String key, + long value) + +
      Put a key/long pair in the JSONObject.
      +
      JSONObjectput(java.lang.String key, + java.util.Map<java.lang.String,java.lang.Object> value) + +
      Put a key/value pair in the JSONObject, where the value will be a + JSONObject which is produced from a Map. +
      +
      JSONObjectput(java.lang.String key, + java.lang.Object value) + +
      Put a key/value pair in the JSONObject.
      +
      JSONObjectputOnce(java.lang.String key, + java.lang.Object value) + +
      Put a key/value pair in the JSONObject, but only if the key and the value + are both non-null, and only if there is not already a member with that + name. +
      +
      JSONObjectputOpt(java.lang.String key, + java.lang.Object value) + +
      Put a key/value pair in the JSONObject, but only if the key and the value + are both non-null. +
      +
      static java.lang.Stringquote(java.lang.String string) + +
      Produce a string in double quotes with backslash sequences in all the + right places. +
      +
      static java.io.Writerquote(java.lang.String string, + java.io.Writer w) 
      java.lang.Objectremove(java.lang.String key) + +
      Remove a name and its value, if present.
      +
      booleansimilar(java.lang.Object other) + +
      Determine if two JSONObjects are similar.
      +
      static java.lang.ObjectstringToValue(java.lang.String string) + +
      Try to convert a string into a number, boolean, or null.
      +
      static voidtestValidity(java.lang.Object o) + +
      Throw an exception if the object is a NaN or infinite number.
      +
      JSONArraytoJSONArray(JSONArray names) + +
      Produce a JSONArray containing the values of the members of this + JSONObject. +
      +
      java.lang.StringtoString() + +
      Make a JSON text of this JSONObject.
      +
      java.lang.StringtoString(int indentFactor) + +
      Make a prettyprinted JSON text of this JSONObject.
      +
      static java.lang.StringvalueToString(java.lang.Object value) + +
      Make a JSON text of an Object value.
      +
      static java.lang.Objectwrap(java.lang.Object object) + +
      Wrap an object, if necessary.
      +
      java.io.Writerwrite(java.io.Writer writer) + +
      Write the contents of the JSONObject as JSON text to a writer.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        NULL

        +
        public static final java.lang.Object NULL
        +
        It is sometimes more convenient and less ambiguous to have a + NULL object than to use Java's null value. + JSONObject.NULL.equals(null) returns true. + JSONObject.NULL.toString() returns "null". +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject()
        +
        Construct an empty JSONObject.
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(JSONObject jo,
        +          java.lang.String[] names)
        +
        Construct a JSONObject from a subset of another JSONObject. An array of + strings is used to identify the keys that should be copied. Missing keys + are ignored. +
        +
        +
        Parameters:
        +
        jo - A JSONObject.
        +
        names - An array of strings.
        +
        Throws:
        +
        JSONException
        +
        JSONException - If a value is + a non-finite number or if a name is + duplicated. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(JSONTokener x)
        +           throws JSONException
        +
        Construct a JSONObject from a JSONTokener.
        +
        +
        Parameters:
        +
        x - A JSONTokener object containing the source string.
        +
        Throws:
        +
        JSONException - If there is a + syntax error in the source string or a + duplicated key. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(java.util.Map<java.lang.String,java.lang.Object> map)
        +
        Construct a JSONObject from a Map.
        +
        +
        Parameters:
        +
        map - A map object that can be used to initialize the contents of + the JSONObject. +
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(java.lang.Object bean)
        +
        Construct a JSONObject from an Object using bean getters. It reflects on + all of the public methods of the object. For each of the methods with no + parameters and a name starting with "get" or + "is" followed by an uppercase letter, the method is invoked, + and a key and the value returned from the getter method are put into the + new JSONObject. +

        + The key is formed by removing the "get" or "is" + prefix. If the second remaining character is not upper case, then the + first character is converted to lower case. +

        + For example, if an object has a method named "getName", and + if the result of calling object.getName() is + "Larry Fine", then the JSONObject will contain + "name": "Larry Fine". +

        +
        +
        Parameters:
        +
        bean - An object that has getter methods that should be used to make + a JSONObject. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(java.lang.Object object,
        +          java.lang.String[] names)
        +
        Construct a JSONObject from an Object, using reflection to find the + public members. The resulting JSONObject's keys will be the strings from + the names array, and the values will be the field values associated with + those keys in the object. If a key is not found or not visible, then it + will not be copied into the new JSONObject. +
        +
        +
        Parameters:
        +
        object - An object that has fields that should be used to make a + JSONObject. +
        +
        names - An array of strings, the names of the fields to be obtained + from the object. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(java.lang.String source)
        +           throws JSONException
        +
        Construct a JSONObject from a source JSON text string. This is the most + commonly used JSONObject constructor. +
        +
        +
        Parameters:
        +
        source - A string beginning with {  + (left + brace) + + and ending with } +   + (right brace) + . +
        +
        Throws:
        +
        JSONException - If there is a + syntax error in the source string or a + duplicated key. +
        +
        +
      • +
      + + + +
        +
      • +

        JSONObject

        +
        public JSONObject(java.lang.String baseName,
        +          java.util.Locale locale)
        +           throws JSONException
        +
        Construct a JSONObject from a ResourceBundle.
        +
        +
        Parameters:
        +
        baseName - The ResourceBundle base name.
        +
        locale - The Locale to load the ResourceBundle for.
        +
        Throws:
        +
        JSONException - If any + JSONExceptions are detected. +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        doubleToString

        +
        public static java.lang.String doubleToString(double d)
        +
        Produce a string from a double. The string "null" will be returned if the + number is not finite. +
        +
        +
        Parameters:
        +
        d - A double.
        +
        Returns:
        +
        A String.
        +
        +
      • +
      + + + +
        +
      • +

        getNames

        +
        public static java.lang.String[] getNames(JSONObject jo)
        +
        Get an array of field names from a JSONObject.
        +
        +
        Returns:
        +
        An array of field names, or null if there are no names.
        +
        +
      • +
      + + + +
        +
      • +

        getNames

        +
        public static java.lang.String[] getNames(java.lang.Object object)
        +
        Get an array of field names from an Object.
        +
        +
        Returns:
        +
        An array of field names, or null if there are no names.
        +
        +
      • +
      + + + +
        +
      • +

        numberToString

        +
        public static java.lang.String numberToString(java.lang.Number number)
        +                                       throws JSONException
        +
        Produce a string from a Number.
        +
        +
        Parameters:
        +
        number - A Number
        +
        Returns:
        +
        A String.
        +
        Throws:
        +
        JSONException - If n is a + non-finite number. +
        +
        +
      • +
      + + + +
        +
      • +

        quote

        +
        public static java.lang.String quote(java.lang.String string)
        +
        Produce a string in double quotes with backslash sequences in all the + right places. A backslash will be inserted within + +
        +
        Parameters:
        +
        string - A String
        +
        Returns:
        +
        A String correctly formatted for insertion in a JSON text.
        +
        +
      • +
      + + + +
        +
      • +

        quote

        +
        public static java.io.Writer quote(java.lang.String string,
        +                   java.io.Writer w)
        +                            throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        stringToValue

        +
        public static java.lang.Object stringToValue(java.lang.String string)
        +
        Try to convert a string into a number, boolean, or null. If the string + can't be converted, return the string. +
        +
        +
        Parameters:
        +
        string - A String.
        +
        Returns:
        +
        A simple JSON value.
        +
        +
      • +
      + + + +
        +
      • +

        testValidity

        +
        public static void testValidity(java.lang.Object o)
        +                         throws JSONException
        +
        Throw an exception if the object is a NaN or infinite number.
        +
        +
        Parameters:
        +
        o - The object to test.
        +
        Throws:
        +
        JSONException - If o is a non-finite + number. +
        +
        +
      • +
      + + + +
        +
      • +

        valueToString

        +
        public static java.lang.String valueToString(java.lang.Object value)
        +                                      throws JSONException
        +
        Make a JSON text of an Object value. If the object has an + value.toJSONString() method, then that method will be used to produce the + JSON text. The method is required to produce a strictly conforming text. + If the object does not contain a toJSONString method (which is the most + common case), then a text will be produced by other means. If the value + is an array or Collection, then a JSONArray will be made from it and its + toJSONString method will be called. If the value is a MAP, then a + JSONObject will be made from it and its toJSONString method will be + called. Otherwise, the value's toString method will be called, and the + result will be quoted. +

        + +

        + Warning: This method assumes that the data structure is acyclical. +

        +
        +
        Parameters:
        +
        value - The value to be serialized.
        +
        Returns:
        +
        a printable, displayable, transmittable representation of the + object, beginning with {  + (left + brace) + + and ending with }  + (right + brace) + + . +
        +
        Throws:
        +
        JSONException - If the value is or + contains an invalid number. +
        +
        +
      • +
      + + + +
        +
      • +

        wrap

        +
        public static java.lang.Object wrap(java.lang.Object object)
        +
        Wrap an object, if necessary. If the object is null, return the NULL + object. If it is an array or collection, wrap it in a JSONArray. If it is + a map, wrap it in a JSONObject. If it is a standard property (Double, + String, et al) then it is already wrapped. Otherwise, if it comes from + one of the java packages, turn it into a string. And if it doesn't, try + to wrap it in a JSONObject. If the wrapping fails, then null is returned. +
        +
        +
        Parameters:
        +
        object - The object to wrap
        +
        Returns:
        +
        The wrapped value
        +
        +
      • +
      + + + +
        +
      • +

        accumulate

        +
        public JSONObject accumulate(java.lang.String key,
        +                    java.lang.Object value)
        +                      throws JSONException
        +
        Accumulate values under a key. It is similar to the put method except + that if there is already an object stored under the key then a JSONArray + is stored under the key to hold all of the accumulated values. If there + is already a JSONArray, then the new value is appended to it. In + contrast, the put method replaces the previous value. +

        + If only one value is accumulated that is not a JSONArray, then the result + will be the same as using put. But if multiple values are accumulated, + then the result will be like append. +

        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - An object to be accumulated under the key.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the value is an + invalid number or if the key is null. +
        +
        +
      • +
      + + + +
        +
      • +

        append

        +
        public JSONObject append(java.lang.String key,
        +                java.lang.Object value)
        +                  throws JSONException
        +
        Append values to the array under a key. If the key does not exist in the + JSONObject, then the key is put in the JSONObject with its value being a + JSONArray containing the value parameter. If the key was already + associated with a JSONArray, then the value parameter is appended to it. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - An object to be accumulated under the key.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the key is null or + if the current value associated with + the key is not a JSONArray. +
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public java.lang.Object get(java.lang.String key)
        +                     throws JSONException
        +
        Get the value object associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        The object associated with the key.
        +
        Throws:
        +
        JSONException - if the key is not + found. +
        +
        +
      • +
      + + + +
        +
      • +

        getBoolean

        +
        public boolean getBoolean(java.lang.String key)
        +                   throws JSONException
        +
        Get the boolean value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        The truth.
        +
        Throws:
        +
        JSONException - if the value is not a + Boolean or the String "true" or + "false". +
        +
        +
      • +
      + + + +
        +
      • +

        getDouble

        +
        public double getDouble(java.lang.String key)
        +                 throws JSONException
        +
        Get the double value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        The numeric value.
        +
        Throws:
        +
        JSONException - if the key is not + found or if the value is not a Number + object and cannot be converted to a number. +
        +
        +
      • +
      + + + +
        +
      • +

        getInt

        +
        public int getInt(java.lang.String key)
        +           throws JSONException
        +
        Get the int value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        The integer value.
        +
        Throws:
        +
        JSONException - if the key is not + found or if the value cannot be converted + to an integer. +
        +
        +
      • +
      + + + +
        +
      • +

        getJSONArray

        +
        public JSONArray getJSONArray(java.lang.String key)
        +                       throws JSONException
        +
        Get the JSONArray value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        A JSONArray which is the value.
        +
        Throws:
        +
        JSONException - if the key is not + found or if the value is not a JSONArray. +
        +
        +
      • +
      + + + +
        +
      • +

        getJSONObject

        +
        public JSONObject getJSONObject(java.lang.String key)
        +                         throws JSONException
        +
        Get the JSONObject value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        A JSONObject which is the value.
        +
        Throws:
        +
        JSONException - if the key is not + found or if the value is not a JSONObject. +
        +
        +
      • +
      + + + +
        +
      • +

        getLong

        +
        public long getLong(java.lang.String key)
        +             throws JSONException
        +
        Get the long value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        The long value.
        +
        Throws:
        +
        JSONException - if the key is not + found or if the value cannot be converted + to a long. +
        +
        +
      • +
      + + + +
        +
      • +

        getString

        +
        public java.lang.String getString(java.lang.String key)
        +                           throws JSONException
        +
        Get the string associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        A string which is the value.
        +
        Throws:
        +
        JSONException - if there is no string + value for the key. +
        +
        +
      • +
      + + + +
        +
      • +

        has

        +
        public boolean has(java.lang.String key)
        +
        Determine if the JSONObject contains a specific key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        true if the key exists in the JSONObject.
        +
        +
      • +
      + + + +
        +
      • +

        increment

        +
        public JSONObject increment(java.lang.String key)
        +                     throws JSONException
        +
        Increment a property of a JSONObject. If there is no such property, + create one with a value of 1. If there is such a property, and if it is + an Integer, Long, Double, or Float, then add one to it. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If there is already a + property with this name that is not an + Integer, Long, Double, or Float. +
        +
        +
      • +
      + + + +
        +
      • +

        isNull

        +
        public boolean isNull(java.lang.String key)
        +
        Determine if the value associated with the key is null or if there is no + value. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        true if there is no value associated with the key or if the value + is the JSONObject.NULL object. +
        +
        +
      • +
      + + + +
        +
      • +

        keys

        +
        public java.util.Iterator<java.lang.String> keys()
        +
        Get an enumeration of the keys of the JSONObject.
        +
        +
        Returns:
        +
        An iterator of the keys.
        +
        +
      • +
      + + + +
        +
      • +

        keySet

        +
        public java.util.Set<java.lang.String> keySet()
        +
        Get a set of keys of the JSONObject.
        +
        +
        Returns:
        +
        A keySet.
        +
        +
      • +
      + + + +
        +
      • +

        length

        +
        public int length()
        +
        Get the number of keys stored in the JSONObject.
        +
        +
        Returns:
        +
        The number of keys in the JSONObject.
        +
        +
      • +
      + + + +
        +
      • +

        names

        +
        public JSONArray names()
        +
        Produce a JSONArray containing the names of the elements of this + JSONObject. +
        +
        +
        Returns:
        +
        A JSONArray containing the key strings, or null if the JSONObject + is empty. +
        +
        +
      • +
      + + + +
        +
      • +

        opt

        +
        public java.lang.Object opt(java.lang.String key)
        +
        Get an optional value associated with a key.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        An object which is the value, or null if there is no value.
        +
        +
      • +
      + + + +
        +
      • +

        optBoolean

        +
        public boolean optBoolean(java.lang.String key)
        +
        Get an optional boolean associated with a key. It returns false if there + is no such key, or if the value is not Boolean.TRUE or the String "true". +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        The truth.
        +
        +
      • +
      + + + +
        +
      • +

        optBoolean

        +
        public boolean optBoolean(java.lang.String key,
        +                 boolean defaultValue)
        +
        Get an optional boolean associated with a key. It returns the + defaultValue if there is no such key, or if it is not a Boolean or the + String "true" or "false" (case insensitive). +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        defaultValue - The default.
        +
        Returns:
        +
        The truth.
        +
        +
      • +
      + + + +
        +
      • +

        optDouble

        +
        public double optDouble(java.lang.String key)
        +
        Get an optional double associated with a key, or NaN if there is no such + key or if its value is not a number. If the value is a string, an attempt + will be made to evaluate it as a number. +
        +
        +
        Parameters:
        +
        key - A string which is the key.
        +
        Returns:
        +
        An object which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optDouble

        +
        public double optDouble(java.lang.String key,
        +               double defaultValue)
        +
        Get an optional double associated with a key, or the defaultValue if + there is no such key or if its value is not a number. If the value is a + string, an attempt will be made to evaluate it as a number. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        defaultValue - The default.
        +
        Returns:
        +
        An object which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optInt

        +
        public int optInt(java.lang.String key)
        +
        Get an optional int value associated with a key, or zero if there is no + such key or if the value is not a number. If the value is a string, an + attempt will be made to evaluate it as a number. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        An object which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optInt

        +
        public int optInt(java.lang.String key,
        +         int defaultValue)
        +
        Get an optional int value associated with a key, or the default if there + is no such key or if the value is not a number. If the value is a string, + an attempt will be made to evaluate it as a number. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        defaultValue - The default.
        +
        Returns:
        +
        An object which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optJSONArray

        +
        public JSONArray optJSONArray(java.lang.String key)
        +
        Get an optional JSONArray associated with a key. It returns null if there + is no such key, or if its value is not a JSONArray. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        A JSONArray which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optJSONObject

        +
        public JSONObject optJSONObject(java.lang.String key)
        +
        Get an optional JSONObject associated with a key. It returns null if + there is no such key, or if its value is not a JSONObject. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        A JSONObject which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optLong

        +
        public long optLong(java.lang.String key)
        +
        Get an optional long value associated with a key, or zero if there is no + such key or if the value is not a number. If the value is a string, an + attempt will be made to evaluate it as a number. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        An object which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optLong

        +
        public long optLong(java.lang.String key,
        +           long defaultValue)
        +
        Get an optional long value associated with a key, or the default if there + is no such key or if the value is not a number. If the value is a string, + an attempt will be made to evaluate it as a number. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        defaultValue - The default.
        +
        Returns:
        +
        An object which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optString

        +
        public java.lang.String optString(java.lang.String key)
        +
        Get an optional string associated with a key. It returns an empty string + if there is no such key. If the value is not a string and is not null, + then it is converted to a string. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        Returns:
        +
        A string which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        optString

        +
        public java.lang.String optString(java.lang.String key,
        +                         java.lang.String defaultValue)
        +
        Get an optional string associated with a key. It returns the defaultValue + if there is no such key. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        defaultValue - The default.
        +
        Returns:
        +
        A string which is the value.
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             boolean value)
        +               throws JSONException
        +
        Put a key/boolean pair in the JSONObject.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - A boolean which is the value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the key is null. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             java.util.Collection<java.lang.Object> value)
        +               throws JSONException
        +
        Put a key/value pair in the JSONObject, where the value will be a + JSONArray which is produced from a Collection. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - A Collection value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             double value)
        +               throws JSONException
        +
        Put a key/double pair in the JSONObject.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - A double which is the value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the key is null or + if the number is invalid. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             int value)
        +               throws JSONException
        +
        Put a key/int pair in the JSONObject.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - An int which is the value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the key is null. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             long value)
        +               throws JSONException
        +
        Put a key/long pair in the JSONObject.
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - A long which is the value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the key is null. +
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             java.util.Map<java.lang.String,java.lang.Object> value)
        +               throws JSONException
        +
        Put a key/value pair in the JSONObject, where the value will be a + JSONObject which is produced from a Map. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - A Map value.
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public JSONObject put(java.lang.String key,
        +             java.lang.Object value)
        +               throws JSONException
        +
        Put a key/value pair in the JSONObject. If the value is null, then the + key will be removed from the JSONObject if it is present. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - An object which is the value. It should be of one of these + types: Boolean, Double, Integer, JSONArray, JSONObject, Long, + String, or the JSONObject.NULL object. +
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the value is + non-finite number or if the key is null. +
        +
        +
      • +
      + + + +
        +
      • +

        putOnce

        +
        public JSONObject putOnce(java.lang.String key,
        +                 java.lang.Object value)
        +                   throws JSONException
        +
        Put a key/value pair in the JSONObject, but only if the key and the value + are both non-null, and only if there is not already a member with that + name. +
        +
        +
        Parameters:
        +
        key - string
        +
        value - object
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - if the key is a + duplicate +
        +
        +
      • +
      + + + +
        +
      • +

        putOpt

        +
        public JSONObject putOpt(java.lang.String key,
        +                java.lang.Object value)
        +                  throws JSONException
        +
        Put a key/value pair in the JSONObject, but only if the key and the value + are both non-null. +
        +
        +
        Parameters:
        +
        key - A key string.
        +
        value - An object which is the value. It should be of one of these + types: Boolean, Double, Integer, JSONArray, JSONObject, Long, + String, or the JSONObject.NULL object. +
        +
        Returns:
        +
        this.
        +
        Throws:
        +
        JSONException - If the value is a + non-finite number. +
        +
        +
      • +
      + + + +
        +
      • +

        remove

        +
        public java.lang.Object remove(java.lang.String key)
        +
        Remove a name and its value, if present.
        +
        +
        Parameters:
        +
        key - The name to be removed.
        +
        Returns:
        +
        The value that was associated with the name, or null if there was + no value. +
        +
        +
      • +
      + + + +
        +
      • +

        similar

        +
        public boolean similar(java.lang.Object other)
        +
        Determine if two JSONObjects are similar. + They must contain the same set of names which must be associated with + similar values. +
        +
        +
        Parameters:
        +
        other - The other JSONObject
        +
        Returns:
        +
        true if they are equal
        +
        +
      • +
      + + + +
        +
      • +

        toJSONArray

        +
        public JSONArray toJSONArray(JSONArray names)
        +                      throws JSONException
        +
        Produce a JSONArray containing the values of the members of this + JSONObject. +
        +
        +
        Parameters:
        +
        names - A JSONArray containing a list of key strings. This determines + the sequence of the values in the result. +
        +
        Returns:
        +
        A JSONArray of values.
        +
        Throws:
        +
        JSONException - If any of the values + are non-finite numbers. +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        Make a JSON text of this JSONObject. For compactness, no whitespace is + added. If this would not result in a syntactically correct JSON text, + then null will be returned instead. +

        + Warning: This method assumes that the data structure is acyclical. +

        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        Returns:
        +
        a printable, displayable, portable, transmittable representation + of the object, beginning with {  + (left + brace) + + and ending with }  + (right + brace) + + . +
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString(int indentFactor)
        +                          throws JSONException
        +
        Make a prettyprinted JSON text of this JSONObject. +

        + Warning: This method assumes that the data structure is acyclical. +

        +
        +
        Parameters:
        +
        indentFactor - The number of spaces to add to each level of indentation.
        +
        Returns:
        +
        a printable, displayable, portable, transmittable representation + of the object, beginning with {  + (left + brace) + + and ending with }  + (right + brace) + + . +
        +
        Throws:
        +
        JSONException - If the object + contains an invalid number. +
        +
        +
      • +
      + + + +
        +
      • +

        write

        +
        public java.io.Writer write(java.io.Writer writer)
        +                     throws JSONException
        +
        Write the contents of the JSONObject as JSON text to a writer. For + compactness, no whitespace is added. +

        + Warning: This method assumes that the data structure is acyclical. +

        +
        +
        Returns:
        +
        The writer.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONString.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONString.html new file mode 100644 index 000000000..5f3192776 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONString.html @@ -0,0 +1,235 @@ + + + + + + JSONString + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Interface JSONString

+
+
+
+
    +
  • +
    +
    +
    public interface JSONString
    +
    The JSONString interface allows a toJSONString() + method so that a class can change the behavior of + JSONObject.toString(), JSONArray.toString(), + and JSONWriter.value(Object). The + toJSONString method will be used instead of the default behavior + of using the Object's toString() method and quoting the result. +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoJSONString() + +
      The toJSONString method allows a class to produce + its own + JSON + serialization. +
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toJSONString

        +
        java.lang.String toJSONString()
        +
        The toJSONString method allows a class to produce its + own + JSON + serialization. +
        +
        +
        Returns:
        +
        A strictly syntactically correct JSON text.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html new file mode 100644 index 000000000..2d5b4d08f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html @@ -0,0 +1,374 @@ + + + + + + JSONStringer + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONStringer

+
+
+ +
+
    +
  • +
    +
    +
    public class JSONStringer
    +extends JSONWriter
    +
    JSONStringer provides a quick and convenient way of producing JSON text. + The texts produced strictly conform to JSON syntax rules. No whitespace is + added, so the results are ready for transmission or storage. Each instance of + JSONStringer can produce one JSON text. +

    + A JSONStringer instance provides a value method for appending + values to the text, and a key method for adding keys before + values in objects. There are array and endArray + methods that make and bound array values, and object and + endObject methods which make and bound object values. All of + these methods return the JSONWriter instance, permitting cascade style. For + example, +

    +

    + myString = new JSONStringer().object().key("JSON").value("Hello, World!").endObject().toString();
    + 
    +

    + which produces the string +

    +

    + {"JSON":"Hello, World!"}
    + 
    +

    + The first method called must be array or object. + There are no methods for adding commas or colons. JSONStringer adds them for + you. Objects and arrays can be nested up to 20 levels deep. +

    + This can sometimes be easier than using a JSONObject to build a string. +

    +
    +
    Version:
    +
    2008-09-18
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONStringer() + +
      Make a fresh JSONStringer.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString() + +
      Return the JSON text.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONStringer

        +
        public JSONStringer()
        +
        Make a fresh JSONStringer. It can be used to build one JSON text. +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        Return the JSON text. This method is used to obtain the product of + the + JSONStringer instance. It will return null if there was a + problem in the construction of the JSON text (such as the calls to + array were not properly balanced with calls to + endArray). +
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        Returns:
        +
        The JSON text.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html new file mode 100644 index 000000000..a7ec71e1a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html @@ -0,0 +1,770 @@ + + + + + + JSONTokener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONTokener

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    HTTPTokener, XMLTokener
    +
    +
    +
    +
    public class JSONTokener
    +extends java.lang.Object
    +
    A JSONTokener takes a source string and extracts characters and tokens from + it. It is used by the JSONObject and JSONArray constructors to parse + JSON source strings. +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONTokener(java.io.InputStream inputStream) + +
      Construct a JSONTokener from an InputStream.
      +
      JSONTokener(java.io.Reader reader) + +
      Construct a JSONTokener from a Reader.
      +
      JSONTokener(java.lang.String s) + +
      Construct a JSONTokener from a string.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidback() + +
      Back up one character.
      +
      static intdehexchar(char c) + +
      Get the hex value of a character (base16).
      +
      booleanend()  +
      booleanmore() + +
      Determine if the source string still contains characters that next() + can consume. +
      +
      charnext() + +
      Get the next character in the source string.
      +
      charnext(char c) + +
      Consume the next character, and check that it matches a specified + character. +
      +
      java.lang.Stringnext(int n) + +
      Get the next n characters.
      +
      charnextClean() + +
      Get the next char in the string, skipping whitespace.
      +
      java.lang.StringnextString(char quote) + +
      Return the characters up to the next close quote character.
      +
      java.lang.StringnextTo(char delimiter) + +
      Get the text up but not including the specified character or the + end of line, whichever comes first. +
      +
      java.lang.StringnextTo(java.lang.String delimiters) + +
      Get the text up but not including one of the specified delimiter + characters or the end of line, whichever comes first. +
      +
      java.lang.ObjectnextValue() + +
      Get the next value.
      +
      charskipTo(char to) + +
      Skip characters until the next character is the requested + character. +
      +
      JSONExceptionsyntaxError(java.lang.String message) + +
      Make a JSONException to signal a syntax error.
      +
      java.lang.StringtoString() + +
      Make a printable string of this JSONTokener.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONTokener

        +
        public JSONTokener(java.io.Reader reader)
        +
        Construct a JSONTokener from a Reader.
        +
        +
        Parameters:
        +
        reader - A reader.
        +
        +
      • +
      + + + +
        +
      • +

        JSONTokener

        +
        public JSONTokener(java.io.InputStream inputStream)
        +            throws JSONException
        +
        Construct a JSONTokener from an InputStream.
        +
        +
        Parameters:
        +
        inputStream - The source.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        JSONTokener

        +
        public JSONTokener(java.lang.String s)
        +
        Construct a JSONTokener from a string.
        +
        +
        Parameters:
        +
        s - A source string.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        dehexchar

        +
        public static int dehexchar(char c)
        +
        Get the hex value of a character (base16).
        +
        +
        Parameters:
        +
        c - A character between '0' and '9' or between 'A' and 'F' or + between 'a' and 'f'. +
        +
        Returns:
        +
        An int between 0 and 15, or -1 if c was not a hex digit.
        +
        +
      • +
      + + + +
        +
      • +

        back

        +
        public void back()
        +          throws JSONException
        +
        Back up one character. This provides a sort of lookahead capability, + so that you can test for a digit or letter before attempting to parse + the next number or identifier. +
        +
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        end

        +
        public boolean end()
        +
      • +
      + + + +
        +
      • +

        more

        +
        public boolean more()
        +             throws JSONException
        +
        Determine if the source string still contains characters that next() + can consume. +
        +
        +
        Returns:
        +
        true if not yet at the end of the source.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        next

        +
        public char next()
        +          throws JSONException
        +
        Get the next character in the source string.
        +
        +
        Returns:
        +
        The next character, or 0 if past the end of the source string.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        next

        +
        public char next(char c)
        +          throws JSONException
        +
        Consume the next character, and check that it matches a specified + character. +
        +
        +
        Parameters:
        +
        c - The character to match.
        +
        Returns:
        +
        The character.
        +
        Throws:
        +
        JSONException - if the character does + not match. +
        +
        +
      • +
      + + + +
        +
      • +

        next

        +
        public java.lang.String next(int n)
        +                      throws JSONException
        +
        Get the next n characters.
        +
        +
        Parameters:
        +
        n - The number of characters to take.
        +
        Returns:
        +
        A string of n characters.
        +
        Throws:
        +
        JSONException - Substring bounds + error if there are not + n characters remaining in the source string. +
        +
        +
      • +
      + + + +
        +
      • +

        nextClean

        +
        public char nextClean()
        +               throws JSONException
        +
        Get the next char in the string, skipping whitespace.
        +
        +
        Returns:
        +
        A character, or 0 if there are no more characters.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        nextString

        +
        public java.lang.String nextString(char quote)
        +                            throws JSONException
        +
        Return the characters up to the next close quote character. + Backslash processing is done. The formal JSON format does not + allow strings in single quotes, but an implementation is allowed to + accept them. +
        +
        +
        Parameters:
        +
        quote - The quoting character, either " +   + (double quote) + or ' +   + (single quote) + . +
        +
        Returns:
        +
        A String.
        +
        Throws:
        +
        JSONException - Unterminated string. +
        +
        +
      • +
      + + + +
        +
      • +

        nextTo

        +
        public java.lang.String nextTo(char delimiter)
        +                        throws JSONException
        +
        Get the text up but not including the specified character or the + end of line, whichever comes first. +
        +
        +
        Parameters:
        +
        delimiter - A delimiter character.
        +
        Returns:
        +
        A string.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        nextTo

        +
        public java.lang.String nextTo(java.lang.String delimiters)
        +                        throws JSONException
        +
        Get the text up but not including one of the specified delimiter + characters or the end of line, whichever comes first. +
        +
        +
        Parameters:
        +
        delimiters - A set of delimiter characters.
        +
        Returns:
        +
        A string, trimmed.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        nextValue

        +
        public java.lang.Object nextValue()
        +                           throws JSONException
        +
        Get the next value. The value can be a Boolean, Double, Integer, + JSONArray, JSONObject, Long, or String, or the JSONObject.NULL object. +
        +
        +
        Returns:
        +
        An object.
        +
        Throws:
        +
        JSONException - If syntax error. +
        +
        +
      • +
      + + + +
        +
      • +

        skipTo

        +
        public char skipTo(char to)
        +            throws JSONException
        +
        Skip characters until the next character is the requested character. + If the requested character is not found, no characters are skipped. +
        +
        +
        Parameters:
        +
        to - A character to skip to.
        +
        Returns:
        +
        The requested character, or zero if the requested character + is not found. +
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        syntaxError

        +
        public JSONException syntaxError(java.lang.String message)
        +
        Make a JSONException to signal a syntax error.
        +
        +
        Parameters:
        +
        message - The error message.
        +
        Returns:
        +
        A JSONException object, suitable for throwing
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        Make a printable string of this JSONTokener.
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        Returns:
        +
        " at {index} [character {character} line {line}]"
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html new file mode 100644 index 000000000..0d117769e --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html @@ -0,0 +1,687 @@ + + + + + + JSONWriter + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class JSONWriter

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    JSONStringer
    +
    +
    +
    +
    public class JSONWriter
    +extends java.lang.Object
    +
    JSONWriter provides a quick and convenient way of producing JSON text. + The texts produced strictly conform to JSON syntax rules. No whitespace is + added, so the results are ready for transmission or storage. Each instance of + JSONWriter can produce one JSON text. +

    + A JSONWriter instance provides a value method for appending + values to the text, and a key method for adding keys before + values in objects. There are array and endArray + methods that make and bound array values, and object and + endObject methods which make and bound object values. All of + these methods return the JSONWriter instance, permitting a cascade style. For + example, +

    +

    + new JSONWriter(myWriter).object().key("JSON").value("Hello, World!").endObject();
    + 
    +

    + which writes +

    +

    + {"JSON":"Hello, World!"}
    + 
    +

    + The first method called must be array or object. + There are no methods for adding commas or colons. JSONWriter adds them for + you. Objects and arrays can be nested up to 20 levels deep. +

    + This can sometimes be easier than using a JSONObject to build a string. +

    +
    +
    Version:
    +
    2011-11-24
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      protected charmode + +
      The current mode.
      +
      protected java.io.Writerwriter + +
      The writer that will receive the output.
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      JSONWriter(java.io.Writer w) + +
      Make a fresh JSONWriter.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      JSONWriter + array() + +
      Begin appending a new array.
      +
      JSONWriter + endArray() + +
      End an array.
      +
      JSONWriter + endObject() + +
      End an object.
      +
      JSONWriter + key(java.lang.String string) + +
      Append a key.
      +
      JSONWriter + object() + +
      Begin appending a new object.
      +
      JSONWriter + value(boolean b) + +
      Append either the value true or the value + false + . +
      +
      JSONWriter + value(double d) + +
      Append a double value.
      +
      JSONWriter + value(long l) + +
      Append a long value.
      +
      JSONWriter + value(java.lang.Object object) + +
      Append an object value.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        mode

        +
        protected char mode
        +
        The current mode. Values: + 'a' (array), + 'd' (done), + 'i' (initial), + 'k' (key), + 'o' (object). +
        +
      • +
      + + + +
        +
      • +

        writer

        +
        protected java.io.Writer writer
        +
        The writer that will receive the output.
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        JSONWriter

        +
        public JSONWriter(java.io.Writer w)
        +
        Make a fresh JSONWriter. It can be used to build one JSON text.
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        array

        +
        public JSONWriter array()
        +                 throws JSONException
        +
        Begin appending a new array. All values until the balancing + endArray will be appended to this array. The + endArray method must be called to mark the array's end. +
        +
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If the + nesting is too deep, or if the object is + started in the wrong place (for example as a key or after the + end of the + outermost array or object). +
        +
        +
      • +
      + + + +
        +
      • +

        endArray

        +
        public JSONWriter endArray()
        +                    throws JSONException
        +
        End an array. This method most be called to balance calls to + array. +
        +
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If + incorrectly nested. +
        +
        +
      • +
      + + + +
        +
      • +

        endObject

        +
        public JSONWriter endObject()
        +                     throws JSONException
        +
        End an object. This method most be called to balance calls to + object. +
        +
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If + incorrectly nested. +
        +
        +
      • +
      + + + +
        +
      • +

        key

        +
        public JSONWriter key(java.lang.String string)
        +               throws JSONException
        +
        Append a key. The key will be associated with the next value. In an + object, every value must be preceded by a key. +
        +
        +
        Parameters:
        +
        string - A key string.
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If the key is + out of place. For example, keys + do not belong in arrays or if the key is null. +
        +
        +
      • +
      + + + +
        +
      • +

        object

        +
        public JSONWriter object()
        +                  throws JSONException
        +
        Begin appending a new object. All keys and values until the balancing + endObject will be appended to this object. The + endObject method must be called to mark the object's end. +
        +
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If the + nesting is too deep, or if the object is + started in the wrong place (for example as a key or after the + end of the + outermost array or object). +
        +
        +
      • +
      + + + +
        +
      • +

        value

        +
        public JSONWriter value(boolean b)
        +                 throws JSONException
        +
        Append either the value true or the value false + . +
        +
        +
        Parameters:
        +
        b - A boolean.
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        value

        +
        public JSONWriter value(double d)
        +                 throws JSONException
        +
        Append a double value.
        +
        +
        Parameters:
        +
        d - A double.
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If the number + is not finite. +
        +
        +
      • +
      + + + + + + + +
        +
      • +

        value

        +
        public JSONWriter value(java.lang.Object object)
        +                 throws JSONException
        +
        Append an object value.
        +
        +
        Parameters:
        +
        object - The object to append. It can be null, or a Boolean, Number, + String, JSONObject, or JSONArray, or an object that implements + JSONString. +
        +
        Returns:
        +
        this
        +
        Throws:
        +
        JSONException - If the value + is out of sequence. +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/Kim.html b/PlotSquared/doc/com/intellectualcrafters/json/Kim.html new file mode 100644 index 000000000..a33b194ad --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/Kim.html @@ -0,0 +1,644 @@ + + + + + + Kim + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class Kim

+
+
+ +
+
    +
  • +
    +
    +
    public class Kim
    +extends java.lang.Object
    +
    Kim makes immutable eight bit Unicode strings. If the MSB of a byte is set, + then the next byte is a continuation byte. The last byte of a character + never has the MSB reset. Every byte that is not the last byte has the MSB + set. Kim stands for "Keep it minimal". A Unicode character is never longer + than 3 bytes. Every byte contributes 7 bits to the character. ASCII is + unmodified. +

    + Kim UTF-8 + one byte U+007F U+007F + two bytes U+3FFF U+07FF + three bytes U+10FFF U+FFFF + four bytes U+10FFFF +

    + Characters in the ranges U+0800..U+3FFF and U+10000..U+10FFFF will be one + byte smaller when encoded in Kim compared to UTF-8. +

    + Kim is beneficial when using scripts such as Old South Arabian, Aramaic, + Avestan, Balinese, Batak, Bopomofo, Buginese, Buhid, Carian, Cherokee, + Coptic, Cyrillic, Deseret, Egyptian Hieroglyphs, Ethiopic, Georgian, + Glagolitic, Gothic, Hangul Jamo, Hanunoo, Hiragana, Kanbun, Kaithi, + Kannada, Katakana, Kharoshthi, Khmer, Lao, Lepcha, Limbu, Lycian, Lydian, + Malayalam, Mandaic, Meroitic, Miao, Mongolian, Myanmar, New Tai Lue, + Ol Chiki, Old Turkic, Oriya, Osmanya, Pahlavi, Parthian, Phags-Pa, + Phoenician, Samaritan, Sharada, Sinhala, Sora Sompeng, Tagalog, Tagbanwa, + Takri, Tai Le, Tai Tham, Tamil, Telugu, Thai, Tibetan, Tifinagh, UCAS. +

    + A kim object can be constructed from an ordinary UTF-16 string, or from a + byte array. A kim object can produce a UTF-16 string. +

    + As with UTF-8, it is possible to detect character boundaries within a byte + sequence. UTF-8 is one of the world's great inventions. While Kim is more + efficient, it is not clear that it is worth the expense of transition. +

    +
    +
    Version:
    +
    2013-04-18
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      intlength + +
      The number of bytes in the kim.
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      Kim(byte[] bytes, + int length) + +
      Make a kim from a byte array.
      +
      Kim(byte[] bytes, + int from, + int thru) + +
      Make a kim from a portion of a byte array.
      +
      Kim(Kim kim, + int from, + int thru) + +
      Make a new kim from a substring of an existing kim.
      +
      Kim(java.lang.String string) + +
      Make a kim from a string.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intcharacterAt(int at) + +
      Returns the character at the specified index.
      +
      static intcharacterSize(int character) + +
      Returns the number of bytes needed to contain the character in Kim + format. +
      +
      intcopy(byte[] bytes, + int at) + +
      Copy the contents of this kim to a byte array.
      +
      booleanequals(java.lang.Object obj) + +
      Two kim objects containing exactly the same bytes in the same order + are + equal to each other. +
      +
      intget(int at) + +
      Get a byte from a kim.
      +
      inthashCode() + +
      Returns a hash code value for the kim.
      +
      java.lang.StringtoString() + +
      Produce a UTF-16 String from this kim.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        length

        +
        public int length
        +
        The number of bytes in the kim. The number of bytes can be as much as + three times the number of characters. +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Kim

        +
        public Kim(byte[] bytes,
        +   int from,
        +   int thru)
        +
        Make a kim from a portion of a byte array.
        +
        +
        Parameters:
        +
        bytes - A byte array.
        +
        from - The index of the first byte.
        +
        thru - The index of the last byte plus one.
        +
        +
      • +
      + + + +
        +
      • +

        Kim

        +
        public Kim(byte[] bytes,
        +   int length)
        +
        Make a kim from a byte array.
        +
        +
        Parameters:
        +
        bytes - The byte array.
        +
        length - The number of bytes.
        +
        +
      • +
      + + + +
        +
      • +

        Kim

        +
        public Kim(Kim kim,
        +   int from,
        +   int thru)
        +
        Make a new kim from a substring of an existing kim. The coordinates are + in byte units, not character units. +
        +
        +
        Parameters:
        +
        kim - The source of bytes.
        +
        from - The point at which to take bytes.
        +
        thru - The point at which to stop taking bytes.
        +
        +
      • +
      + + + +
        +
      • +

        Kim

        +
        public Kim(java.lang.String string)
        +    throws JSONException
        +
        Make a kim from a string.
        +
        +
        Parameters:
        +
        string - The string.
        +
        Throws:
        +
        JSONException - if + surrogate pair mismatch. +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        characterSize

        +
        public static int characterSize(int character)
        +                         throws JSONException
        +
        Returns the number of bytes needed to contain the character in Kim + format. +
        +
        +
        Parameters:
        +
        character - a Unicode character between 0 and 0x10FFFF.
        +
        Returns:
        +
        1, 2, or 3
        +
        Throws:
        +
        JSONException - if + the character is not representable in a kim. +
        +
        +
      • +
      + + + +
        +
      • +

        characterAt

        +
        public int characterAt(int at)
        +                throws JSONException
        +
        Returns the character at the specified index. The index refers to byte + values and ranges from 0 to length - 1. The index of the next character + is at index + Kim.characterSize(kim.characterAt(index)). +
        +
        +
        Parameters:
        +
        at - the index of the char value. The first character is at 0.
        +
        Throws:
        +
        JSONException - if at + does not point to a valid character. +
        +
        +
      • +
      + + + +
        +
      • +

        copy

        +
        public int copy(byte[] bytes,
        +       int at)
        +
        Copy the contents of this kim to a byte array.
        +
        +
        Parameters:
        +
        bytes - A byte array of sufficient size.
        +
        at - The position within the byte array to take the byes.
        +
        Returns:
        +
        The position immediately after the copy.
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        Two kim objects containing exactly the same bytes in the same order are + equal to each other. +
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        Parameters:
        +
        obj - the other kim with which to compare.
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public int get(int at)
        +        throws JSONException
        +
        Get a byte from a kim.
        +
        +
        Parameters:
        +
        at - The position of the byte. The first byte is at 0.
        +
        Returns:
        +
        The byte.
        +
        Throws:
        +
        JSONException - if + there is no byte at that position. +
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        Returns a hash code value for the kim.
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +                          throws JSONException
        +
        Produce a UTF-16 String from this kim. The number of codepoints in the + string will not be greater than the number of bytes in the kim, although + it could be less. +
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        Returns:
        +
        The string. A kim memoizes its string representation.
        +
        Throws:
        +
        JSONException - if + the kim is not valid. +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/Property.html b/PlotSquared/doc/com/intellectualcrafters/json/Property.html new file mode 100644 index 000000000..0f7d122ba --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/Property.html @@ -0,0 +1,330 @@ + + + + + + Property + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class Property

+
+
+ +
+
    +
  • +
    +
    +
    public class Property
    +extends java.lang.Object
    +
    Converts a Property file data into JSONObject and back.
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Property()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static JSONObjecttoJSONObject(java.util.Properties properties) + +
      Converts a property file object into a JSONObject.
      +
      static java.util.PropertiestoProperties(JSONObject jo) + +
      Converts the JSONObject into a property file object.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Property

        +
        public Property()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(java.util.Properties properties)
        +                               throws JSONException
        +
        Converts a property file object into a JSONObject. The property file + object is a table of name value pairs. +
        +
        +
        Parameters:
        +
        properties - java.util.Properties
        +
        Returns:
        +
        JSONObject
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        toProperties

        +
        public static java.util.Properties toProperties(JSONObject jo)
        +                                         throws JSONException
        +
        Converts the JSONObject into a property file object.
        +
        +
        Parameters:
        +
        jo - JSONObject
        +
        Returns:
        +
        java.util.Properties
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/XML.html b/PlotSquared/doc/com/intellectualcrafters/json/XML.html new file mode 100644 index 000000000..1765e2ff7 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/XML.html @@ -0,0 +1,663 @@ + + + + + + XML + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class XML

+
+
+ +
+
    +
  • +
    +
    +
    public class XML
    +extends java.lang.Object
    +
    This provides static methods to convert an XML text into a JSONObject, + and to covert a JSONObject into an XML text. +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.CharacterAMP + +
      The Character '&'.
      +
      static java.lang.CharacterAPOS + +
      The Character '''.
      +
      static java.lang.CharacterBANG + +
      The Character '!'.
      +
      static java.lang.CharacterEQ + +
      The Character '='.
      +
      static java.lang.CharacterGT + +
      The Character '>'.
      +
      static java.lang.CharacterLT + +
      The Character '<'.
      +
      static java.lang.CharacterQUEST + +
      The Character '?'.
      +
      static java.lang.CharacterQUOT + +
      The Character '"'.
      +
      static java.lang.CharacterSLASH + +
      The Character '/'.
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      XML()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringescape(java.lang.String string) + +
      Replace special characters with XML escapes: +

      + + & + (ampersand) + is replaced by &amp; + < + (less than) + is replaced by &lt; + > + (greater than) + is replaced by &gt; + " + (double quote) + is replaced by &quot; +

      +
      static voidnoSpace(java.lang.String string) + +
      Throw an exception if the string contains whitespace.
      +
      static java.lang.ObjectstringToValue(java.lang.String string) + +
      Try to convert a string into a number, boolean, or null.
      +
      static JSONObjecttoJSONObject(java.lang.String string) + +
      Convert a well-formed (but not necessarily valid) XML string into a + JSONObject. +
      +
      static java.lang.StringtoString(java.lang.Object object) + +
      Convert a JSONObject into a well-formed, element-normal XML string. +
      +
      static java.lang.StringtoString(java.lang.Object object, + java.lang.String tagName) + +
      Convert a JSONObject into a well-formed, element-normal XML string. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        AMP

        +
        public static final java.lang.Character AMP
        +
        The Character '&'.
        +
      • +
      + + + +
        +
      • +

        APOS

        +
        public static final java.lang.Character APOS
        +
        The Character '''.
        +
      • +
      + + + +
        +
      • +

        BANG

        +
        public static final java.lang.Character BANG
        +
        The Character '!'.
        +
      • +
      + + + +
        +
      • +

        EQ

        +
        public static final java.lang.Character EQ
        +
        The Character '='.
        +
      • +
      + + + +
        +
      • +

        GT

        +
        public static final java.lang.Character GT
        +
        The Character '>'.
        +
      • +
      + + + +
        +
      • +

        LT

        +
        public static final java.lang.Character LT
        +
        The Character '<'.
        +
      • +
      + + + +
        +
      • +

        QUEST

        +
        public static final java.lang.Character QUEST
        +
        The Character '?'.
        +
      • +
      + + + +
        +
      • +

        QUOT

        +
        public static final java.lang.Character QUOT
        +
        The Character '"'.
        +
      • +
      + + + +
        +
      • +

        SLASH

        +
        public static final java.lang.Character SLASH
        +
        The Character '/'.
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        XML

        +
        public XML()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        escape

        +
        public static java.lang.String escape(java.lang.String string)
        +
        Replace special characters with XML escapes: +

        +

        + & (ampersand) is replaced by &amp;
        + < (less than) is replaced by &lt;
        + > (greater than) is replaced by &gt;
        + " (double quote) is replaced by &quot;
        + 
        +
        +
        +
        Parameters:
        +
        string - The string to be escaped.
        +
        Returns:
        +
        The escaped string.
        +
        +
      • +
      + + + +
        +
      • +

        noSpace

        +
        public static void noSpace(java.lang.String string)
        +                    throws JSONException
        +
        Throw an exception if the string contains whitespace. + Whitespace is not allowed in tagNames and attributes. +
        +
        +
        Parameters:
        +
        string - A string.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        stringToValue

        +
        public static java.lang.Object stringToValue(java.lang.String string)
        +
        Try to convert a string into a number, boolean, or null. If the string + can't be converted, return the string. This is much less ambitious than + JSONObject.stringToValue, especially because it does not attempt to + convert plus forms, octal forms, hex forms, or E forms lacking decimal + points. +
        +
        +
        Parameters:
        +
        string - A String.
        +
        Returns:
        +
        A simple JSON value.
        +
        +
      • +
      + + + +
        +
      • +

        toJSONObject

        +
        public static JSONObject toJSONObject(java.lang.String string)
        +                               throws JSONException
        +
        Convert a well-formed (but not necessarily valid) XML string into a + JSONObject. Some information may be lost in this transformation + because JSON is a data format and XML is a document format. XML uses + elements, attributes, and content text, while JSON uses unordered + collections of name/value pairs and arrays of values. JSON does not + does not like to distinguish between elements and attributes. + Sequences of similar elements are represented as JSONArrays. Content + text may be placed in a "content" member. Comments, prologs, DTDs, and + <[ [ ]]> are ignored. +
        +
        +
        Parameters:
        +
        string - The source string.
        +
        Returns:
        +
        A JSONObject containing the structured data from the XML string.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(java.lang.Object object)
        +                                 throws JSONException
        +
        Convert a JSONObject into a well-formed, element-normal XML string.
        +
        +
        Parameters:
        +
        object - A JSONObject.
        +
        Returns:
        +
        A string.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public static java.lang.String toString(java.lang.Object object,
        +                        java.lang.String tagName)
        +                                 throws JSONException
        +
        Convert a JSONObject into a well-formed, element-normal XML string.
        +
        +
        Parameters:
        +
        object - A JSONObject.
        +
        tagName - The optional name of the enclosing tag.
        +
        Returns:
        +
        A string.
        +
        Throws:
        +
        JSONException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html b/PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html new file mode 100644 index 000000000..5683e1272 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html @@ -0,0 +1,544 @@ + + + + + + XMLTokener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.json
+

Class XMLTokener

+
+
+ +
+
    +
  • +
    +
    +
    public class XMLTokener
    +extends JSONTokener
    +
    The XMLTokener extends the JSONTokener to provide additional methods + for the parsing of XML texts. +
    +
    +
    Version:
    +
    2014-05-03
    +
    Author:
    +
    JSON.org
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.util.HashMap<java.lang.String,java.lang.Character> + entity + +
      The table of entity values.
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      XMLTokener(java.lang.String s) + +
      Construct an XMLTokener from a string.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringnextCDATA() + +
      Get the text in the CDATA block.
      +
      java.lang.ObjectnextContent() + +
      Get the next XML outer token, trimming whitespace.
      +
      java.lang.ObjectnextEntity(char ampersand) + +
      Return the next entity.
      +
      java.lang.ObjectnextMeta() + +
      Returns the next XML meta token.
      +
      java.lang.ObjectnextToken() + +
      Get the next XML Token.
      +
      booleanskipPast(java.lang.String to) + +
      Skip characters until past the requested string.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        entity

        +
        public static final java.util.HashMap<java.lang.String,java.lang.Character> entity
        +
        The table of entity values. It initially contains Character values for + amp, apos, gt, lt, quot. +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        XMLTokener

        +
        public XMLTokener(java.lang.String s)
        +
        Construct an XMLTokener from a string.
        +
        +
        Parameters:
        +
        s - A source string.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        nextCDATA

        +
        public java.lang.String nextCDATA()
        +                           throws JSONException
        +
        Get the text in the CDATA block.
        +
        +
        Returns:
        +
        The string up to the ]]>.
        +
        Throws:
        +
        JSONException - + If the ]]> is not found. +
        +
        +
      • +
      + + + +
        +
      • +

        nextContent

        +
        public java.lang.Object nextContent()
        +                             throws JSONException
        +
        Get the next XML outer token, trimming whitespace. There are two kinds + of tokens: the '<' character which begins a markup tag, and the content + text between markup tags. +
        +
        +
        Returns:
        +
        A string, or a '<' Character, or null if there is no more + source text. +
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      + + + +
        +
      • +

        nextEntity

        +
        public java.lang.Object nextEntity(char ampersand)
        +                            throws JSONException
        +
        Return the next entity. These entities are translated to Characters: + & ' > < ". +
        +
        +
        Parameters:
        +
        ampersand - An ampersand character.
        +
        Returns:
        +
        A Character or an entity String if the entity is not recognized.
        +
        Throws:
        +
        JSONException - + If missing ';' in XML entity. +
        +
        +
      • +
      + + + +
        +
      • +

        nextMeta

        +
        public java.lang.Object nextMeta()
        +                          throws JSONException
        +
        Returns the next XML meta token. This is used for skipping over + and structures. +
        +
        +
        Returns:
        +
        Syntax characters (< > / = ! ?) are returned as + Character, and strings and names are returned as Boolean. We + don't care + what the values actually are. +
        +
        Throws:
        +
        JSONException - + If a string is not properly closed or if the XML + is badly structured. +
        +
        +
      • +
      + + + +
        +
      • +

        nextToken

        +
        public java.lang.Object nextToken()
        +                           throws JSONException
        +
        Get the next XML Token. These tokens are found inside of angle + brackets. It may be one of these characters: / > = ! ? or it + may be a string wrapped in single quotes or double quotes, or it may be a + name. +
        +
        +
        Returns:
        +
        a String or a Character.
        +
        Throws:
        +
        JSONException - + If the XML is not well formed. +
        +
        +
      • +
      + + + +
        +
      • +

        skipPast

        +
        public boolean skipPast(java.lang.String to)
        +                 throws JSONException
        +
        Skip characters until past the requested string. + If it is not found, we are left at the end of the source with a result of + false. +
        +
        +
        Parameters:
        +
        to - A string to skip past.
        +
        Throws:
        +
        JSONException +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/json/package-frame.html new file mode 100644 index 000000000..ec70d73b3 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/package-frame.html @@ -0,0 +1,53 @@ + + + + + + com.intellectualcrafters.json + + + + +

com.intellectualcrafters.json +

+ +
+

Interfaces

+ +

Classes

+ +

Exceptions

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/json/package-summary.html new file mode 100644 index 000000000..f0b3232ff --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/package-summary.html @@ -0,0 +1,292 @@ + + + + + + com.intellectualcrafters.json + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.json

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/json/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/json/package-tree.html new file mode 100644 index 000000000..e10e86da6 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/json/package-tree.html @@ -0,0 +1,201 @@ + + + + + + com.intellectualcrafters.json Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.json

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html b/PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html new file mode 100644 index 000000000..48be16651 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html @@ -0,0 +1,1611 @@ + + + + + + PlotMain + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot
+

Class PlotMain

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter, org.bukkit.command.TabExecutor, + org.bukkit.plugin.Plugin +
    +
    +
    +
    +
    public class PlotMain
    +extends org.bukkit.plugin.java.JavaPlugin
    +
    PlotMain class.
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringADMIN_PERMISSION  +
      static me.confuser.barapi.BarAPIbarAPI + +
      BarAPI object
      +
      static java.util.HashMap<org.bukkit.Material,java.lang.String> + booleanFlags + +
      Boolean Flags (material)
      +
      static org.bukkit.configuration.file.YamlConfigurationconfig + +
      The main configuration file
      +
      static java.io.FileconfigFile + +
      settings.properties
      +
      static java.sql.Connectionconnection + +
      MySQL Connection
      +
      static net.milkbowl.vault.economy.Economyeconomy + +
      Economy Object (vault)
      +
      static org.bukkit.configuration.file.YamlConfigurationstorage + +
      Contains storage options
      +
      static intstorage_ver + +
      Storage version
      +
      static java.io.FilestorageFile + +
      storage.properties
      +
      static booleanuseEconomy + +
      Use Economy?
      +
      static com.sk89q.worldedit.bukkit.WorldEditPluginworldEdit + +
      WorldEdit object
      +
      static com.sk89q.worldguard.bukkit.WorldGuardPluginworldGuard + +
      World Guard Object
      +
      static WorldGuardListenerworldGuardListener + +
      World Guard Listener
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotMain()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidaddPlotWorld(java.lang.String world, + PlotWorld plotworld, + PlotManager manager) 
      static voidBroadcast(C c) + +
      Broadcast publicly
      +
      static voidBroadcastWithPerms(C c) + +
      Broadcast a message to all admins
      +
      static voidcheckForExpiredPlots() + +
      Check for expired plots
      +
      static voidconfigs() + +
      Load configuration files
      +
      static voidcreateConfiguration(PlotWorld plotworld) 
      static java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getAllPlotsRaw()  +
      static java.sql.ConnectiongetConnection() + +
      Get MySQL Connection
      +
      org.bukkit.generator.ChunkGeneratorgetDefaultWorldGenerator(java.lang.String world, + java.lang.String id) + +
      !!
      +
      static longgetLastPlayed(java.util.UUID uuid)  +
      static PlotMaingetMain() + +
      Returns the main class.
      +
      static PlotManager + getPlotManager(java.lang.String world)  +
      static PlotManager + getPlotManager(org.bukkit.World world)  +
      static java.util.Set<Plot> + getPlots() + +
      Get all plots
      +
      static java.util.Set<Plot> + getPlots(org.bukkit.entity.Player player)  +
      static java.util.HashMap<PlotId,Plot>getPlots(java.lang.String world)  +
      static java.util.HashMap<PlotId,Plot>getPlots(org.bukkit.World world)  +
      static java.util.Set<Plot> + getPlots(org.bukkit.World world, + org.bukkit.entity.Player player) 
      static java.util.LinkedHashSet<Plot>getPlotsSorted() + +
      Get a sorted list of plots
      +
      static java.lang.String[]getPlotWorlds() + +
      get all plot worlds
      +
      static java.lang.String[]getPlotWorldsString()  +
      static UUIDSaver + getUUIDSaver() + +
      Get the uuid saver
      +
      static Plot[]getWorldPlots(org.bukkit.World world)  +
      static PlotWorldgetWorldSettings(java.lang.String world)  +
      static PlotWorldgetWorldSettings(org.bukkit.World world)  +
      static booleanhasPermission(org.bukkit.entity.Player player, + java.lang.String perm) + +
      Check a player for a permission
      + - Op has all permissions
      + - checks for '*' nodes +
      +
      static inthasPermissionRange(org.bukkit.entity.Player player, + java.lang.String stub, + int range) + +
      Check a range of permissions e.g.
      +
      static booleanhasPermissions(org.bukkit.entity.Player player, + java.lang.String[] perms) + +
      Check a player for a permission
      + - Op has all permissions
      + - checks for '*' nodes +
      +
      static booleanisPlotWorld(java.lang.String world)  +
      static booleanisPlotWorld(org.bukkit.World world)  +
      static voidkillAllEntities() + +
      Kill all entities on roads
      +
      static voidloadWorld(java.lang.String world, + org.bukkit.generator.ChunkGenerator generator) 
      static voidloadWorld(org.bukkit.World world) + +
      Adds an external world as a recognized PlotSquared world - The PlotWorld + class created is based off the configuration in the settings.yml - Do not + use this method unless the required world is preconfigured in the + settings.yml +
      +
      voidonDisable() + +
      On unload
      +
      voidonEnable() + +
      On Load.
      +
      static voidreloadTranslations()  +
      static booleanremovePlot(java.lang.String world, + PlotId id, + boolean callEvent) 
      static voidremovePlotWorld(java.lang.String world)  +
      static voidsendConsoleSenderMessage(C c) + +
      Send a message to the console
      +
      static voidsendConsoleSenderMessage(java.lang.String string) + +
      Send a message to the console.
      +
      static voidsetAllPlotsRaw(java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots) 
      static voidsetAllPlotsRaw(java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots) 
      static voidsetUUIDSaver(UUIDSaver saver) + +
      Set the uuid saver
      +
      static booleanteleportPlayer(org.bukkit.entity.Player player, + org.bukkit.Location from, + Plot plot) + +
      ..
      +
      static voidupdatePlot(Plot plot) + +
      Replace the plot object with an updated version
      +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.plugin.java.JavaPlugin

        + getClassLoader, getCommand, getConfig, getDatabase, getDatabaseClasses, getDataFolder, getDescription, + getFile, getLogger, getPlugin, getPluginLoader, getProvidingPlugin, getResource, getServer, getTextResource, + initialize, installDDL, isEnabled, isInitialized, isNaggable, onCommand, onLoad, onTabComplete, + reloadConfig, removeDDL, saveConfig, saveDefaultConfig, saveResource, setEnabled, setNaggable, + toString
      • +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.plugin.PluginBase

        + equals, getName, hashCode
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        ADMIN_PERMISSION

        +
        public static final java.lang.String ADMIN_PERMISSION
        +
        +
        See Also:
        +
        Constant + Field Values
        +
        +
      • +
      + + + +
        +
      • +

        configFile

        +
        public static java.io.File configFile
        +
        settings.properties
        +
      • +
      + + + +
        +
      • +

        config

        +
        public static org.bukkit.configuration.file.YamlConfiguration config
        +
        The main configuration file
        +
      • +
      + + + +
        +
      • +

        storageFile

        +
        public static java.io.File storageFile
        +
        storage.properties
        +
      • +
      + + + +
        +
      • +

        storage

        +
        public static org.bukkit.configuration.file.YamlConfiguration storage
        +
        Contains storage options
        +
      • +
      + + + +
        +
      • +

        storage_ver

        +
        public static int storage_ver
        +
        Storage version
        +
      • +
      + + + +
        +
      • +

        connection

        +
        public static java.sql.Connection connection
        +
        MySQL Connection
        +
      • +
      + + + +
        +
      • +

        worldEdit

        +
        public static com.sk89q.worldedit.bukkit.WorldEditPlugin worldEdit
        +
        WorldEdit object
        +
      • +
      + + + +
        +
      • +

        barAPI

        +
        public static me.confuser.barapi.BarAPI barAPI
        +
        BarAPI object
        +
      • +
      + + + +
        +
      • +

        worldGuard

        +
        public static com.sk89q.worldguard.bukkit.WorldGuardPlugin worldGuard
        +
        World Guard Object
        +
      • +
      + + + +
        +
      • +

        worldGuardListener

        +
        public static WorldGuardListener worldGuardListener
        +
        World Guard Listener
        +
      • +
      + + + +
        +
      • +

        economy

        +
        public static net.milkbowl.vault.economy.Economy economy
        +
        Economy Object (vault)
        +
      • +
      + + + +
        +
      • +

        useEconomy

        +
        public static boolean useEconomy
        +
        Use Economy?
        +
      • +
      + + + +
        +
      • +

        booleanFlags

        +
        public static java.util.HashMap<org.bukkit.Material,java.lang.String> booleanFlags
        +
        Boolean Flags (material)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotMain

        +
        public PlotMain()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        checkForExpiredPlots

        +
        public static void checkForExpiredPlots()
        +
        Check for expired plots
        +
      • +
      + + + +
        +
      • +

        hasPermissionRange

        +
        public static int hasPermissionRange(org.bukkit.entity.Player player,
        +                     java.lang.String stub,
        +                     int range)
        +
        Check a range of permissions e.g. 'plots.plot.<0-100>'
        + Returns highest integer in range. +
        +
        +
        Parameters:
        +
        player - to check
        +
        stub - to check
        +
        range - tp check
        +
        Returns:
        +
        permitted range
        +
        +
      • +
      + + + +
        +
      • +

        hasPermissions

        +
        public static boolean hasPermissions(org.bukkit.entity.Player player,
        +                     java.lang.String[] perms)
        +
        Check a player for a permission
        + - Op has all permissions
        + - checks for '*' nodes +
        +
        +
        Parameters:
        +
        player - to check
        +
        perms - to check
        +
        Returns:
        +
        true of player has permissions
        +
        +
      • +
      + + + +
        +
      • +

        getUUIDSaver

        +
        public static UUIDSaver getUUIDSaver()
        +
        Get the uuid saver
        +
        +
        Returns:
        +
        uuid saver
        +
        See Also:
        +
        com.intellectualcrafters.plot.uuid.UUIDSaver;
        +
        +
      • +
      + + + +
        +
      • +

        setUUIDSaver

        +
        public static void setUUIDSaver(UUIDSaver saver)
        +
        Set the uuid saver
        +
        +
        Parameters:
        +
        saver - new saver
        +
        +
      • +
      + + + +
        +
      • +

        hasPermission

        +
        public static boolean hasPermission(org.bukkit.entity.Player player,
        +                    java.lang.String perm)
        +
        Check a player for a permission
        + - Op has all permissions
        + - checks for '*' nodes +
        +
        +
        Parameters:
        +
        player - to check
        +
        perm - to check
        +
        Returns:
        +
        true if player has the permission
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public static java.util.Set<Plot> getPlots()
        +
        Get all plots
        +
        +
        Returns:
        +
        HashMap containing the plot ID and the plot object.
        +
        +
      • +
      + + + +
        +
      • +

        getPlotsSorted

        +
        public static java.util.LinkedHashSet<Plot> getPlotsSorted()
        +
        Get a sorted list of plots
        +
        +
        Returns:
        +
        sorted list
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public static java.util.Set<Plot> getPlots(org.bukkit.entity.Player player)
        +
        +
        Parameters:
        +
        player - player
        +
        Returns:
        +
        Set Containing the players plots
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public static java.util.Set<Plot> getPlots(org.bukkit.World world,
        +                           org.bukkit.entity.Player player)
        +
        +
        Parameters:
        +
        world - plot world
        +
        player - plot owner
        +
        Returns:
        +
        players plots
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public static java.util.HashMap<PlotId,Plot> getPlots(java.lang.String world)
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public static java.util.HashMap<PlotId,Plot> getPlots(org.bukkit.World world)
        +
        +
        Parameters:
        +
        world - plot world
        +
        Returns:
        +
        plots in world
        +
        +
      • +
      + + + +
        +
      • +

        getPlotWorlds

        +
        public static java.lang.String[] getPlotWorlds()
        +
        get all plot worlds
        +
      • +
      + + + +
        +
      • +

        getPlotWorldsString

        +
        public static java.lang.String[] getPlotWorldsString()
        +
        +
        Returns:
        +
        plots worlds
        +
        +
      • +
      + + + +
        +
      • +

        isPlotWorld

        +
        public static boolean isPlotWorld(org.bukkit.World world)
        +
        +
        Parameters:
        +
        world - plotworld(?)
        +
        Returns:
        +
        true if the world is a plotworld
        +
        +
      • +
      + + + +
        +
      • +

        isPlotWorld

        +
        public static boolean isPlotWorld(java.lang.String world)
        +
        +
        Parameters:
        +
        world - plotworld(?)
        +
        Returns:
        +
        true if the world is a plotworld
        +
        +
      • +
      + + + +
        +
      • +

        getPlotManager

        +
        public static PlotManager getPlotManager(org.bukkit.World world)
        +
        +
        Parameters:
        +
        world - World to get manager for
        +
        Returns:
        +
        manager for world
        +
        +
      • +
      + + + +
        +
      • +

        getPlotManager

        +
        public static PlotManager getPlotManager(java.lang.String world)
        +
        +
        Parameters:
        +
        world - world
        +
        Returns:
        +
        PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        getWorldSettings

        +
        public static PlotWorld getWorldSettings(org.bukkit.World world)
        +
        +
        Parameters:
        +
        world - to search
        +
        Returns:
        +
        PlotWorld object
        +
        +
      • +
      + + + +
        +
      • +

        getWorldSettings

        +
        public static PlotWorld getWorldSettings(java.lang.String world)
        +
        +
        Parameters:
        +
        world - to search
        +
        Returns:
        +
        PlotWorld object
        +
        +
      • +
      + + + +
        +
      • +

        getWorldPlots

        +
        public static Plot[] getWorldPlots(org.bukkit.World world)
        +
        +
        Parameters:
        +
        world - world to search
        +
        Returns:
        +
        set containing the plots for a world
        +
        +
      • +
      + + + +
        +
      • +

        removePlot

        +
        public static boolean removePlot(java.lang.String world,
        +                 PlotId id,
        +                 boolean callEvent)
        +
      • +
      + + + +
        +
      • +

        updatePlot

        +
        public static void updatePlot(Plot plot)
        +
        Replace the plot object with an updated version
        +
        +
        Parameters:
        +
        plot - plot object
        +
        +
      • +
      + + + +
        +
      • +

        getConnection

        +
        public static java.sql.Connection getConnection()
        +
        Get MySQL Connection
        +
        +
        Returns:
        +
        connection MySQL Connection.
        +
        +
      • +
      + + + +
        +
      • +

        sendConsoleSenderMessage

        +
        public static void sendConsoleSenderMessage(java.lang.String string)
        +
        Send a message to the console.
        +
        +
        Parameters:
        +
        string - message
        +
        +
      • +
      + + + +
        +
      • +

        teleportPlayer

        +
        public static boolean teleportPlayer(org.bukkit.entity.Player player,
        +                     org.bukkit.Location from,
        +                     Plot plot)
        +
        ..
        +
      • +
      + + + +
        +
      • +

        sendConsoleSenderMessage

        +
        public static void sendConsoleSenderMessage(C c)
        +
        Send a message to the console
        +
        +
        Parameters:
        +
        c - message
        +
        +
      • +
      + + + +
        +
      • +

        Broadcast

        +
        public static void Broadcast(C c)
        +
        Broadcast publicly
        +
        +
        Parameters:
        +
        c - message
        +
        +
      • +
      + + + +
        +
      • +

        getMain

        +
        public static PlotMain getMain()
        +
        Returns the main class.
        +
        +
        Returns:
        +
        (this class)
        +
        +
      • +
      + + + +
        +
      • +

        BroadcastWithPerms

        +
        public static void BroadcastWithPerms(C c)
        +
        Broadcast a message to all admins
        +
        +
        Parameters:
        +
        c - message
        +
        +
      • +
      + + + +
        +
      • +

        reloadTranslations

        +
        public static void reloadTranslations()
        +                               throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getLastPlayed

        +
        public static long getLastPlayed(java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        configs

        +
        public static void configs()
        +
        Load configuration files
        +
      • +
      + + + +
        +
      • +

        killAllEntities

        +
        public static void killAllEntities()
        +
        Kill all entities on roads
        +
      • +
      + + + +
        +
      • +

        createConfiguration

        +
        public static void createConfiguration(PlotWorld plotworld)
        +
      • +
      + + + +
        +
      • +

        loadWorld

        +
        public static void loadWorld(java.lang.String world,
        +             org.bukkit.generator.ChunkGenerator generator)
        +
      • +
      + + + +
        +
      • +

        loadWorld

        +
        public static void loadWorld(org.bukkit.World world)
        +
        Adds an external world as a recognized PlotSquared world - The PlotWorld + class created is based off the configuration in the settings.yml - Do not + use this method unless the required world is preconfigured in the + settings.yml +
        +
        +
        Parameters:
        +
        world - to load
        +
        +
      • +
      + + + +
        +
      • +

        addPlotWorld

        +
        public static void addPlotWorld(java.lang.String world,
        +                PlotWorld plotworld,
        +                PlotManager manager)
        +
      • +
      + + + +
        +
      • +

        removePlotWorld

        +
        public static void removePlotWorld(java.lang.String world)
        +
      • +
      + + + +
        +
      • +

        getAllPlotsRaw

        +
        public static java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getAllPlotsRaw()
        +
      • +
      + + + +
        +
      • +

        setAllPlotsRaw

        +
        public static void setAllPlotsRaw(java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots)
        +
      • +
      + + + +
        +
      • +

        setAllPlotsRaw

        +
        public static void setAllPlotsRaw(java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots)
        +
      • +
      + + + +
        +
      • +

        getDefaultWorldGenerator

        +
        public org.bukkit.generator.ChunkGenerator getDefaultWorldGenerator(java.lang.String world,
        +                                                           java.lang.String id)
        +
        !!WorldGeneration!!
        +
        +
        Specified by:
        +
        getDefaultWorldGenerator in interface org.bukkit.plugin.Plugin
        +
        Overrides:
        +
        getDefaultWorldGenerator in class org.bukkit.plugin.java.JavaPlugin +
        +
        +
      • +
      + + + +
        +
      • +

        onEnable

        +
        public void onEnable()
        +
        On Load.
        +
        +
        Specified by:
        +
        onEnable in interface org.bukkit.plugin.Plugin
        +
        Overrides:
        +
        onEnable in class org.bukkit.plugin.java.JavaPlugin
        +
        +
      • +
      + + + +
        +
      • +

        onDisable

        +
        public void onDisable()
        +
        On unload
        +
        +
        Specified by:
        +
        onDisable in interface org.bukkit.plugin.Plugin
        +
        Overrides:
        +
        onDisable in class org.bukkit.plugin.java.JavaPlugin
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html new file mode 100644 index 000000000..dbe0d1e1f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html @@ -0,0 +1,1509 @@ + + + + + + PlotAPI + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.api
+

Class PlotAPI

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotAPI
    +extends java.lang.Object
    +
    PlotSquared API
    +
    +
    Version:
    +
    API 2.0
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringADMIN_PERMISSION + +
      Permission that allows for admin access, + this permission node will allow the player + to use any part of the plugin, without limitations. +
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotAPI(org.bukkit.plugin.java.JavaPlugin plugin) + +
      Constructor.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidaddFlag(AbstractFlag flag) + +
      Register a flag for use in plots
      +
      voidaddPlotWorld(java.lang.String world, + PlotWorld plotWorld, + PlotManager manager) + +
      Add a plot world
      +
      intgetAllowedPlots(org.bukkit.entity.Player player) + +
      Get the numbers of plots, which the player is able to build in
      +
      java.util.Set<Plot> + getAllPlots() + +
      Get all plots
      +
      org.bukkit.LocationgetBottomLocation(Plot p) + +
      Get Bottom Location (min, min, min)
      +
      CgetCaptions() + +
      C class contains all the captions from the translations.yml file.
      +
      org.bukkit.configuration.file.YamlConfigurationgetConfig()  +
      FlagManagergetFlagManager() + +
      FlagManager class contains methods relating to plot flags
      +
      AbstractFlag[]getFlags() + +
      get all the currently registered flags
      +
      org.bukkit.LocationgetHomeLocation(Plot p) + +
      Get home location
      +
      org.bukkit.Location[]getLocations(Plot p) + +
      Get plot locations
      +
      PlotMaingetMain() + +
      Get the main class for this plugin
      + - Contains a lot of fields and methods - not very well organized
      + Only use this if you really need it +
      +
      PlayerFunctionsgetPlayerFunctions() + +
      PlayerFunctions class contains useful methods relating to players - Some + player/plot methods are here as well +
      +
      intgetPlayerPlotCount(org.bukkit.World world, + org.bukkit.entity.Player player) + +
      Get the player plot count
      +
      java.util.Set<Plot> + getPlayerPlots(org.bukkit.entity.Player player) + +
      Return all plots for a player
      +
      java.util.Set<Plot> + getPlayerPlots(org.bukkit.World world, + org.bukkit.entity.Player player) + +
      Get a collection containing the players plots
      +
      PlotgetPlot(org.bukkit.Location l) + +
      Get a plot based on the location
      +
      PlotgetPlot(org.bukkit.entity.Player player) + +
      Get a plot based on the player location
      +
      PlotgetPlot(org.bukkit.World world, + int x, + int z) + +
      Get a plot based on the ID
      +
      PlotHelpergetPlotHelper() + +
      PlotHelper class contains useful methods relating to plots.
      +
      PlotMaingetPlotMain() + +
      Get the plotMain class
      +
      PlotManagergetPlotManager(java.lang.String world) + +
      Get the plot manager for a world. - Contains useful low level methods for + plot merging, clearing, and tessellation +
      +
      PlotManagergetPlotManager(org.bukkit.World world) + +
      Get the plot manager for a world. - Most of these methods can be accessed + through the PlotHelper +
      +
      Plot[]getPlots(org.bukkit.World world) + +
      Get all plots for the world
      +
      Plot[]getPlots(org.bukkit.World world, + org.bukkit.entity.Player plr, + boolean just_owner) + +
      Get all plots for the player
      +
      java.lang.String[]getPlotWorlds() + +
      Get all plot worlds
      +
      SchematicHandlergetSchematicHandler() + +
      SchematicHandler class contains methods related to pasting schematics
      +
      org.bukkit.configuration.file.YamlConfigurationgetStorage()  +
      org.bukkit.LocationgetTopLocation(Plot p) + +
      Get Top Location (max, max, max)
      +
      PlotWorldgetWorldSettings(java.lang.String world) + +
      Get the settings for a world (settings bundled in PlotWorld class)
      +
      PlotWorldgetWorldSettings(org.bukkit.World world) + +
      Get the settings for a world (settings bundled in PlotWorld class) - You + will need to downcast for the specific settings a Generator has. e.g. +
      +
      booleanhasPlot(org.bukkit.World world, + org.bukkit.entity.Player player) + +
      Check whether or not a player has a plot
      +
      booleanisInPlot(org.bukkit.entity.Player player) + +
      Check whether or not a player is in a plot
      +
      booleanisPlotWorld(org.bukkit.World world) + +
      Get if plot world
      +
      voidregisterCommand(SubCommand c) + +
      Register a subcommand
      +
      voidsendConsoleMessage(C c) + +
      Send a message to the console
      +
      voidsendConsoleMessage(java.lang.String msg) + +
      Send a message to the console. - Supports color codes
      +
      voidsendMessage(org.bukkit.entity.Player player, + C c) + +
      Send a message to a player.
      +
      voidsendMessage(org.bukkit.entity.Player player, + java.lang.String string) + +
      Send a message to a player. - Supports color codes
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        ADMIN_PERMISSION

        +
        public static final java.lang.String ADMIN_PERMISSION
        +
        Permission that allows for admin access, + this permission node will allow the player + to use any part of the plugin, without limitations. +
        +
        +
        See Also:
        +
        + Constant + Field Values
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotAPI

        +
        public PlotAPI(org.bukkit.plugin.java.JavaPlugin plugin)
        +
        Constructor. Insert any Plugin. + (Optimally the plugin that is accessing the method) +
        +
        +
        Parameters:
        +
        plugin - Plugin used to access this method
        +
        Throws:
        +
        PlotSquaredException - + if the program fails to fetch the PlotMain instance +
        +
        See Also:
        +
        PlotMain
        +
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html new file mode 100644 index 000000000..c1373ecaa --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html @@ -0,0 +1,22 @@ + + + + + + com.intellectualcrafters.plot.api + + + + +

com.intellectualcrafters.plot.api +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html new file mode 100644 index 000000000..183d9b2e0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html @@ -0,0 +1,137 @@ + + + + + + com.intellectualcrafters.plot.api + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.api

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html new file mode 100644 index 000000000..b55341c6f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html @@ -0,0 +1,130 @@ + + + + + + com.intellectualcrafters.plot.api Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.api

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html new file mode 100644 index 000000000..196e8272f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html @@ -0,0 +1,450 @@ + + + + + + Auto + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Auto

+
+
+ +
+
    +
  • +
    +
    +
    public class Auto
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Auto()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      static PlotIdgetNextPlot(PlotId id, + int step) 
      booleanisUnowned(org.bukkit.World world, + PlotId pos1, + PlotId pos2)  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        lastPlot

        +
        public static PlotId lastPlot
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Auto

        +
        public Auto()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getNextPlot

        +
        public static PlotId getNextPlot(PlotId id,
        +                 int step)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      + + + +
        +
      • +

        isUnowned

        +
        public boolean isUnowned(org.bukkit.World world,
        +                PlotId pos1,
        +                PlotId pos2)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html new file mode 100644 index 000000000..d4c41ac99 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html @@ -0,0 +1,378 @@ + + + + + + Ban + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Ban

+
+
+ +
+
    +
  • +
    +
    +
    public class Ban
    +extends SubCommand
    +
    Created 2014-11-09 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Ban()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Ban

        +
        public Ban()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html new file mode 100644 index 000000000..4b085c84b --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html @@ -0,0 +1,422 @@ + + + + + + Claim + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Claim

+
+
+ +
+
    +
  • +
    +
    +
    public class Claim
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Claim()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static booleanclaimPlot(org.bukkit.entity.Player player, + Plot plot, + boolean teleport, + boolean auto) 
      static booleanclaimPlot(org.bukkit.entity.Player player, + Plot plot, + boolean teleport, + java.lang.String schematic, + boolean auto) 
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Claim

        +
        public Claim()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        claimPlot

        +
        public static boolean claimPlot(org.bukkit.entity.Player player,
        +                Plot plot,
        +                boolean teleport,
        +                boolean auto)
        +
      • +
      + + + +
        +
      • +

        claimPlot

        +
        public static boolean claimPlot(org.bukkit.entity.Player player,
        +                Plot plot,
        +                boolean teleport,
        +                java.lang.String schematic,
        +                boolean auto)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html new file mode 100644 index 000000000..4c4a68e47 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html @@ -0,0 +1,373 @@ + + + + + + Clear + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Clear

+
+
+ +
+
    +
  • +
    +
    +
    public class Clear
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Clear()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Clear

        +
        public Clear()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html new file mode 100644 index 000000000..79c13c881 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html @@ -0,0 +1,373 @@ + + + + + + Clipboard + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Clipboard

+
+
+ +
+
    +
  • +
    +
    +
    public class Clipboard
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Clipboard()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Clipboard

        +
        public Clipboard()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html new file mode 100644 index 000000000..1dca7cdfc --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html @@ -0,0 +1,850 @@ + + + + + + Command + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Enum Command

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<Command>
    +
    +
    +
    +
    public enum Command
    +extends java.lang.Enum<Command>
    +
    Created by Citymonstret on 2014-08-03.
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetAlias()  +
      java.lang.StringgetCommand()  +
      CommandPermission + getPermission()  +
      static CommandvalueOf(java.lang.String name) + +
      Returns the enum constant of this type with the specified name.
      +
      static Command[]values() + +
      Returns an array containing the constants of this enum type, in + the order they are declared. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Enum

        + clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, + toString, valueOf
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Enum Constant Detail

      + + + +
        +
      • +

        SWAP

        +
        public static final Command SWAP
        +
      • +
      + + + +
        +
      • +

        INBOX

        +
        public static final Command INBOX
        +
      • +
      + + + +
        +
      • +

        DEBUGCLAIMTEST

        +
        public static final Command DEBUGCLAIMTEST
        +
      • +
      + + + +
        +
      • +

        COMMENT

        +
        public static final Command COMMENT
        +
      • +
      + + + +
        +
      • +

        TRUSTED

        +
        public static final Command TRUSTED
        +
      • +
      + + + +
        +
      • +

        PASTE

        +
        public static final Command PASTE
        +
      • +
      + + + +
        +
      • +

        CLIPBOARD

        +
        public static final Command CLIPBOARD
        +
      • +
      + + + +
        +
      • +

        COPY

        +
        public static final Command COPY
        +
      • +
      + + + +
        +
      • +

        KICK

        +
        public static final Command KICK
        +
      • +
      + + + +
        +
      • +

        HELPERS

        +
        public static final Command HELPERS
        +
      • +
      + + + +
        +
      • +

        DENIED

        +
        public static final Command DENIED
        +
      • +
      + + + +
        +
      • +

        CLAIM

        +
        public static final Command CLAIM
        +
      • +
      + + + +
        +
      • +

        MERGE

        +
        public static final Command MERGE
        +
      • +
      + + + +
        +
      • +

        UNLINK

        +
        public static final Command UNLINK
        +
      • +
      + + + +
        +
      • +

        CLEAR

        +
        public static final Command CLEAR
        +
      • +
      + + + +
        +
      • +

        DELETE

        +
        public static final Command DELETE
        +
      • +
      + + + +
        +
      • +

        DEBUG

        +
        public static final Command DEBUG
        +
      • +
      + + + +
        +
      • +

        INTERFACE

        +
        public static final Command INTERFACE
        +
      • +
      + + + +
        +
      • +

        HOME

        +
        public static final Command HOME
        +
      • +
      + + + +
        +
      • +

        INFO

        +
        public static final Command INFO
        +
      • +
      + + + +
        +
      • +

        LIST

        +
        public static final Command LIST
        +
      • +
      + + + +
        +
      • +

        SET

        +
        public static final Command SET
        +
      • +
      + + + +
        +
      • +

        PURGE

        +
        public static final Command PURGE
        +
      • +
      + + + +
        +
      • +

        SETUP

        +
        public static final Command SETUP
        +
      • +
      + + + +
        +
      • +

        OP

        +
        public static final Command OP
        +
      • +
      + + + +
        +
      • +

        DEOP

        +
        public static final Command DEOP
        +
      • +
      + + + +
        +
      • +

        BAN

        +
        public static final Command BAN
        +
      • +
      + + + +
        +
      • +

        UNBAN

        +
        public static final Command UNBAN
        +
      • +
      + + + +
        +
      • +

        DATABASE

        +
        public static final Command DATABASE
        +
      • +
      + + + +
        +
      • +

        TP

        +
        public static final Command TP
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static Command[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (Command c : Command.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static Command valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the + specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        getCommand

        +
        public java.lang.String getCommand()
        +
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getAlias

        +
        public java.lang.String getAlias()
        +
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPermission

        +
        public CommandPermission getPermission()
        +
        +
        Returns:
        +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html new file mode 100644 index 000000000..70641617a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html @@ -0,0 +1,328 @@ + + + + + + CommandPermission + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class CommandPermission

+
+
+ +
+
    +
  • +
    +
    +
    public class CommandPermission
    +extends java.lang.Object
    +
    Created by Citymonstret on 2014-08-03.
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.lang.Stringpermission  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      CommandPermission(java.lang.String permission)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanhasPermission(org.bukkit.entity.Player player)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        permission

        +
        public java.lang.String permission
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        CommandPermission

        +
        public CommandPermission(java.lang.String permission)
        +
        +
        Parameters:
        +
        permission - Command Permission
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        hasPermission

        +
        public boolean hasPermission(org.bukkit.entity.Player player)
        +
        +
        Parameters:
        +
        player - Does the player have the permission?
        +
        Returns:
        +
        true of player has the required permission node
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html new file mode 100644 index 000000000..9a1e8b811 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html @@ -0,0 +1,373 @@ + + + + + + Comment + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Comment

+
+
+ +
+
    +
  • +
    +
    +
    public class Comment
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Comment()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Comment

        +
        public Comment()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html new file mode 100644 index 000000000..920217bb6 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html @@ -0,0 +1,373 @@ + + + + + + Copy + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Copy

+
+
+ +
+
    +
  • +
    +
    +
    public class Copy
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Copy()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Copy

        +
        public Copy()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html new file mode 100644 index 000000000..ba0bb0331 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html @@ -0,0 +1,378 @@ + + + + + + DEOP + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class DEOP

+
+
+ +
+
    +
  • +
    +
    +
    public class DEOP
    +extends SubCommand
    +
    Created 2014-11-09 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      DEOP()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DEOP

        +
        public DEOP()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html new file mode 100644 index 000000000..a3233f5e7 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html @@ -0,0 +1,400 @@ + + + + + + Database + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Database

+
+
+ +
+
    +
  • +
    +
    +
    public class Database
    +extends SubCommand
    +
    Created 2014-11-15 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Database()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      static voidinsertPlots(SQLManager manager, + java.util.UUID requester, + java.sql.Connection c) 
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Database

        +
        public Database()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        insertPlots

        +
        public static void insertPlots(SQLManager manager,
        +               java.util.UUID requester,
        +               java.sql.Connection c)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html new file mode 100644 index 000000000..541813592 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html @@ -0,0 +1,373 @@ + + + + + + Debug + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Debug

+
+
+ +
+
    +
  • +
    +
    +
    public class Debug
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Debug()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Debug

        +
        public Debug()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html new file mode 100644 index 000000000..c1e4f0b04 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html @@ -0,0 +1,419 @@ + + + + + + DebugClaimTest + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class DebugClaimTest

+
+
+ +
+
    +
  • +
    +
    +
    public class DebugClaimTest
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      DebugClaimTest()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static booleanclaimPlot(org.bukkit.entity.Player player, + Plot plot, + boolean teleport) 
      static booleanclaimPlot(org.bukkit.entity.Player player, + Plot plot, + boolean teleport, + java.lang.String schematic) 
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DebugClaimTest

        +
        public DebugClaimTest()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        claimPlot

        +
        public static boolean claimPlot(org.bukkit.entity.Player player,
        +                Plot plot,
        +                boolean teleport)
        +
      • +
      + + + +
        +
      • +

        claimPlot

        +
        public static boolean claimPlot(org.bukkit.entity.Player player,
        +                Plot plot,
        +                boolean teleport,
        +                java.lang.String schematic)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html new file mode 100644 index 000000000..477b559b1 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html @@ -0,0 +1,377 @@ + + + + + + DebugLoadTest + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class DebugLoadTest

+
+
+ +
+
    +
  • +
    +
    +
    public class DebugLoadTest
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      DebugLoadTest()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DebugLoadTest

        +
        public DebugLoadTest()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html new file mode 100644 index 000000000..69975f67c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html @@ -0,0 +1,377 @@ + + + + + + DebugSaveTest + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class DebugSaveTest

+
+
+ +
+
    +
  • +
    +
    +
    public class DebugSaveTest
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      DebugSaveTest()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DebugSaveTest

        +
        public DebugSaveTest()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html new file mode 100644 index 000000000..8c1e68f4c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html @@ -0,0 +1,373 @@ + + + + + + Delete + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Delete

+
+
+ +
+
    +
  • +
    +
    +
    public class Delete
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Delete()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Delete

        +
        public Delete()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html new file mode 100644 index 000000000..21e00b989 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html @@ -0,0 +1,373 @@ + + + + + + Denied + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Denied

+
+
+ +
+
    +
  • +
    +
    +
    public class Denied
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Denied()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Denied

        +
        public Denied()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html new file mode 100644 index 000000000..045057e21 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html @@ -0,0 +1,373 @@ + + + + + + Help + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Help

+
+
+ +
+
    +
  • +
    +
    +
    public class Help
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Help()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Help

        +
        public Help()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html new file mode 100644 index 000000000..fddd94e41 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html @@ -0,0 +1,373 @@ + + + + + + Helpers + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Helpers

+
+
+ +
+
    +
  • +
    +
    +
    public class Helpers
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Helpers()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Helpers

        +
        public Helpers()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html new file mode 100644 index 000000000..07836eff9 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html @@ -0,0 +1,377 @@ + + + + + + Home + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Home

+
+
+ +
+
    +
  • +
    +
    +
    public class Home
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Home()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Home

        +
        public Home()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html new file mode 100644 index 000000000..bef8b924a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html @@ -0,0 +1,373 @@ + + + + + + Inbox + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Inbox

+
+
+ +
+
    +
  • +
    +
    +
    public class Inbox
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Inbox()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Inbox

        +
        public Inbox()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html new file mode 100644 index 000000000..e69a058b0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html @@ -0,0 +1,377 @@ + + + + + + Info + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Info

+
+
+ +
+
    +
  • +
    +
    +
    public class Info
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Info()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player player, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Info

        +
        public Info()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player player,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        player - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html new file mode 100644 index 000000000..0adb5e8c1 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html @@ -0,0 +1,373 @@ + + + + + + Inventory + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Inventory

+
+
+ +
+
    +
  • +
    +
    +
    public class Inventory
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Inventory()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Inventory

        +
        public Inventory()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html new file mode 100644 index 000000000..c6cd442f7 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html @@ -0,0 +1,373 @@ + + + + + + Kick + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Kick

+
+
+ +
+
    +
  • +
    +
    +
    public class Kick
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Kick()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Kick

        +
        public Kick()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html new file mode 100644 index 000000000..1ee984238 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html @@ -0,0 +1,444 @@ + + + + + + MainCommand + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class MainCommand

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter
    +
    +
    +
    +
    public class MainCommand
    +extends java.lang.Object
    +implements org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter
    +
    PlotMain command class
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringMAIN_PERMISSION  +
      static java.util.ArrayList<SubCommand> + subCommands  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      MainCommand()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static java.util.List<SubCommand> + getCommands(SubCommand.CommandCategory category, + org.bukkit.entity.Player player) 
      static java.util.List<java.lang.String>helpMenu(org.bukkit.entity.Player player, + SubCommand.CommandCategory category, + int page) 
      static booleanno_permission(org.bukkit.entity.Player player, + java.lang.String permission) 
      booleanonCommand(org.bukkit.command.CommandSender sender, + org.bukkit.command.Command cmd, + java.lang.String commandLabel, + java.lang.String[] args) 
      java.util.List<java.lang.String>onTabComplete(org.bukkit.command.CommandSender commandSender, + org.bukkit.command.Command command, + java.lang.String s, + java.lang.String[] strings) 
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        MAIN_PERMISSION

        +
        public static final java.lang.String MAIN_PERMISSION
        +
        +
        See Also:
        +
        + Constant + Field Values
        +
        +
      • +
      + + + +
        +
      • +

        subCommands

        +
        public static java.util.ArrayList<SubCommand> subCommands
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        MainCommand

        +
        public MainCommand()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        no_permission

        +
        public static boolean no_permission(org.bukkit.entity.Player player,
        +                    java.lang.String permission)
        +
      • +
      + + + + + + + +
        +
      • +

        helpMenu

        +
        public static java.util.List<java.lang.String> helpMenu(org.bukkit.entity.Player player,
        +                                        SubCommand.CommandCategory category,
        +                                        int page)
        +
      • +
      + + + +
        +
      • +

        onCommand

        +
        public boolean onCommand(org.bukkit.command.CommandSender sender,
        +                org.bukkit.command.Command cmd,
        +                java.lang.String commandLabel,
        +                java.lang.String[] args)
        +
        +
        Specified by:
        +
        onCommand in interface org.bukkit.command.CommandExecutor +
        +
        +
      • +
      + + + +
        +
      • +

        onTabComplete

        +
        public java.util.List<java.lang.String> onTabComplete(org.bukkit.command.CommandSender commandSender,
        +                                             org.bukkit.command.Command command,
        +                                             java.lang.String s,
        +                                             java.lang.String[] strings)
        +
        +
        Specified by:
        +
        onTabComplete in interface org.bukkit.command.TabCompleter +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html new file mode 100644 index 000000000..8ce918e80 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html @@ -0,0 +1,436 @@ + + + + + + Merge + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Merge

+
+
+ +
+
    +
  • +
    +
    +
    public class Merge
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Merge()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringdirection(float yaw)  +
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        values

        +
        public static java.lang.String[] values
        +
      • +
      + + + +
        +
      • +

        aliases

        +
        public static java.lang.String[] aliases
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Merge

        +
        public Merge()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        direction

        +
        public static java.lang.String direction(float yaw)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html new file mode 100644 index 000000000..99342e8e8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html @@ -0,0 +1,373 @@ + + + + + + MusicSubcommand + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class MusicSubcommand

+
+
+ +
+
    +
  • +
    +
    +
    public class MusicSubcommand
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      MusicSubcommand()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player player, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        MusicSubcommand

        +
        public MusicSubcommand()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player player,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        player - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html new file mode 100644 index 000000000..4b0cbe738 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html @@ -0,0 +1,378 @@ + + + + + + OP + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class OP

+
+
+ +
+
    +
  • +
    +
    +
    public class OP
    +extends SubCommand
    +
    Created 2014-11-09 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      OP()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        OP

        +
        public OP()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html new file mode 100644 index 000000000..7fa757a31 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html @@ -0,0 +1,373 @@ + + + + + + Paste + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Paste

+
+
+ +
+
    +
  • +
    +
    +
    public class Paste
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Paste()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Paste

        +
        public Paste()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html new file mode 100644 index 000000000..2286cd173 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html @@ -0,0 +1,373 @@ + + + + + + Purge + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Purge

+
+
+ +
+
    +
  • +
    +
    +
    public class Purge
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Purge()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Purge

        +
        public Purge()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html new file mode 100644 index 000000000..81457cde5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html @@ -0,0 +1,373 @@ + + + + + + Rate + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Rate

+
+
+ +
+
    +
  • +
    +
    +
    public class Rate
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Rate()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Rate

        +
        public Rate()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html new file mode 100644 index 000000000..459a49c5e --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html @@ -0,0 +1,373 @@ + + + + + + Reload + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Reload

+
+
+ +
+
    +
  • +
    +
    +
    public class Reload
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Reload()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Reload

        +
        public Reload()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html new file mode 100644 index 000000000..55923cff8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html @@ -0,0 +1,373 @@ + + + + + + Schematic + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Schematic

+
+
+ +
+
    +
  • +
    +
    +
    public class Schematic
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Schematic()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Schematic

        +
        public Schematic()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html new file mode 100644 index 000000000..d9f8b9871 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html @@ -0,0 +1,421 @@ + + + + + + Set + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Set

+
+
+ +
+
    +
  • +
    +
    +
    public class Set
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Set()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        values

        +
        public static java.lang.String[] values
        +
      • +
      + + + +
        +
      • +

        aliases

        +
        public static java.lang.String[] aliases
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Set

        +
        public Set()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html new file mode 100644 index 000000000..1bc2a2acb --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html @@ -0,0 +1,373 @@ + + + + + + SetOwner + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class SetOwner

+
+
+ +
+
    +
  • +
    +
    +
    public class SetOwner
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SetOwner()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SetOwner

        +
        public SetOwner()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html new file mode 100644 index 000000000..6d54c1183 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html @@ -0,0 +1,414 @@ + + + + + + Setup + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Setup

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class Setup
    +extends SubCommand
    +implements org.bukkit.event.Listener
    +
    Created 2014-09-26 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Setup()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        setupMap

        +
        public static java.util.Map<java.lang.String,com.intellectualcrafters.plot.commands.Setup.SetupObject> setupMap
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Setup

        +
        public Setup()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html new file mode 100644 index 000000000..07cf64970 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html @@ -0,0 +1,448 @@ + + + + + + SubCommand.CommandCategory + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Enum SubCommand.CommandCategory

+
+
+ +
+ +
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString()  +
      static SubCommand.CommandCategory + valueOf(java.lang.String name) + +
      Returns the enum constant of this type with the specified name.
      +
      static SubCommand.CommandCategory[] + values() + +
      Returns an array containing the constants of this enum type, in + the order they are declared. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Enum

        + clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, + valueOf
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static SubCommand.CommandCategory[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (SubCommand.CommandCategory c : SubCommand.CommandCategory.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are + declared +
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static SubCommand.CommandCategory valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant + with the specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Enum<SubCommand.CommandCategory> +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html new file mode 100644 index 000000000..bc377d7bd --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html @@ -0,0 +1,656 @@ + + + + + + SubCommand + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class SubCommand

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class SubCommand.CommandCategory  +
      +
    • +
    + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      SubCommand(Command command, + java.lang.String description, + java.lang.String usage, + SubCommand.CommandCategory category, + boolean isPlayer) 
      SubCommand(java.lang.String cmd, + java.lang.String permission, + java.lang.String description, + java.lang.String usage, + java.lang.String alias, + SubCommand.CommandCategory category, + boolean isPlayer) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      abstract booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      voidexecuteConsole(java.lang.String... args)  +
      booleansendMessage(org.bukkit.entity.Player plr, + C c, + java.lang.String... args) + +
      Send a message
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        isPlayer

        +
        public boolean isPlayer
        +
      • +
      + + + +
        +
      • +

        cmd

        +
        public java.lang.String cmd
        +
        Command
        +
      • +
      + + + + + + + +
        +
      • +

        description

        +
        public java.lang.String description
        +
        Simple description
        +
      • +
      + + + +
        +
      • +

        alias

        +
        public java.lang.String alias
        +
        Alias
        +
      • +
      + + + +
        +
      • +

        usage

        +
        public java.lang.String usage
        +
        Command usage
        +
      • +
      + + + + +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SubCommand

        +
        public SubCommand(java.lang.String cmd,
        +          java.lang.String permission,
        +          java.lang.String description,
        +          java.lang.String usage,
        +          java.lang.String alias,
        +          SubCommand.CommandCategory category,
        +          boolean isPlayer)
        +
        +
        Parameters:
        +
        cmd - Command /plot {cmd} <-- That!
        +
        permission - Permission Node
        +
        description - Simple description
        +
        usage - Usage description: /plot command {args...}
        +
        alias - Command alias
        +
        category - CommandCategory. Pick whichever closests to what you want. +
        +
        +
      • +
      + + + +
        +
      • +

        SubCommand

        +
        public SubCommand(Command command,
        +          java.lang.String description,
        +          java.lang.String usage,
        +          SubCommand.CommandCategory category,
        +          boolean isPlayer)
        +
        +
        Parameters:
        +
        command - Command /plot {cmd} <-- That!
        +
        description - Simple description
        +
        usage - Usage description: /plot command {args...}
        +
        category - CommandCategory. Pick whichever closests to what you want. +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public abstract boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Execute.
        +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      + + + +
        +
      • +

        executeConsole

        +
        public void executeConsole(java.lang.String... args)
        +
      • +
      + + + +
        +
      • +

        sendMessage

        +
        public boolean sendMessage(org.bukkit.entity.Player plr,
        +                  C c,
        +                  java.lang.String... args)
        +
        Send a message
        +
        +
        Parameters:
        +
        plr -
        +
        c -
        +
        args -
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html new file mode 100644 index 000000000..f63d50abe --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html @@ -0,0 +1,374 @@ + + + + + + Swap + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Swap

+
+
+ +
+
    +
  • +
    +
    +
    public class Swap
    +extends SubCommand
    +
    Created by Citymonstret on 2014-08-01.
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Swap()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Swap

        +
        public Swap()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html new file mode 100644 index 000000000..06285e5f0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html @@ -0,0 +1,377 @@ + + + + + + TP + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class TP

+
+
+ +
+
    +
  • +
    +
    +
    public class TP
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TP()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        TP

        +
        public TP()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html new file mode 100644 index 000000000..41bed0e67 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html @@ -0,0 +1,373 @@ + + + + + + Trusted + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Trusted

+
+
+ +
+
    +
  • +
    +
    +
    public class Trusted
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Trusted()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Trusted

        +
        public Trusted()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html new file mode 100644 index 000000000..20fb461e4 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html @@ -0,0 +1,378 @@ + + + + + + Unban + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Unban

+
+
+ +
+
    +
  • +
    +
    +
    public class Unban
    +extends SubCommand
    +
    Created 2014-11-09 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Unban()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Unban

        +
        public Unban()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html new file mode 100644 index 000000000..04093b32f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html @@ -0,0 +1,378 @@ + + + + + + Unlink + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Unlink

+
+
+ +
+
    +
  • +
    +
    +
    public class Unlink
    +extends SubCommand
    +
    Created 2014-08-01 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Unlink()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Unlink

        +
        public Unlink()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html new file mode 100644 index 000000000..e07cb9d0d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html @@ -0,0 +1,390 @@ + + + + + + Visit + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class Visit

+
+
+ +
+
    +
  • +
    +
    +
    public class Visit
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Visit()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      java.util.List<Plot>getPlots(java.util.UUID uuid)  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Visit

        +
        public Visit()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getPlots

        +
        public java.util.List<Plot> getPlots(java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html new file mode 100644 index 000000000..999d2bdfc --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html @@ -0,0 +1,377 @@ + + + + + + list + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class list

+
+
+ +
+
    +
  • +
    +
    +
    public class list
    +extends SubCommand
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      list()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        list

        +
        public list()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html new file mode 100644 index 000000000..d568fbbce --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html @@ -0,0 +1,111 @@ + + + + + + com.intellectualcrafters.plot.commands + + + + +

com.intellectualcrafters.plot.commands +

+ +
+

Classes

+ +

Enums

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html new file mode 100644 index 000000000..006adf85c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html @@ -0,0 +1,397 @@ + + + + + + com.intellectualcrafters.plot.commands + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.commands

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html new file mode 100644 index 000000000..2b3f1d504 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html @@ -0,0 +1,328 @@ + + + + + + com.intellectualcrafters.plot.commands Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.commands

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html new file mode 100644 index 000000000..ab7afc7b1 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html @@ -0,0 +1,432 @@ + + + + + + plugin + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.commands
+

Class plugin

+
+
+ +
+
    +
  • +
    +
    +
    public class plugin
    +extends SubCommand
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      plugin()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, + java.lang.String... args) + +
      Execute.
      +
      static voidsetup(org.bukkit.plugin.java.JavaPlugin plugin)  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        downloads

        +
        public static java.lang.String downloads
        +
      • +
      + + + +
        +
      • +

        version

        +
        public static java.lang.String version
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        plugin

        +
        public plugin()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setup

        +
        public static void setup(org.bukkit.plugin.java.JavaPlugin plugin)
        +
      • +
      + + + +
        +
      • +

        execute

        +
        public boolean execute(org.bukkit.entity.Player plr,
        +              java.lang.String... args)
        +
        Description copied from class: SubCommand +
        +
        Execute.
        +
        +
        Specified by:
        +
        execute in + class SubCommand +
        +
        Parameters:
        +
        plr - executor
        +
        args - arguments
        +
        Returns:
        +
        true on success, false on failure
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/C.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/C.html new file mode 100644 index 000000000..4817c58a5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/C.html @@ -0,0 +1,2915 @@ + + + + + + C + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.config
+

Enum C

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<C>
    +
    +
    +
    +
    public enum C
    +extends java.lang.Enum<C>
    +
    Captions class.
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Enum Constant Detail

      + + + +
        +
      • +

        RECORD_PLAY

        +
        public static final C RECORD_PLAY
        +
      • +
      + + + +
        +
      • +

        NOTIFY_ENTER

        +
        public static final C NOTIFY_ENTER
        +
      • +
      + + + +
        +
      • +

        NOTIFY_LEAVE

        +
        public static final C NOTIFY_LEAVE
        +
      • +
      + + + +
        +
      • +

        SWAP_SYNTAX

        +
        public static final C SWAP_SYNTAX
        +
      • +
      + + + +
        +
      • +

        SWAP_SUCCESS

        +
        public static final C SWAP_SUCCESS
        +
      • +
      + + + +
        +
      • +

        COMMENT_SYNTAX

        +
        public static final C COMMENT_SYNTAX
        +
      • +
      + + + +
        +
      • +

        INVALID_INBOX

        +
        public static final C INVALID_INBOX
        +
      • +
      + + + +
        +
      • +

        NO_PERM_INBOX

        +
        public static final C NO_PERM_INBOX
        +
      • +
      + + + +
        +
      • +

        COMMENT_REMOVED

        +
        public static final C COMMENT_REMOVED
        +
      • +
      + + + +
        +
      • +

        NOT_CONSOLE

        +
        public static final C NOT_CONSOLE
        +
      • +
      + + + +
        +
      • +

        IS_CONSOLE

        +
        public static final C IS_CONSOLE
        +
      • +
      + + + +
        +
      • +

        CLIPBOARD_SET

        +
        public static final C CLIPBOARD_SET
        +
      • +
      + + + +
        +
      • +

        PASTED

        +
        public static final C PASTED
        +
      • +
      + + + +
        +
      • +

        PASTE_FAILED

        +
        public static final C PASTE_FAILED
        +
      • +
      + + + +
        +
      • +

        NO_CLIPBOARD

        +
        public static final C NO_CLIPBOARD
        +
      • +
      + + + +
        +
      • +

        CLIPBOARD_INFO

        +
        public static final C CLIPBOARD_INFO
        +
      • +
      + + + +
        +
      • +

        RATING_NOT_VALID

        +
        public static final C RATING_NOT_VALID
        +
      • +
      + + + +
        +
      • +

        RATING_ALREADY_EXISTS

        +
        public static final C RATING_ALREADY_EXISTS
        +
      • +
      + + + +
        +
      • +

        RATING_APPLIED

        +
        public static final C RATING_APPLIED
        +
      • +
      + + + +
        +
      • +

        RATING_NOT_YOUR_OWN

        +
        public static final C RATING_NOT_YOUR_OWN
        +
      • +
      + + + +
        +
      • +

        RATING_NOT_OWNED

        +
        public static final C RATING_NOT_OWNED
        +
      • +
      + + + +
        +
      • +

        CANNOT_AFFORD_PLOT

        +
        public static final C CANNOT_AFFORD_PLOT
        +
      • +
      + + + +
        +
      • +

        CANNOT_AFFORD_MERGE

        +
        public static final C CANNOT_AFFORD_MERGE
        +
      • +
      + + + +
        +
      • +

        ADDED_BALANCE

        +
        public static final C ADDED_BALANCE
        +
      • +
      + + + +
        +
      • +

        REMOVED_BALANCE

        +
        public static final C REMOVED_BALANCE
        +
      • +
      + + + +
        +
      • +

        SETUP_INIT

        +
        public static final C SETUP_INIT
        +
      • +
      + + + +
        +
      • +

        SETUP_STEP

        +
        public static final C SETUP_STEP
        +
      • +
      + + + +
        +
      • +

        SETUP_INVALID_ARG

        +
        public static final C SETUP_INVALID_ARG
        +
      • +
      + + + +
        +
      • +

        SETUP_VALID_ARG

        +
        public static final C SETUP_VALID_ARG
        +
      • +
      + + + +
        +
      • +

        SETUP_FINISHED

        +
        public static final C SETUP_FINISHED
        +
      • +
      + + + +
        +
      • +

        SETUP_WORLD_TAKEN

        +
        public static final C SETUP_WORLD_TAKEN
        +
      • +
      + + + +
        +
      • +

        SETUP_MISSING_WORLD

        +
        public static final C SETUP_MISSING_WORLD
        +
      • +
      + + + +
        +
      • +

        SETUP_MISSING_GENERATOR

        +
        public static final C SETUP_MISSING_GENERATOR
        +
      • +
      + + + +
        +
      • +

        SETUP_INVALID_GENERATOR

        +
        public static final C SETUP_INVALID_GENERATOR
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_MISSING_ARG

        +
        public static final C SCHEMATIC_MISSING_ARG
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_INVALID

        +
        public static final C SCHEMATIC_INVALID
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_VALID

        +
        public static final C SCHEMATIC_VALID
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_PASTE_FAILED

        +
        public static final C SCHEMATIC_PASTE_FAILED
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_PASTE_SUCCESS

        +
        public static final C SCHEMATIC_PASTE_SUCCESS
        +
      • +
      + + + +
        +
      • +

        TITLE_ENTERED_PLOT

        +
        public static final C TITLE_ENTERED_PLOT
        +
      • +
      + + + +
        +
      • +

        TITLE_ENTERED_PLOT_COLOR

        +
        public static final C TITLE_ENTERED_PLOT_COLOR
        +
      • +
      + + + +
        +
      • +

        TITLE_ENTERED_PLOT_SUB

        +
        public static final C TITLE_ENTERED_PLOT_SUB
        +
      • +
      + + + +
        +
      • +

        TITLE_ENTERED_PLOT_SUB_COLOR

        +
        public static final C TITLE_ENTERED_PLOT_SUB_COLOR
        +
      • +
      + + + +
        +
      • +

        TITLE_LEFT_PLOT

        +
        public static final C TITLE_LEFT_PLOT
        +
      • +
      + + + +
        +
      • +

        TITLE_LEFT_PLOT_COLOR

        +
        public static final C TITLE_LEFT_PLOT_COLOR
        +
      • +
      + + + +
        +
      • +

        TITLE_LEFT_PLOT_SUB

        +
        public static final C TITLE_LEFT_PLOT_SUB
        +
      • +
      + + + +
        +
      • +

        TITLE_LEFT_PLOT_SUB_COLOR

        +
        public static final C TITLE_LEFT_PLOT_SUB_COLOR
        +
      • +
      + + + +
        +
      • +

        PREFIX

        +
        public static final C PREFIX
        +
      • +
      + + + +
        +
      • +

        ENABLED

        +
        public static final C ENABLED
        +
      • +
      + + + +
        +
      • +

        EXAMPLE_MESSAGE

        +
        public static final C EXAMPLE_MESSAGE
        +
      • +
      + + + +
        +
      • +

        RELOADED_CONFIGS

        +
        public static final C RELOADED_CONFIGS
        +
      • +
      + + + +
        +
      • +

        RELOAD_FAILED

        +
        public static final C RELOAD_FAILED
        +
      • +
      + + + +
        +
      • +

        BOSSBAR_CLEARING

        +
        public static final C BOSSBAR_CLEARING
        +
      • +
      + + + +
        +
      • +

        ALIAS_SET_TO

        +
        public static final C ALIAS_SET_TO
        +
      • +
      + + + +
        +
      • +

        MISSING_ALIAS

        +
        public static final C MISSING_ALIAS
        +
      • +
      + + + +
        +
      • +

        ALIAS_IS_TAKEN

        +
        public static final C ALIAS_IS_TAKEN
        +
      • +
      + + + +
        +
      • +

        MISSING_POSITION

        +
        public static final C MISSING_POSITION
        +
      • +
      + + + +
        +
      • +

        POSITION_SET

        +
        public static final C POSITION_SET
        +
      • +
      + + + +
        +
      • +

        INVALID_POSITION

        +
        public static final C INVALID_POSITION
        +
      • +
      + + + +
        +
      • +

        TIME_FORMAT

        +
        public static final C TIME_FORMAT
        +
      • +
      + + + +
        +
      • +

        NO_SCHEMATIC_PERMISSION

        +
        public static final C NO_SCHEMATIC_PERMISSION
        +
      • +
      + + + +
        +
      • +

        NO_PERMISSION

        +
        public static final C NO_PERMISSION
        +
      • +
      + + + +
        +
      • +

        NO_PLOT_PERMS

        +
        public static final C NO_PLOT_PERMS
        +
      • +
      + + + +
        +
      • +

        CANT_CLAIM_MORE_PLOTS

        +
        public static final C CANT_CLAIM_MORE_PLOTS
        +
      • +
      + + + +
        +
      • +

        YOU_BE_DENIED

        +
        public static final C YOU_BE_DENIED
        +
      • +
      + + + +
        +
      • +

        NO_PERM_MERGE

        +
        public static final C NO_PERM_MERGE
        +
      • +
      + + + +
        +
      • +

        UNLINK_REQUIRED

        +
        public static final C UNLINK_REQUIRED
        +
      • +
      + + + +
        +
      • +

        UNLINK_IMPOSSIBLE

        +
        public static final C UNLINK_IMPOSSIBLE
        +
      • +
      + + + +
        +
      • +

        NO_MERGE_TO_MEGA

        +
        public static final C NO_MERGE_TO_MEGA
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_SUBCOMMAND

        +
        public static final C NOT_VALID_SUBCOMMAND
        +
      • +
      + + + +
        +
      • +

        DID_YOU_MEAN

        +
        public static final C DID_YOU_MEAN
        +
      • +
      + + + +
        +
      • +

        NAME_LITTLE

        +
        public static final C NAME_LITTLE
        +
      • +
      + + + +
        +
      • +

        NO_COMMANDS

        +
        public static final C NO_COMMANDS
        +
      • +
      + + + +
        +
      • +

        SUBCOMMAND_SET_OPTIONS_HEADER

        +
        public static final C SUBCOMMAND_SET_OPTIONS_HEADER
        +
      • +
      + + + +
        +
      • +

        INVALID_PLAYER

        +
        public static final C INVALID_PLAYER
        +
      • +
      + + + +
        +
      • +

        COMMAND_WENT_WRONG

        +
        public static final C COMMAND_WENT_WRONG
        +
      • +
      + + + +
        +
      • +

        PURGE_SYNTAX

        +
        public static final C PURGE_SYNTAX
        +
      • +
      + + + +
        +
      • +

        PURGE_SUCCESS

        +
        public static final C PURGE_SUCCESS
        +
      • +
      + + + +
        +
      • +

        NOT_IN_PLOT

        +
        public static final C NOT_IN_PLOT
        +
      • +
      + + + +
        +
      • +

        NOT_IN_PLOT_WORLD

        +
        public static final C NOT_IN_PLOT_WORLD
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_WORLD

        +
        public static final C NOT_VALID_WORLD
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_PLOT_WORLD

        +
        public static final C NOT_VALID_PLOT_WORLD
        +
      • +
      + + + +
        +
      • +

        NO_PLOTS

        +
        public static final C NO_PLOTS
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_BLOCK_LIST_HEADER

        +
        public static final C NOT_VALID_BLOCK_LIST_HEADER
        +
      • +
      + + + +
        +
      • +

        BLOCK_LIST_ITEM

        +
        public static final C BLOCK_LIST_ITEM
        +
      • +
      + + + +
        +
      • +

        BLOCK_LIST_SEPARATER

        +
        public static final C BLOCK_LIST_SEPARATER
        +
      • +
      + + + +
        +
      • +

        NEED_BIOME

        +
        public static final C NEED_BIOME
        +
      • +
      + + + +
        +
      • +

        BIOME_SET_TO

        +
        public static final C BIOME_SET_TO
        +
      • +
      + + + +
        +
      • +

        TELEPORTED_TO_PLOT

        +
        public static final C TELEPORTED_TO_PLOT
        +
      • +
      + + + +
        +
      • +

        SET_BLOCK_ACTION_FINISHED

        +
        public static final C SET_BLOCK_ACTION_FINISHED
        +
      • +
      + + + +
        +
      • +

        DEUBG_HEADER

        +
        public static final C DEUBG_HEADER
        +
      • +
      + + + +
        +
      • +

        DEBUG_SECTION

        +
        public static final C DEBUG_SECTION
        +
      • +
      + + + +
        +
      • +

        DEBUG_LINE

        +
        public static final C DEBUG_LINE
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_DATA

        +
        public static final C NOT_VALID_DATA
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_BLOCK

        +
        public static final C NOT_VALID_BLOCK
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_NUMBER

        +
        public static final C NOT_VALID_NUMBER
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_PLOT_ID

        +
        public static final C NOT_VALID_PLOT_ID
        +
      • +
      + + + +
        +
      • +

        NOT_YOUR_PLOT

        +
        public static final C NOT_YOUR_PLOT
        +
      • +
      + + + +
        +
      • +

        NO_SUCH_PLOT

        +
        public static final C NO_SUCH_PLOT
        +
      • +
      + + + +
        +
      • +

        PLAYER_HAS_NOT_BEEN_ON

        +
        public static final C PLAYER_HAS_NOT_BEEN_ON
        +
      • +
      + + + +
        +
      • +

        FOUND_NO_PLOTS

        +
        public static final C FOUND_NO_PLOTS
        +
      • +
      + + + +
        +
      • +

        CAMERA_STARTED

        +
        public static final C CAMERA_STARTED
        +
      • +
      + + + +
        +
      • +

        CAMERA_STOPPED

        +
        public static final C CAMERA_STOPPED
        +
      • +
      + + + +
        +
      • +

        NEED_PLOT_NUMBER

        +
        public static final C NEED_PLOT_NUMBER
        +
      • +
      + + + +
        +
      • +

        NEED_BLOCK

        +
        public static final C NEED_BLOCK
        +
      • +
      + + + +
        +
      • +

        NEED_PLOT_ID

        +
        public static final C NEED_PLOT_ID
        +
      • +
      + + + +
        +
      • +

        NEED_USER

        +
        public static final C NEED_USER
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_UNCLAIMED

        +
        public static final C PLOT_INFO_UNCLAIMED
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO

        +
        public static final C PLOT_INFO
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_HELPERS

        +
        public static final C PLOT_INFO_HELPERS
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_TRUSTED

        +
        public static final C PLOT_INFO_TRUSTED
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_DENIED

        +
        public static final C PLOT_INFO_DENIED
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_FLAGS

        +
        public static final C PLOT_INFO_FLAGS
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_BIOME

        +
        public static final C PLOT_INFO_BIOME
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_RATING

        +
        public static final C PLOT_INFO_RATING
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_OWNER

        +
        public static final C PLOT_INFO_OWNER
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_ID

        +
        public static final C PLOT_INFO_ID
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_ALIAS

        +
        public static final C PLOT_INFO_ALIAS
        +
      • +
      + + + +
        +
      • +

        PLOT_INFO_SIZE

        +
        public static final C PLOT_INFO_SIZE
        +
      • +
      + + + +
        +
      • +

        PLOT_USER_LIST

        +
        public static final C PLOT_USER_LIST
        +
      • +
      + + + +
        +
      • +

        INFO_SYNTAX_CONSOLE

        +
        public static final C INFO_SYNTAX_CONSOLE
        +
      • +
      + + + +
        +
      • +

        GENERATING_FLOOR

        +
        public static final C GENERATING_FLOOR
        +
      • +
      + + + +
        +
      • +

        GENERATING_WALL

        +
        public static final C GENERATING_WALL
        +
      • +
      + + + +
        +
      • +

        GENERATING_WALL_FILLING

        +
        public static final C GENERATING_WALL_FILLING
        +
      • +
      + + + +
        +
      • +

        CLEARING_PLOT

        +
        public static final C CLEARING_PLOT
        +
      • +
      + + + +
        +
      • +

        CLEARING_DONE

        +
        public static final C CLEARING_DONE
        +
      • +
      + + + +
        +
      • +

        CLEARING_DONE_PACKETS

        +
        public static final C CLEARING_DONE_PACKETS
        +
      • +
      + + + +
        +
      • +

        PLOT_NOT_CLAIMED

        +
        public static final C PLOT_NOT_CLAIMED
        +
      • +
      + + + +
        +
      • +

        PLOT_IS_CLAIMED

        +
        public static final C PLOT_IS_CLAIMED
        +
      • +
      + + + +
        +
      • +

        CLAIMED

        +
        public static final C CLAIMED
        +
      • +
      + + + +
        +
      • +

        PLOT_LIST_HEADER_PAGED

        +
        public static final C PLOT_LIST_HEADER_PAGED
        +
      • +
      + + + +
        +
      • +

        PLOT_LIST_HEADER

        +
        public static final C PLOT_LIST_HEADER
        +
      • +
      + + + +
        +
      • +

        PLOT_LIST_ITEM

        +
        public static final C PLOT_LIST_ITEM
        +
      • +
      + + + +
        +
      • +

        PLOT_LIST_ITEM_ORDERED

        +
        public static final C PLOT_LIST_ITEM_ORDERED
        +
      • +
      + + + +
        +
      • +

        PLOT_LIST_FOOTER

        +
        public static final C PLOT_LIST_FOOTER
        +
      • +
      + + + +
        +
      • +

        LEFT_PLOT

        +
        public static final C LEFT_PLOT
        +
      • +
      + + + +
        +
      • +

        WAIT_FOR_TIMER

        +
        public static final C WAIT_FOR_TIMER
        +
      • +
      + + + +
        +
      • +

        PLOT_CHAT_FORMAT

        +
        public static final C PLOT_CHAT_FORMAT
        +
      • +
      + + + +
        +
      • +

        DENIED_REMOVED

        +
        public static final C DENIED_REMOVED
        +
      • +
      + + + +
        +
      • +

        DENIED_ADDED

        +
        public static final C DENIED_ADDED
        +
      • +
      + + + +
        +
      • +

        DENIED_NEED_ARGUMENT

        +
        public static final C DENIED_NEED_ARGUMENT
        +
      • +
      + + + +
        +
      • +

        WAS_NOT_DENIED

        +
        public static final C WAS_NOT_DENIED
        +
      • +
      + + + +
        +
      • +

        NEED_ON_OFF

        +
        public static final C NEED_ON_OFF
        +
      • +
      + + + +
        +
      • +

        SETTING_UPDATED

        +
        public static final C SETTING_UPDATED
        +
      • +
      + + + +
        +
      • +

        NEED_KEY

        +
        public static final C NEED_KEY
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_FLAG

        +
        public static final C NOT_VALID_FLAG
        +
      • +
      + + + +
        +
      • +

        NOT_VALID_VALUE

        +
        public static final C NOT_VALID_VALUE
        +
      • +
      + + + +
        +
      • +

        FLAG_NOT_IN_PLOT

        +
        public static final C FLAG_NOT_IN_PLOT
        +
      • +
      + + + +
        +
      • +

        FLAG_NOT_REMOVED

        +
        public static final C FLAG_NOT_REMOVED
        +
      • +
      + + + +
        +
      • +

        FLAG_NOT_ADDED

        +
        public static final C FLAG_NOT_ADDED
        +
      • +
      + + + +
        +
      • +

        FLAG_REMOVED

        +
        public static final C FLAG_REMOVED
        +
      • +
      + + + +
        +
      • +

        FLAG_ADDED

        +
        public static final C FLAG_ADDED
        +
      • +
      + + + +
        +
      • +

        HELPER_ADDED

        +
        public static final C HELPER_ADDED
        +
      • +
      + + + +
        +
      • +

        HELPER_REMOVED

        +
        public static final C HELPER_REMOVED
        +
      • +
      + + + +
        +
      • +

        HELPER_NEED_ARGUMENT

        +
        public static final C HELPER_NEED_ARGUMENT
        +
      • +
      + + + +
        +
      • +

        WAS_NOT_ADDED

        +
        public static final C WAS_NOT_ADDED
        +
      • +
      + + + +
        +
      • +

        ALREADY_OWNER

        +
        public static final C ALREADY_OWNER
        +
      • +
      + + + +
        +
      • +

        ALREADY_ADDED

        +
        public static final C ALREADY_ADDED
        +
      • +
      + + + +
        +
      • +

        TRUSTED_ADDED

        +
        public static final C TRUSTED_ADDED
        +
      • +
      + + + +
        +
      • +

        TRUSTED_REMOVED

        +
        public static final C TRUSTED_REMOVED
        +
      • +
      + + + +
        +
      • +

        TRUSTED_NEED_ARGUMENT

        +
        public static final C TRUSTED_NEED_ARGUMENT
        +
      • +
      + + + +
        +
      • +

        T_WAS_NOT_ADDED

        +
        public static final C T_WAS_NOT_ADDED
        +
      • +
      + + + +
        +
      • +

        SET_OWNER

        +
        public static final C SET_OWNER
        +
      • +
      + + + +
        +
      • +

        OWNER_SIGN_LINE_1

        +
        public static final C OWNER_SIGN_LINE_1
        +
      • +
      + + + +
        +
      • +

        OWNER_SIGN_LINE_2

        +
        public static final C OWNER_SIGN_LINE_2
        +
      • +
      + + + +
        +
      • +

        OWNER_SIGN_LINE_3

        +
        public static final C OWNER_SIGN_LINE_3
        +
      • +
      + + + +
        +
      • +

        OWNER_SIGN_LINE_4

        +
        public static final C OWNER_SIGN_LINE_4
        +
      • +
      + + + +
        +
      • +

        HELP_HEADER

        +
        public static final C HELP_HEADER
        +
      • +
      + + + +
        +
      • +

        HELP_CATEGORY

        +
        public static final C HELP_CATEGORY
        +
      • +
      + + + +
        +
      • +

        HELP_INFO

        +
        public static final C HELP_INFO
        +
      • +
      + + + +
        +
      • +

        HELP_INFO_ITEM

        +
        public static final C HELP_INFO_ITEM
        +
      • +
      + + + +
        +
      • +

        HELP_ITEM

        +
        public static final C HELP_ITEM
        +
      • +
      + + + +
        +
      • +

        DIRECTION

        +
        public static final C DIRECTION
        +
      • +
      + + + +
        +
      • +

        CUSTOM_STRING

        +
        public static final C CUSTOM_STRING
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static C[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (C c : C.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static C valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the + specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        setupTranslations

        +
        public static void setupTranslations()
        +
      • +
      + + + +
        +
      • +

        saveTranslations

        +
        public static void saveTranslations()
        +
      • +
      + + + +
        +
      • +

        d

        +
        public java.lang.String d()
        +
        Get the default string
        +
        +
        Returns:
        +
        default
        +
        +
      • +
      + + + +
        +
      • +

        s

        +
        public java.lang.String s()
        +
        Get translated if exists
        +
        +
        Returns:
        +
        translated if exists else default
        +
        +
      • +
      + + + +
        +
      • +

        translated

        +
        public java.lang.String translated()
        +
        +
        Returns:
        +
        translated and color decoded
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html new file mode 100644 index 000000000..c3049c1c1 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html @@ -0,0 +1,325 @@ + + + + + + Configuration.SettingValue + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.config
+

Class Configuration.SettingValue

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    Configuration
    +
    +
    +
    +
    public abstract static class Configuration.SettingValue
    +extends java.lang.Object
    +
    Create your own SettingValue object to make the management of plotworld + configuration easier +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetType()  +
      java.lang.ObjectparseObject(java.lang.Object object)  +
      abstract java.lang.ObjectparseString(java.lang.String string)  +
      abstract booleanvalidateValue(java.lang.String string)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Configuration.SettingValue

        +
        public Configuration.SettingValue(java.lang.String type)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getType

        +
        public java.lang.String getType()
        +
      • +
      + + + +
        +
      • +

        parseObject

        +
        public java.lang.Object parseObject(java.lang.Object object)
        +
      • +
      + + + +
        +
      • +

        parseString

        +
        public abstract java.lang.Object parseString(java.lang.String string)
        +
      • +
      + + + +
        +
      • +

        validateValue

        +
        public abstract boolean validateValue(java.lang.String string)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html new file mode 100644 index 000000000..5937fc540 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html @@ -0,0 +1,493 @@ + + + + + + Configuration + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.config
+

Class Configuration

+
+
+ +
+
    +
  • +
    +
    +
    public class Configuration
    +extends java.lang.Object
    +
    Main Configuration Utility
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html new file mode 100644 index 000000000..755e773d8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html @@ -0,0 +1,376 @@ + + + + + + ConfigurationNode + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.config
+

Class ConfigurationNode

+
+
+ +
+
    +
  • +
    +
    +
    public class ConfigurationNode
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ConfigurationNode(java.lang.String constant, + java.lang.Object default_value, + java.lang.String description, + Configuration.SettingValue type, + boolean required) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetConstant()  +
      java.lang.ObjectgetDefaultValue()  +
      java.lang.StringgetDescription()  +
      Configuration.SettingValue + getType()  +
      java.lang.ObjectgetValue()  +
      booleanisValid(java.lang.String string)  +
      booleansetValue(java.lang.String string)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ConfigurationNode

        +
        public ConfigurationNode(java.lang.String constant,
        +                 java.lang.Object default_value,
        +                 java.lang.String description,
        +                 Configuration.SettingValue type,
        +                 boolean required)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + + + + + +
        +
      • +

        isValid

        +
        public boolean isValid(java.lang.String string)
        +
      • +
      + + + +
        +
      • +

        setValue

        +
        public boolean setValue(java.lang.String string)
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public java.lang.Object getValue()
        +
      • +
      + + + +
        +
      • +

        getConstant

        +
        public java.lang.String getConstant()
        +
      • +
      + + + +
        +
      • +

        getDefaultValue

        +
        public java.lang.Object getDefaultValue()
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html new file mode 100644 index 000000000..b11935a76 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html @@ -0,0 +1,454 @@ + + + + + + Settings.DB + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.config
+

Class Settings.DB

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    Settings
    +
    +
    +
    +
    public static class Settings.DB
    +extends java.lang.Object
    +
    Database settings
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringDATABASE + +
      MySQL DB
      +
      static java.lang.StringHOST_NAME + +
      MySQL Host name
      +
      static java.lang.StringPASSWORD + +
      MySQL Password
      +
      static java.lang.StringPORT + +
      MySQL Port
      +
      static java.lang.StringPREFIX + +
      MySQL Prefix
      +
      static java.lang.StringSQLITE_DB + +
      SQLite Database name
      +
      static booleanUSE_MONGO + +
      MongoDB enabled?
      +
      static booleanUSE_MYSQL + +
      MySQL Enabled?
      +
      static booleanUSE_SQLITE + +
      SQLite enabled?
      +
      static java.lang.StringUSER + +
      MySQL User
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Settings.DB()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        USE_MONGO

        +
        public static boolean USE_MONGO
        +
        MongoDB enabled?
        +
      • +
      + + + +
        +
      • +

        USE_SQLITE

        +
        public static boolean USE_SQLITE
        +
        SQLite enabled?
        +
      • +
      + + + +
        +
      • +

        USE_MYSQL

        +
        public static boolean USE_MYSQL
        +
        MySQL Enabled?
        +
      • +
      + + + +
        +
      • +

        SQLITE_DB

        +
        public static java.lang.String SQLITE_DB
        +
        SQLite Database name
        +
      • +
      + + + +
        +
      • +

        HOST_NAME

        +
        public static java.lang.String HOST_NAME
        +
        MySQL Host name
        +
      • +
      + + + +
        +
      • +

        PORT

        +
        public static java.lang.String PORT
        +
        MySQL Port
        +
      • +
      + + + +
        +
      • +

        DATABASE

        +
        public static java.lang.String DATABASE
        +
        MySQL DB
        +
      • +
      + + + +
        +
      • +

        USER

        +
        public static java.lang.String USER
        +
        MySQL User
        +
      • +
      + + + +
        +
      • +

        PASSWORD

        +
        public static java.lang.String PASSWORD
        +
        MySQL Password
        +
      • +
      + + + +
        +
      • +

        PREFIX

        +
        public static java.lang.String PREFIX
        +
        MySQL Prefix
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Settings.DB

        +
        public Settings.DB()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html new file mode 100644 index 000000000..2615235ed --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html @@ -0,0 +1,612 @@ + + + + + + Settings + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.config
+

Class Settings

+
+
+ +
+
    +
  • +
    +
    +
    public class Settings
    +extends java.lang.Object
    +
    Updater and DB settings
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class Settings.DB + +
      Database settings
      +
      +
    • +
    + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Settings()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        MOB_CAP_ENABLED

        +
        public static boolean MOB_CAP_ENABLED
        +
      • +
      + + + +
        +
      • +

        MOB_CAP

        +
        public static int MOB_CAP
        +
      • +
      + + + +
        +
      • +

        TITLES

        +
        public static boolean TITLES
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_SAVE_PATH

        +
        public static java.lang.String SCHEMATIC_SAVE_PATH
        +
        Schematic Save Path
        +
      • +
      + + + +
        +
      • +

        MAX_PLOTS

        +
        public static int MAX_PLOTS
        +
        Max allowed plots
        +
      • +
      + + + +
        +
      • +

        WORLDGUARD

        +
        public static boolean WORLDGUARD
        +
        WorldGuard region on claimed plots
        +
      • +
      + + + +
        +
      • +

        METRICS

        +
        public static boolean METRICS
        +
        metrics
        +
      • +
      + + + +
        +
      • +

        PLOT_SPECIFIC_RESOURCE_PACK

        +
        public static java.lang.String PLOT_SPECIFIC_RESOURCE_PACK
        +
        plot specific resource pack
        +
      • +
      + + + +
        +
      • +

        KILL_ROAD_MOBS

        +
        public static boolean KILL_ROAD_MOBS
        +
        Kill road mobs?
        +
      • +
      + + + +
        +
      • +

        KILL_ROAD_MOBS_DEFAULT

        +
        public static boolean KILL_ROAD_MOBS_DEFAULT
        +
        Default kill road mobs: true
        +
      • +
      + + + +
        +
      • +

        MOB_PATHFINDING

        +
        public static boolean MOB_PATHFINDING
        +
        mob pathfinding?
        +
      • +
      + + + +
        +
      • +

        MOB_PATHFINDING_DEFAULT

        +
        public static boolean MOB_PATHFINDING_DEFAULT
        +
        Default mob pathfinding: true
        +
      • +
      + + + +
        +
      • +

        DELETE_PLOTS_ON_BAN

        +
        public static boolean DELETE_PLOTS_ON_BAN
        +
        Delete plots on ban?
        +
      • +
      + + + +
        +
      • +

        DEBUG

        +
        public static boolean DEBUG
        +
        Verbose?
        +
      • +
      + + + +
        +
      • +

        AUTO_CLEAR

        +
        public static boolean AUTO_CLEAR
        +
        Auto clear enabled
        +
      • +
      + + + +
        +
      • +

        AUTO_CLEAR_DAYS

        +
        public static int AUTO_CLEAR_DAYS
        +
        Days until a plot gets cleared
        +
      • +
      + + + +
        +
      • +

        API_URL

        +
        public static java.lang.String API_URL
        +
        API Location
        +
      • +
      + + + +
        +
      • +

        CUSTOM_API

        +
        public static boolean CUSTOM_API
        +
        Use the custom API
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Settings

        +
        public Settings()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html new file mode 100644 index 000000000..1ff23d331 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html @@ -0,0 +1,34 @@ + + + + + + com.intellectualcrafters.plot.config + + + + +

com.intellectualcrafters.plot.config +

+ +
+

Classes

+ +

Enums

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html new file mode 100644 index 000000000..a21de4ddc --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html @@ -0,0 +1,186 @@ + + + + + + com.intellectualcrafters.plot.config + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.config

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html new file mode 100644 index 000000000..e62c06b37 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html @@ -0,0 +1,163 @@ + + + + + + com.intellectualcrafters.plot.config Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.config

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html new file mode 100644 index 000000000..084e9ed98 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html @@ -0,0 +1,959 @@ + + + + + + AbstractDB + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Interface AbstractDB

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    SQLManager
    +
    +
    +
    +
    public interface AbstractDB
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.util.UUIDeveryone + +
      The UUID that will count as everyone
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidcreateAllSettingsAndHelpers(java.util.ArrayList<Plot> plots) + +
      Create all settings, and create default helpers, trusted + denied lists
      +
      voidcreatePlot(Plot plot) + +
      Create a plot
      +
      voidcreatePlots(java.util.ArrayList<Plot> plots) + +
      Create a plot
      +
      voidcreatePlotSettings(int id, + Plot plot) + +
      Create plot settings
      +
      voidcreateTables(java.lang.String database, + boolean add_constraint) + +
      Create tables
      +
      voiddelete(java.lang.String world, + Plot plot) + +
      Delete a plot
      +
      java.util.ArrayList<PlotComment>getComments(java.lang.String world, + Plot plot, + int tier) + +
      Get Plot Comments
      +
      intgetId(java.lang.String world, + PlotId id2) + +
      Get the table entry ID
      +
      java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getPlots()  +
      doublegetRatings(Plot plot) + +
      Get Plots ratings
      +
      java.util.HashMap<java.lang.String,java.lang.Object>getSettings(int id)  +
      voidpurge(java.lang.String world) + +
      Purge a whole world
      +
      voidpurge(java.lang.String world, + PlotId id) + +
      Purgle a plot
      +
      voidremoveComment(java.lang.String world, + Plot plot, + PlotComment comment) + +
      Remove a plot comment
      +
      voidremoveDenied(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidremoveHelper(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidremoveTrusted(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidsetAlias(java.lang.String world, + Plot plot, + java.lang.String alias) + +
      Set the plot alias
      +
      voidsetComment(java.lang.String world, + Plot plot, + PlotComment comment) + +
      Set a plot comment
      +
      voidsetDenied(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidsetFlags(java.lang.String world, + Plot plot, + Flag[] flags) + +
      Set plot flags
      +
      voidsetHelper(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidsetMerged(java.lang.String world, + Plot plot, + boolean[] merged) + +
      Set the merged status for a plot
      +
      voidsetOwner(Plot plot, + java.util.UUID uuid) + +
      Set Plot owner
      +
      voidsetPosition(java.lang.String world, + Plot plot, + java.lang.String position) + +
      Set Plot Home Position
      +
      voidsetTrusted(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        everyone

        +
        static final java.util.UUID everyone
        +
        The UUID that will count as everyone
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setOwner

        +
        void setOwner(Plot plot,
        +            java.util.UUID uuid)
        +
        Set Plot owner
        +
        +
        Parameters:
        +
        plot - Plot in which the owner should be set
        +
        uuid - The uuid of the new owner
        +
        +
      • +
      + + + +
        +
      • +

        createAllSettingsAndHelpers

        +
        void createAllSettingsAndHelpers(java.util.ArrayList<Plot> plots)
        +
        Create all settings, and create default helpers, trusted + denied lists
        +
        +
        Parameters:
        +
        plots - Plots for which the default table entries should be created
        +
        +
      • +
      + + + +
        +
      • +

        createPlots

        +
        void createPlots(java.util.ArrayList<Plot> plots)
        +
        Create a plot
        +
        +
        Parameters:
        +
        plots - Plots that should be created
        +
        +
      • +
      + + + +
        +
      • +

        createPlot

        +
        void createPlot(Plot plot)
        +
        Create a plot
        +
        +
        Parameters:
        +
        plot - That should be created
        +
        +
      • +
      + + + +
        +
      • +

        createTables

        +
        void createTables(java.lang.String database,
        +                boolean add_constraint)
        +                  throws java.lang.Exception
        +
        Create tables
        +
        +
        Parameters:
        +
        database - Database in which the tables will be created
        +
        Throws:
        +
        java.sql.SQLException - If the database manager is unable to create the tables
        +
        java.lang.Exception
        +
        +
      • +
      + + + +
        +
      • +

        delete

        +
        void delete(java.lang.String world,
        +          Plot plot)
        +
        Delete a plot
        +
        +
        Parameters:
        +
        plot - Plot that should be deleted
        +
        +
      • +
      + + + +
        +
      • +

        createPlotSettings

        +
        void createPlotSettings(int id,
        +                      Plot plot)
        +
        Create plot settings
        +
        +
        Parameters:
        +
        id - Plot Entry ID
        +
        plot - Plot Object
        +
        +
      • +
      + + + +
        +
      • +

        getId

        +
        int getId(java.lang.String world,
        +        PlotId id2)
        +
        Get the table entry ID
        +
        +
        Parameters:
        +
        world - Which the plot is located in
        +
        id2 - Plot ID
        +
        Returns:
        +
        Integer = Plot Entry Id
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getPlots()
        +
        +
        Returns:
        +
        A linked hashmap containing all plots
        +
        +
      • +
      + + + +
        +
      • +

        setMerged

        +
        void setMerged(java.lang.String world,
        +             Plot plot,
        +             boolean[] merged)
        +
        Set the merged status for a plot
        +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        merged - boolean[]
        +
        +
      • +
      + + + +
        +
      • +

        setFlags

        +
        void setFlags(java.lang.String world,
        +            Plot plot,
        +            Flag[] flags)
        +
        Set plot flags
        +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        flags - flags to set (flag[])
        +
        +
      • +
      + + + +
        +
      • +

        setAlias

        +
        void setAlias(java.lang.String world,
        +            Plot plot,
        +            java.lang.String alias)
        +
        Set the plot alias
        +
        +
        Parameters:
        +
        plot - Plot for which the alias should be set
        +
        alias - Plot Alias
        +
        +
      • +
      + + + +
        +
      • +

        purge

        +
        void purge(java.lang.String world,
        +         PlotId id)
        +
        Purgle a plot
        +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        id - Plot ID
        +
        +
      • +
      + + + +
        +
      • +

        purge

        +
        void purge(java.lang.String world)
        +
        Purge a whole world
        +
        +
        Parameters:
        +
        world - World in which the plots should be purged
        +
        +
      • +
      + + + +
        +
      • +

        setPosition

        +
        void setPosition(java.lang.String world,
        +               Plot plot,
        +               java.lang.String position)
        +
        Set Plot Home Position
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        position - Plot Home Position
        +
        +
      • +
      + + + +
        +
      • +

        getSettings

        +
        java.util.HashMap<java.lang.String,java.lang.Object> getSettings(int id)
        +
        +
        Parameters:
        +
        id - Plot Entry ID
        +
        Returns:
        +
        Plot Settings
        +
        +
      • +
      + + + +
        +
      • +

        removeHelper

        +
        void removeHelper(java.lang.String world,
        +                Plot plot,
        +                org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        player - Player that should be removed
        +
        +
      • +
      + + + +
        +
      • +

        removeTrusted

        +
        void removeTrusted(java.lang.String world,
        +                 Plot plot,
        +                 org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        player - Player that should be removed
        +
        +
      • +
      + + + +
        +
      • +

        setHelper

        +
        void setHelper(java.lang.String world,
        +             Plot plot,
        +             org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        player - Player that should be removed
        +
        +
      • +
      + + + +
        +
      • +

        setTrusted

        +
        void setTrusted(java.lang.String world,
        +              Plot plot,
        +              org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        player - Player that should be added
        +
        +
      • +
      + + + +
        +
      • +

        removeDenied

        +
        void removeDenied(java.lang.String world,
        +                Plot plot,
        +                org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        player - Player that should be added
        +
        +
      • +
      + + + +
        +
      • +

        setDenied

        +
        void setDenied(java.lang.String world,
        +             Plot plot,
        +             org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        player - Player that should be added
        +
        +
      • +
      + + + +
        +
      • +

        getRatings

        +
        double getRatings(Plot plot)
        +
        Get Plots ratings
        +
        +
        Parameters:
        +
        plot - Plot Object
        +
        Returns:
        +
        Plot Ratings (pre-calculated)
        +
        +
      • +
      + + + +
        +
      • +

        removeComment

        +
        void removeComment(java.lang.String world,
        +                 Plot plot,
        +                 PlotComment comment)
        +
        Remove a plot comment
        +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        comment - Comment to remove
        +
        +
      • +
      + + + +
        +
      • +

        setComment

        +
        void setComment(java.lang.String world,
        +              Plot plot,
        +              PlotComment comment)
        +
        Set a plot comment
        +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        comment - Comment to add
        +
        +
      • +
      + + + +
        +
      • +

        getComments

        +
        java.util.ArrayList<PlotComment> getComments(java.lang.String world,
        +                                           Plot plot,
        +                                           int tier)
        +
        Get Plot Comments
        +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        tier - Comment Tier
        +
        Returns:
        +
        Plot Comments within the specified tier
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html new file mode 100644 index 000000000..15b2e3833 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html @@ -0,0 +1,932 @@ + + + + + + DBFunc + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class DBFunc

+
+
+ +
+
    +
  • +
    +
    +
    public class DBFunc
    +extends java.lang.Object
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static AbstractDBdbManager  +
      static java.util.UUIDeveryone  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      DBFunc()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidcreateAllSettingsAndHelpers(java.util.ArrayList<Plot> plots) 
      static voidcreatePlot(Plot plot) + +
      Create a plot
      +
      static voidcreatePlots(java.util.ArrayList<Plot> plots) 
      static voidcreatePlotSettings(int id, + Plot plot) + +
      Create plot settings
      +
      static voidcreateTables(java.lang.String database, + boolean add_constraint) + +
      Create tables
      +
      static voiddelete(java.lang.String world, + Plot plot) + +
      Delete a plot
      +
      static java.util.ArrayList<PlotComment>getCommenst(java.lang.String world, + Plot plot, + int tier) 
      static intgetId(java.lang.String world, + PlotId id2) + +
      Get a plot id
      +
      static java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getPlots()  +
      static doublegetRatings(Plot plot) 
      static java.util.HashMap<java.lang.String,java.lang.Object>getSettings(int id)  +
      static voidpurge(java.lang.String world)  +
      static voidpurge(java.lang.String world, + PlotId id) 
      static voidremoveComment(java.lang.String world, + Plot plot, + PlotComment comment)  +
      static voidremoveDenied(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      static voidremoveHelper(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      static voidremoveTrusted(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      static voidsetAlias(java.lang.String world, + Plot plot, + java.lang.String alias) 
      static voidsetComment(java.lang.String world, + Plot plot, + PlotComment comment)  +
      static voidsetDenied(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      static voidsetFlags(java.lang.String world, + Plot plot, + Flag[] flags) 
      static voidsetHelper(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      static voidsetMerged(java.lang.String world, + Plot plot, + boolean[] merged) 
      static voidsetOwner(Plot plot, + java.util.UUID uuid) 
      static voidsetPosition(java.lang.String world, + Plot plot, + java.lang.String position) 
      static voidsetTrusted(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait +
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        dbManager

        +
        public static AbstractDB dbManager
        +
      • +
      + + + +
        +
      • +

        everyone

        +
        public static java.util.UUID everyone
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DBFunc

        +
        public DBFunc()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setOwner

        +
        public static void setOwner(Plot plot,
        +            java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        createAllSettingsAndHelpers

        +
        public static void createAllSettingsAndHelpers(java.util.ArrayList<Plot> plots)
        +
      • +
      + + + +
        +
      • +

        createPlots

        +
        public static void createPlots(java.util.ArrayList<Plot> plots)
        +
      • +
      + + + +
        +
      • +

        createPlot

        +
        public static void createPlot(Plot plot)
        +
        Create a plot
        +
        +
        Parameters:
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        createTables

        +
        public static void createTables(java.lang.String database,
        +                boolean add_constraint)
        +                         throws java.lang.Exception
        +
        Create tables
        +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      + + + +
        +
      • +

        delete

        +
        public static void delete(java.lang.String world,
        +          Plot plot)
        +
        Delete a plot
        +
        +
        Parameters:
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        createPlotSettings

        +
        public static void createPlotSettings(int id,
        +                      Plot plot)
        +
        Create plot settings
        +
        +
        Parameters:
        +
        id -
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        getId

        +
        public static int getId(java.lang.String world,
        +        PlotId id2)
        +
        Get a plot id
        +
        +
        Parameters:
        +
        plot_id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public static java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getPlots()
        +
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        setMerged

        +
        public static void setMerged(java.lang.String world,
        +             Plot plot,
        +             boolean[] merged)
        +
      • +
      + + + +
        +
      • +

        setFlags

        +
        public static void setFlags(java.lang.String world,
        +            Plot plot,
        +            Flag[] flags)
        +
      • +
      + + + +
        +
      • +

        setAlias

        +
        public static void setAlias(java.lang.String world,
        +            Plot plot,
        +            java.lang.String alias)
        +
        +
        Parameters:
        +
        plot -
        +
        alias -
        +
        +
      • +
      + + + +
        +
      • +

        purge

        +
        public static void purge(java.lang.String world,
        +         PlotId id)
        +
      • +
      + + + +
        +
      • +

        purge

        +
        public static void purge(java.lang.String world)
        +
      • +
      + + + +
        +
      • +

        setPosition

        +
        public static void setPosition(java.lang.String world,
        +               Plot plot,
        +               java.lang.String position)
        +
        +
        Parameters:
        +
        plot -
        +
        position -
        +
        +
      • +
      + + + +
        +
      • +

        getSettings

        +
        public static java.util.HashMap<java.lang.String,java.lang.Object> getSettings(int id)
        +
        +
        Parameters:
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        removeComment

        +
        public static void removeComment(java.lang.String world,
        +                 Plot plot,
        +                 PlotComment comment)
        +
        +
        Parameters:
        +
        plot -
        +
        comment -
        +
        +
      • +
      + + + +
        +
      • +

        setComment

        +
        public static void setComment(java.lang.String world,
        +              Plot plot,
        +              PlotComment comment)
        +
        +
        Parameters:
        +
        plot -
        +
        comment -
        +
        +
      • +
      + + + +
        +
      • +

        getCommenst

        +
        public static java.util.ArrayList<PlotComment> getCommenst(java.lang.String world,
        +                                           Plot plot,
        +                                           int tier)
        +
        +
        Parameters:
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        removeHelper

        +
        public static void removeHelper(java.lang.String world,
        +                Plot plot,
        +                org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        removeTrusted

        +
        public static void removeTrusted(java.lang.String world,
        +                 Plot plot,
        +                 org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        setHelper

        +
        public static void setHelper(java.lang.String world,
        +             Plot plot,
        +             org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        setTrusted

        +
        public static void setTrusted(java.lang.String world,
        +              Plot plot,
        +              org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        removeDenied

        +
        public static void removeDenied(java.lang.String world,
        +                Plot plot,
        +                org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        setDenied

        +
        public static void setDenied(java.lang.String world,
        +             Plot plot,
        +             org.bukkit.OfflinePlayer player)
        +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        getRatings

        +
        public static double getRatings(Plot plot)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html new file mode 100644 index 000000000..d14b892b9 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html @@ -0,0 +1,497 @@ + + + + + + Database + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class Database

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    MySQL, SQLite
    +
    +
    +
    +
    public abstract class Database
    +extends java.lang.Object
    +
    Abstract Database class, serves as a base for any connection method (MySQL, + SQLite, etc.) +
    +
    +
    Author:
    +
    -_Husky_-, tips48
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      protected org.bukkit.plugin.Pluginplugin + +
      Plugin instance, use for plugin.getDataFolder()
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + +
      Constructors 
      ModifierConstructor and Description
      protected Database(org.bukkit.plugin.Plugin plugin) + +
      Creates a new Database
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      abstract booleancheckConnection() + +
      Checks if a connection is open with the database
      +
      abstract booleancloseConnection() + +
      Closes the connection with the database
      +
      abstract java.sql.ConnectiongetConnection() + +
      Gets the connection with the database
      +
      abstract java.sql.ConnectionopenConnection() + +
      Opens a connection with the database
      +
      abstract java.sql.ResultSetquerySQL(java.lang.String query) + +
      Executes a SQL Query
      + If the connection is closed, it will be opened +
      +
      abstract intupdateSQL(java.lang.String query) + +
      Executes an Update SQL Query
      + See Statement.executeUpdate(String)
      + If the connection is closed, it will be opened +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        plugin

        +
        protected org.bukkit.plugin.Plugin plugin
        +
        Plugin instance, use for plugin.getDataFolder()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Database

        +
        protected Database(org.bukkit.plugin.Plugin plugin)
        +
        Creates a new Database
        +
        +
        Parameters:
        +
        plugin - Plugin instance
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        openConnection

        +
        public abstract java.sql.Connection openConnection()
        +                                            throws java.sql.SQLException,
        +                                                   java.lang.ClassNotFoundException
        +
        Opens a connection with the database
        +
        +
        Returns:
        +
        Opened connection
        +
        Throws:
        +
        java.sql.SQLException - if the connection can not be opened
        +
        java.lang.ClassNotFoundException - if the driver cannot be found
        +
        +
      • +
      + + + +
        +
      • +

        checkConnection

        +
        public abstract boolean checkConnection()
        +                                 throws java.sql.SQLException
        +
        Checks if a connection is open with the database
        +
        +
        Returns:
        +
        true if the connection is open
        +
        Throws:
        +
        java.sql.SQLException - if the connection cannot be checked
        +
        +
      • +
      + + + +
        +
      • +

        getConnection

        +
        public abstract java.sql.Connection getConnection()
        +
        Gets the connection with the database
        +
        +
        Returns:
        +
        Connection with the database, null if none
        +
        +
      • +
      + + + +
        +
      • +

        closeConnection

        +
        public abstract boolean closeConnection()
        +                                 throws java.sql.SQLException
        +
        Closes the connection with the database
        +
        +
        Returns:
        +
        true if successful
        +
        Throws:
        +
        java.sql.SQLException - if the connection cannot be closed
        +
        +
      • +
      + + + +
        +
      • +

        querySQL

        +
        public abstract java.sql.ResultSet querySQL(java.lang.String query)
        +                                     throws java.sql.SQLException,
        +                                            java.lang.ClassNotFoundException
        +
        Executes a SQL Query
        + If the connection is closed, it will be opened +
        +
        +
        Parameters:
        +
        query - Query to be run
        +
        Returns:
        +
        the results of the query
        +
        Throws:
        +
        java.sql.SQLException - If the query cannot be executed
        +
        java.lang.ClassNotFoundException - If the driver cannot be found; see + openConnection() +
        +
        +
      • +
      + + + +
        +
      • +

        updateSQL

        +
        public abstract int updateSQL(java.lang.String query)
        +                       throws java.sql.SQLException,
        +                              java.lang.ClassNotFoundException
        +
        Executes an Update SQL Query
        + See Statement.executeUpdate(String)
        + If the connection is closed, it will be opened +
        +
        +
        Parameters:
        +
        query - Query to be run
        +
        Returns:
        +
        Result Code, see Statement.executeUpdate(String)
        +
        Throws:
        +
        java.sql.SQLException - If the query cannot be executed
        +
        java.lang.ClassNotFoundException - If the driver cannot be found; see + openConnection() +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html new file mode 100644 index 000000000..3c1464f05 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html @@ -0,0 +1,241 @@ + + + + + + FlatFileManager + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class FlatFileManager

+
+
+ +
+
    +
  • +
    +
    +
    public class FlatFileManager
    +extends java.lang.Object
    +
    Created by Citymonstret on 2014-09-23.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      FlatFileManager()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        FlatFileManager

        +
        public FlatFileManager()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html new file mode 100644 index 000000000..98cb26841 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html @@ -0,0 +1,546 @@ + + + + + + MySQL + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class MySQL

+
+
+ +
+
    +
  • +
    +
    +
    public class MySQL
    +extends Database
    +
    Connects to and uses a MySQL database
    +
    +
    Author:
    +
    -_Husky_-, tips48
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      +
        +
      • + + + +

        Fields inherited from class com.intellectualcrafters.plot.database.Database

        + plugin +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      MySQL(org.bukkit.plugin.Plugin plugin, + java.lang.String hostname, + java.lang.String port, + java.lang.String database, + java.lang.String username, + java.lang.String password) + +
      Creates a new MySQL instance
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleancheckConnection() + +
      Checks if a connection is open with the database
      +
      booleancloseConnection() + +
      Closes the connection with the database
      +
      java.sql.ConnectiongetConnection() + +
      Gets the connection with the database
      +
      java.sql.ConnectionopenConnection() + +
      Opens a connection with the database
      +
      java.sql.ResultSetquerySQL(java.lang.String query) + +
      Executes a SQL Query
      + If the connection is closed, it will be opened +
      +
      intupdateSQL(java.lang.String query) + +
      Executes an Update SQL Query
      + See Statement.executeUpdate(String)
      + If the connection is closed, it will be opened +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        MySQL

        +
        public MySQL(org.bukkit.plugin.Plugin plugin,
        +     java.lang.String hostname,
        +     java.lang.String port,
        +     java.lang.String database,
        +     java.lang.String username,
        +     java.lang.String password)
        +
        Creates a new MySQL instance
        +
        +
        Parameters:
        +
        plugin - Plugin instance
        +
        hostname - Name of the host
        +
        port - Port number
        +
        database - Database name
        +
        username - Username
        +
        password - Password
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        openConnection

        +
        public java.sql.Connection openConnection()
        +                                   throws java.sql.SQLException,
        +                                          java.lang.ClassNotFoundException
        +
        Description copied from class: Database +
        +
        Opens a connection with the database
        +
        +
        Specified by:
        +
        openConnection in + class Database +
        +
        Returns:
        +
        Opened connection
        +
        Throws:
        +
        java.sql.SQLException - if the connection can not be opened
        +
        java.lang.ClassNotFoundException - if the driver cannot be found
        +
        +
      • +
      + + + +
        +
      • +

        checkConnection

        +
        public boolean checkConnection()
        +                        throws java.sql.SQLException
        +
        Description copied from class: Database +
        +
        Checks if a connection is open with the database
        +
        +
        Specified by:
        +
        checkConnection in + class Database +
        +
        Returns:
        +
        true if the connection is open
        +
        Throws:
        +
        java.sql.SQLException - if the connection cannot be checked
        +
        +
      • +
      + + + +
        +
      • +

        getConnection

        +
        public java.sql.Connection getConnection()
        +
        Description copied from class: Database +
        +
        Gets the connection with the database
        +
        +
        Specified by:
        +
        getConnection in + class Database +
        +
        Returns:
        +
        Connection with the database, null if none
        +
        +
      • +
      + + + +
        +
      • +

        closeConnection

        +
        public boolean closeConnection()
        +                        throws java.sql.SQLException
        +
        Description copied from class: Database +
        +
        Closes the connection with the database
        +
        +
        Specified by:
        +
        closeConnection in + class Database +
        +
        Returns:
        +
        true if successful
        +
        Throws:
        +
        java.sql.SQLException - if the connection cannot be closed
        +
        +
      • +
      + + + +
        +
      • +

        querySQL

        +
        public java.sql.ResultSet querySQL(java.lang.String query)
        +                            throws java.sql.SQLException,
        +                                   java.lang.ClassNotFoundException
        +
        Description copied from class: Database +
        +
        Executes a SQL Query
        + If the connection is closed, it will be opened +
        +
        +
        Specified by:
        +
        querySQL in + class Database +
        +
        Parameters:
        +
        query - Query to be run
        +
        Returns:
        +
        the results of the query
        +
        Throws:
        +
        java.sql.SQLException - If the query cannot be executed
        +
        java.lang.ClassNotFoundException - If the driver cannot be found; see + Database.openConnection() +
        +
        +
      • +
      + + + +
        +
      • +

        updateSQL

        +
        public int updateSQL(java.lang.String query)
        +              throws java.sql.SQLException,
        +                     java.lang.ClassNotFoundException
        +
        Description copied from class: Database +
        +
        Executes an Update SQL Query
        + See Statement.executeUpdate(String)
        + If the connection is closed, it will be opened +
        +
        +
        Specified by:
        +
        updateSQL in + class Database +
        +
        Parameters:
        +
        query - Query to be run
        +
        Returns:
        +
        Result Code, see Statement.executeUpdate(String)
        +
        Throws:
        +
        java.sql.SQLException - If the query cannot be executed
        +
        java.lang.ClassNotFoundException - If the driver cannot be found; see + Database.openConnection() +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html new file mode 100644 index 000000000..98f32bd33 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html @@ -0,0 +1,293 @@ + + + + + + PlotMeConverter + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class PlotMeConverter

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotMeConverter
    +extends java.lang.Object
    +
    Created 2014-08-17 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotMeConverter(PlotMain plugin) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidrunAsync()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotMeConverter

        +
        public PlotMeConverter(PlotMain plugin)
        +
        Constructor
        +
        +
        Parameters:
        +
        plugin - Plugin Used to run the converter
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        runAsync

        +
        public void runAsync()
        +              throws java.lang.Exception
        +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html new file mode 100644 index 000000000..aa69fe5e8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html @@ -0,0 +1,1320 @@ + + + + + + SQLManager + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class SQLManager

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    AbstractDB
    +
    +
    +
    +
    public class SQLManager
    +extends java.lang.Object
    +implements AbstractDB
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SQLManager(java.sql.Connection c, + java.lang.String p) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidcreateAllSettingsAndHelpers(java.util.ArrayList<Plot> plots) + +
      Create all settings, and create default helpers, trusted + denied lists
      +
      voidcreatePlot(Plot plot) + +
      Create a plot
      +
      voidcreatePlots(java.util.ArrayList<Plot> plots) + +
      Create a plot
      +
      voidcreatePlotSettings(int id, + Plot plot) + +
      Create plot settings
      +
      voidcreateTables(java.lang.String database, + boolean add_constraint) + +
      Create tables
      +
      voiddelete(java.lang.String world, + Plot plot) + +
      Delete a plot
      +
      java.util.ArrayList<PlotComment>getComments(java.lang.String world, + Plot plot, + int tier) + +
      Get Plot Comments
      +
      intgetId(java.lang.String world, + PlotId id2) + +
      Get the table entry ID
      +
      java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getPlots()  +
      doublegetRatings(Plot plot) + +
      Get Plots ratings
      +
      java.util.HashMap<java.lang.String,java.lang.Object>getSettings(int id)  +
      voidpurge(java.lang.String world) + +
      Purge a whole world
      +
      voidpurge(java.lang.String world, + PlotId id) + +
      Purgle a plot
      +
      voidremoveComment(java.lang.String world, + Plot plot, + PlotComment comment) + +
      Remove a plot comment
      +
      voidremoveDenied(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidremoveHelper(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidremoveTrusted(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidsetAlias(java.lang.String world, + Plot plot, + java.lang.String alias) + +
      Set the plot alias
      +
      voidsetComment(java.lang.String world, + Plot plot, + PlotComment comment) + +
      Set a plot comment
      +
      voidsetDenied(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidsetFlags(int id, + Flag[] flags) 
      voidsetFlags(java.lang.String world, + Plot plot, + Flag[] flags) + +
      Set plot flags
      +
      voidsetHelper(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      voidsetMerged(java.lang.String world, + Plot plot, + boolean[] merged) + +
      Set the merged status for a plot
      +
      voidsetOwner(Plot plot, + java.util.UUID uuid) + +
      Set Plot owner
      +
      voidsetPosition(java.lang.String world, + Plot plot, + java.lang.String position) + +
      Set Plot Home Position
      +
      voidsetTrusted(java.lang.String world, + Plot plot, + org.bukkit.OfflinePlayer player) 
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait +
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        SET_OWNER

        +
        public final java.lang.String SET_OWNER
        +
      • +
      + + + +
        +
      • +

        GET_ALL_PLOTS

        +
        public final java.lang.String GET_ALL_PLOTS
        +
      • +
      + + + +
        +
      • +

        CREATE_PLOTS

        +
        public final java.lang.String CREATE_PLOTS
        +
      • +
      + + + +
        +
      • +

        CREATE_SETTINGS

        +
        public final java.lang.String CREATE_SETTINGS
        +
      • +
      + + + +
        +
      • +

        CREATE_HELPERS

        +
        public final java.lang.String CREATE_HELPERS
        +
      • +
      + + + +
        +
      • +

        CREATE_PLOT

        +
        public final java.lang.String CREATE_PLOT
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SQLManager

        +
        public SQLManager(java.sql.Connection c,
        +          java.lang.String p)
        +
        Constructor
        +
        +
        Parameters:
        +
        c - connection
        +
        p - prefix
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setOwner

        +
        public void setOwner(Plot plot,
        +            java.util.UUID uuid)
        +
        Set Plot owner
        +
        +
        Specified by:
        +
        setOwner in + interface AbstractDB +
        +
        Parameters:
        +
        plot - Plot Object
        +
        uuid - Owner UUID
        +
        +
      • +
      + + + +
        +
      • +

        createAllSettingsAndHelpers

        +
        public void createAllSettingsAndHelpers(java.util.ArrayList<Plot> plots)
        +
        Description copied from interface: AbstractDB +
        +
        Create all settings, and create default helpers, trusted + denied lists
        +
        +
        Specified by:
        +
        createAllSettingsAndHelpers in + interface AbstractDB +
        +
        Parameters:
        +
        plots - Plots for which the default table entries should be created
        +
        +
      • +
      + + + +
        +
      • +

        createPlots

        +
        public void createPlots(java.util.ArrayList<Plot> plots)
        +
        Create a plot
        +
        +
        Specified by:
        +
        createPlots in + interface AbstractDB +
        +
        Parameters:
        +
        plots -
        +
        +
      • +
      + + + +
        +
      • +

        createPlot

        +
        public void createPlot(Plot plot)
        +
        Create a plot
        +
        +
        Specified by:
        +
        createPlot in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        createTables

        +
        public void createTables(java.lang.String database,
        +                boolean add_constraint)
        +                  throws java.sql.SQLException
        +
        Create tables
        +
        +
        Specified by:
        +
        createTables in + interface AbstractDB +
        +
        Parameters:
        +
        database - Database in which the tables will be created
        +
        Throws:
        +
        java.sql.SQLException
        +
        +
      • +
      + + + +
        +
      • +

        delete

        +
        public void delete(java.lang.String world,
        +          Plot plot)
        +
        Delete a plot
        +
        +
        Specified by:
        +
        delete in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        createPlotSettings

        +
        public void createPlotSettings(int id,
        +                      Plot plot)
        +
        Create plot settings
        +
        +
        Specified by:
        +
        createPlotSettings in + interface AbstractDB +
        +
        Parameters:
        +
        id -
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        getId

        +
        public int getId(java.lang.String world,
        +        PlotId id2)
        +
        Description copied from interface: AbstractDB +
        +
        Get the table entry ID
        +
        +
        Specified by:
        +
        getId in + interface AbstractDB +
        +
        Parameters:
        +
        world - Which the plot is located in
        +
        id2 - Plot ID
        +
        Returns:
        +
        Integer = Plot Entry Id
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getPlots()
        +
        +
        Specified by:
        +
        getPlots in + interface AbstractDB +
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        setMerged

        +
        public void setMerged(java.lang.String world,
        +             Plot plot,
        +             boolean[] merged)
        +
        Description copied from interface: AbstractDB +
        +
        Set the merged status for a plot
        +
        +
        Specified by:
        +
        setMerged in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        merged - boolean[]
        +
        +
      • +
      + + + +
        +
      • +

        setFlags

        +
        public void setFlags(java.lang.String world,
        +            Plot plot,
        +            Flag[] flags)
        +
        Description copied from interface: AbstractDB +
        +
        Set plot flags
        +
        +
        Specified by:
        +
        setFlags in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        flags - flags to set (flag[])
        +
        +
      • +
      + + + +
        +
      • +

        setFlags

        +
        public void setFlags(int id,
        +            Flag[] flags)
        +
      • +
      + + + +
        +
      • +

        setAlias

        +
        public void setAlias(java.lang.String world,
        +            Plot plot,
        +            java.lang.String alias)
        +
        Description copied from interface: AbstractDB +
        +
        Set the plot alias
        +
        +
        Specified by:
        +
        setAlias in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        alias -
        +
        +
      • +
      + + + +
        +
      • +

        purge

        +
        public void purge(java.lang.String world,
        +         PlotId id)
        +
        Description copied from interface: AbstractDB +
        +
        Purgle a plot
        +
        +
        Specified by:
        +
        purge in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        id - Plot ID
        +
        +
      • +
      + + + +
        +
      • +

        purge

        +
        public void purge(java.lang.String world)
        +
        Description copied from interface: AbstractDB +
        +
        Purge a whole world
        +
        +
        Specified by:
        +
        purge in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plots should be purged
        +
        +
      • +
      + + + +
        +
      • +

        setPosition

        +
        public void setPosition(java.lang.String world,
        +               Plot plot,
        +               java.lang.String position)
        +
        Description copied from interface: AbstractDB +
        +
        Set Plot Home Position
        +
        +
        Specified by:
        +
        setPosition in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        position -
        +
        +
      • +
      + + + +
        +
      • +

        getSettings

        +
        public java.util.HashMap<java.lang.String,java.lang.Object> getSettings(int id)
        +
        +
        Specified by:
        +
        getSettings in + interface AbstractDB +
        +
        Parameters:
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        removeComment

        +
        public void removeComment(java.lang.String world,
        +                 Plot plot,
        +                 PlotComment comment)
        +
        Description copied from interface: AbstractDB +
        +
        Remove a plot comment
        +
        +
        Specified by:
        +
        removeComment in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        comment - Comment to remove
        +
        +
      • +
      + + + +
        +
      • +

        getComments

        +
        public java.util.ArrayList<PlotComment> getComments(java.lang.String world,
        +                                           Plot plot,
        +                                           int tier)
        +
        Description copied from interface: AbstractDB +
        +
        Get Plot Comments
        +
        +
        Specified by:
        +
        getComments in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        tier - Comment Tier
        +
        Returns:
        +
        Plot Comments within the specified tier
        +
        +
      • +
      + + + +
        +
      • +

        setComment

        +
        public void setComment(java.lang.String world,
        +              Plot plot,
        +              PlotComment comment)
        +
        Description copied from interface: AbstractDB +
        +
        Set a plot comment
        +
        +
        Specified by:
        +
        setComment in + interface AbstractDB +
        +
        Parameters:
        +
        world - World in which the plot is located
        +
        plot - Plot Object
        +
        comment - Comment to add
        +
        +
      • +
      + + + +
        +
      • +

        removeHelper

        +
        public void removeHelper(java.lang.String world,
        +                Plot plot,
        +                org.bukkit.OfflinePlayer player)
        +
        +
        Specified by:
        +
        removeHelper in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        removeTrusted

        +
        public void removeTrusted(java.lang.String world,
        +                 Plot plot,
        +                 org.bukkit.OfflinePlayer player)
        +
        +
        Specified by:
        +
        removeTrusted in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        setHelper

        +
        public void setHelper(java.lang.String world,
        +             Plot plot,
        +             org.bukkit.OfflinePlayer player)
        +
        +
        Specified by:
        +
        setHelper in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        setTrusted

        +
        public void setTrusted(java.lang.String world,
        +              Plot plot,
        +              org.bukkit.OfflinePlayer player)
        +
        +
        Specified by:
        +
        setTrusted in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        removeDenied

        +
        public void removeDenied(java.lang.String world,
        +                Plot plot,
        +                org.bukkit.OfflinePlayer player)
        +
        +
        Specified by:
        +
        removeDenied in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        setDenied

        +
        public void setDenied(java.lang.String world,
        +             Plot plot,
        +             org.bukkit.OfflinePlayer player)
        +
        +
        Specified by:
        +
        setDenied in + interface AbstractDB +
        +
        Parameters:
        +
        plot -
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        getRatings

        +
        public double getRatings(Plot plot)
        +
        Description copied from interface: AbstractDB +
        +
        Get Plots ratings
        +
        +
        Specified by:
        +
        getRatings in + interface AbstractDB +
        +
        Parameters:
        +
        plot - Plot Object
        +
        Returns:
        +
        Plot Ratings (pre-calculated)
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html new file mode 100644 index 000000000..3fdb5335a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html @@ -0,0 +1,534 @@ + + + + + + SQLite + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database
+

Class SQLite

+
+
+ +
+
    +
  • +
    +
    +
    public class SQLite
    +extends Database
    +
    Connects to and uses a SQLite database
    +
    +
    Author:
    +
    Citymonstret, tips48
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      +
        +
      • + + + +

        Fields inherited from class com.intellectualcrafters.plot.database.Database

        + plugin +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SQLite(org.bukkit.plugin.Plugin plugin, + java.lang.String dbLocation) + +
      Creates a new SQLite instance
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleancheckConnection() + +
      Checks if a connection is open with the database
      +
      booleancloseConnection() + +
      Closes the connection with the database
      +
      java.sql.ConnectiongetConnection() + +
      Gets the connection with the database
      +
      java.sql.ConnectionopenConnection() + +
      Opens a connection with the database
      +
      java.sql.ResultSetquerySQL(java.lang.String query) + +
      Executes a SQL Query
      + If the connection is closed, it will be opened +
      +
      intupdateSQL(java.lang.String query) + +
      Executes an Update SQL Query
      + See Statement.executeUpdate(String)
      + If the connection is closed, it will be opened +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SQLite

        +
        public SQLite(org.bukkit.plugin.Plugin plugin,
        +      java.lang.String dbLocation)
        +
        Creates a new SQLite instance
        +
        +
        Parameters:
        +
        plugin - Plugin instance
        +
        dbLocation - Location of the Database (Must end in .db)
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        openConnection

        +
        public java.sql.Connection openConnection()
        +                                   throws java.sql.SQLException,
        +                                          java.lang.ClassNotFoundException
        +
        Description copied from class: Database +
        +
        Opens a connection with the database
        +
        +
        Specified by:
        +
        openConnection in + class Database +
        +
        Returns:
        +
        Opened connection
        +
        Throws:
        +
        java.sql.SQLException - if the connection can not be opened
        +
        java.lang.ClassNotFoundException - if the driver cannot be found
        +
        +
      • +
      + + + +
        +
      • +

        checkConnection

        +
        public boolean checkConnection()
        +                        throws java.sql.SQLException
        +
        Description copied from class: Database +
        +
        Checks if a connection is open with the database
        +
        +
        Specified by:
        +
        checkConnection in + class Database +
        +
        Returns:
        +
        true if the connection is open
        +
        Throws:
        +
        java.sql.SQLException - if the connection cannot be checked
        +
        +
      • +
      + + + +
        +
      • +

        getConnection

        +
        public java.sql.Connection getConnection()
        +
        Description copied from class: Database +
        +
        Gets the connection with the database
        +
        +
        Specified by:
        +
        getConnection in + class Database +
        +
        Returns:
        +
        Connection with the database, null if none
        +
        +
      • +
      + + + +
        +
      • +

        closeConnection

        +
        public boolean closeConnection()
        +                        throws java.sql.SQLException
        +
        Description copied from class: Database +
        +
        Closes the connection with the database
        +
        +
        Specified by:
        +
        closeConnection in + class Database +
        +
        Returns:
        +
        true if successful
        +
        Throws:
        +
        java.sql.SQLException - if the connection cannot be closed
        +
        +
      • +
      + + + +
        +
      • +

        querySQL

        +
        public java.sql.ResultSet querySQL(java.lang.String query)
        +                            throws java.sql.SQLException,
        +                                   java.lang.ClassNotFoundException
        +
        Description copied from class: Database +
        +
        Executes a SQL Query
        + If the connection is closed, it will be opened +
        +
        +
        Specified by:
        +
        querySQL in + class Database +
        +
        Parameters:
        +
        query - Query to be run
        +
        Returns:
        +
        the results of the query
        +
        Throws:
        +
        java.sql.SQLException - If the query cannot be executed
        +
        java.lang.ClassNotFoundException - If the driver cannot be found; see + Database.openConnection() +
        +
        +
      • +
      + + + +
        +
      • +

        updateSQL

        +
        public int updateSQL(java.lang.String query)
        +              throws java.sql.SQLException,
        +                     java.lang.ClassNotFoundException
        +
        Description copied from class: Database +
        +
        Executes an Update SQL Query
        + See Statement.executeUpdate(String)
        + If the connection is closed, it will be opened +
        +
        +
        Specified by:
        +
        updateSQL in + class Database +
        +
        Parameters:
        +
        query - Query to be run
        +
        Returns:
        +
        Result Code, see Statement.executeUpdate(String)
        +
        Throws:
        +
        java.sql.SQLException - If the query cannot be executed
        +
        java.lang.ClassNotFoundException - If the driver cannot be found; see + Database.openConnection() +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html new file mode 100644 index 000000000..bbecbb306 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html @@ -0,0 +1,39 @@ + + + + + + com.intellectualcrafters.plot.database + + + + +

com.intellectualcrafters.plot.database +

+ +
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html new file mode 100644 index 000000000..5befad407 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html @@ -0,0 +1,199 @@ + + + + + + com.intellectualcrafters.plot.database + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.database

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html new file mode 100644 index 000000000..4973f546c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html @@ -0,0 +1,167 @@ + + + + + + com.intellectualcrafters.plot.database Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.database

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html new file mode 100644 index 000000000..4633b4db2 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html @@ -0,0 +1,305 @@ + + + + + + PlotTable + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database.sqlobjects
+

Class PlotTable

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotTable
    +extends SQLTable
    +
    Created by Citymonstret on 2014-10-28.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotTable()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidcreate()  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotTable

        +
        public PlotTable()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        create

        +
        public void create()
        +
        +
        Specified by:
        +
        create in + class SQLTable +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html new file mode 100644 index 000000000..579c1469a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html @@ -0,0 +1,301 @@ + + + + + + SQLField + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database.sqlobjects
+

Class SQLField

+
+
+ +
+
    +
  • +
    +
    +
    public class SQLField
    +extends java.lang.Object
    +
    Created by Citymonstret on 2014-10-28.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SQLField(SQLType type, + java.lang.Object value) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      SQLType + getType()  +
      java.lang.ObjectgetValue()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SQLField

        +
        public SQLField(SQLType type,
        +        java.lang.Object value)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getType

        +
        public SQLType getType()
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public java.lang.Object getValue()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html new file mode 100644 index 000000000..1aebaa7d3 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html @@ -0,0 +1,327 @@ + + + + + + SQLTable + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database.sqlobjects
+

Class SQLTable

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    PlotTable
    +
    +
    +
    +
    public abstract class SQLTable
    +extends java.lang.Object
    +
    Created by Citymonstret on 2014-10-28.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SQLTable(java.lang.String name, + java.lang.String primaryKey, + SQLField... fields)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      abstract voidcreate()  +
      SQLField[] + getFields()  +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SQLTable

        +
        public SQLTable(java.lang.String name,
        +        java.lang.String primaryKey,
        +        SQLField... fields)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        getFields

        +
        public SQLField[] getFields()
        +
      • +
      + + + +
        +
      • +

        create

        +
        public abstract void create()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html new file mode 100644 index 000000000..2cc890c38 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html @@ -0,0 +1,457 @@ + + + + + + SQLType + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.database.sqlobjects
+

Enum SQLType

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<SQLType>
    +
    +
    +
    +
    public enum SQLType
    +extends java.lang.Enum<SQLType>
    +
    Created by Citymonstret on 2014-10-28.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      BOOL  +
      INTEGER  +
      VARCHAR  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ObjectgetDefaultValue()  +
      java.lang.ClassgetJavaClass()  +
      intgetLength()  +
      java.lang.StringtoString()  +
      static SQLType + valueOf(java.lang.String name) + +
      Returns the enum constant of this type with the specified name.
      +
      static SQLType[] + values() + +
      Returns an array containing the constants of this enum type, in + the order they are declared. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Enum

        + clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, + valueOf
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Enum Constant Detail

      + + + +
        +
      • +

        INTEGER

        +
        public static final SQLType INTEGER
        +
      • +
      + + + +
        +
      • +

        VARCHAR

        +
        public static final SQLType VARCHAR
        +
      • +
      + + + +
        +
      • +

        BOOL

        +
        public static final SQLType BOOL
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static SQLType[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (SQLType c : SQLType.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are + declared +
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static SQLType valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant + with the specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        getLength

        +
        public int getLength()
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Enum<SQLType> +
        +
        +
      • +
      + + + +
        +
      • +

        getJavaClass

        +
        public java.lang.Class getJavaClass()
        +
      • +
      + + + +
        +
      • +

        getDefaultValue

        +
        public java.lang.Object getDefaultValue()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html new file mode 100644 index 000000000..2a64f8d08 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html @@ -0,0 +1,31 @@ + + + + + + com.intellectualcrafters.plot.database.sqlobjects + + + + +

com.intellectualcrafters.plot.database.sqlobjects

+ +
+

Classes

+ +

Enums

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html new file mode 100644 index 000000000..4bf28db50 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html @@ -0,0 +1,174 @@ + + + + + + com.intellectualcrafters.plot.database.sqlobjects + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.database.sqlobjects

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html new file mode 100644 index 000000000..2eaf14d82 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html @@ -0,0 +1,158 @@ + + + + + + com.intellectualcrafters.plot.database.sqlobjects Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.database.sqlobjects

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html new file mode 100644 index 000000000..70a5af797 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html @@ -0,0 +1,457 @@ + + + + + + PlayerClaimPlotEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerClaimPlotEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlayerClaimPlotEvent
    +extends org.bukkit.event.player.PlayerEvent
    +implements org.bukkit.event.Cancellable
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Field Summary

      +
        +
      • + + + +

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        + player
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerClaimPlotEvent(org.bukkit.entity.Player player, + Plot plot, + boolean auto) + +
      PlayerClaimPlotEvent: Called when a plot is claimed
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the plot involved
      +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      booleanwasAuto()  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        + getPlayer
      • +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerClaimPlotEvent

        +
        public PlayerClaimPlotEvent(org.bukkit.entity.Player player,
        +                    Plot plot,
        +                    boolean auto)
        +
        PlayerClaimPlotEvent: Called when a plot is claimed
        +
        +
        Parameters:
        +
        player - Player that claimed the plot
        +
        plot - Plot that was claimed
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        wasAuto

        +
        public boolean wasAuto()
        +
        +
        Returns:
        +
        true if it was an automated claim, else false
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html new file mode 100644 index 000000000..1cba26322 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html @@ -0,0 +1,393 @@ + + + + + + PlayerEnterPlotEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerEnterPlotEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerEnterPlotEvent
    +extends org.bukkit.event.player.PlayerEvent
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Field Summary

      +
        +
      • + + + +

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        + player
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerEnterPlotEvent(org.bukkit.entity.Player player, + Plot plot) + +
      PlayerEnterPlotEvent: Called when a player leaves a plot
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the plot involved
      +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        + getPlayer
      • +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerEnterPlotEvent

        +
        public PlayerEnterPlotEvent(org.bukkit.entity.Player player,
        +                    Plot plot)
        +
        PlayerEnterPlotEvent: Called when a player leaves a plot
        +
        +
        Parameters:
        +
        player - Player that entered the plot
        +
        plot - Plot that was entered
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html new file mode 100644 index 000000000..e0d4260f8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html @@ -0,0 +1,393 @@ + + + + + + PlayerLeavePlotEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerLeavePlotEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerLeavePlotEvent
    +extends org.bukkit.event.player.PlayerEvent
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Field Summary

      +
        +
      • + + + +

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        + player
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerLeavePlotEvent(org.bukkit.entity.Player player, + Plot plot) + +
      PlayerLeavePlotEvent: Called when a player leaves a plot
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the plot involved
      +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        + getPlayer
      • +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerLeavePlotEvent

        +
        public PlayerLeavePlotEvent(org.bukkit.entity.Player player,
        +                    Plot plot)
        +
        PlayerLeavePlotEvent: Called when a player leaves a plot
        +
        +
        Parameters:
        +
        player - Player that left the plot
        +
        plot - Plot that was left
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html new file mode 100644 index 000000000..73f29ca73 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html @@ -0,0 +1,439 @@ + + + + + + PlayerPlotDeniedEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerPlotDeniedEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerPlotDeniedEvent
    +extends org.bukkit.event.Event
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerPlotDeniedEvent(org.bukkit.entity.Player initiator, + Plot plot, + java.util.UUID player, + boolean added) + +
      PlayerPlotDeniedEvent: Called when the denied UUID list is modified + for a + plot +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      org.bukkit.entity.PlayergetInitiator() + +
      The player initiating the action
      +
      java.util.UUIDgetPlayer() + +
      The player added/removed
      +
      PlotgetPlot() + +
      The plot involved
      +
      booleanwasAdded() + +
      If a user was added
      +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerPlotDeniedEvent

        +
        public PlayerPlotDeniedEvent(org.bukkit.entity.Player initiator,
        +                     Plot plot,
        +                     java.util.UUID player,
        +                     boolean added)
        +
        PlayerPlotDeniedEvent: Called when the denied UUID list is modified for a + plot +
        +
        +
        Parameters:
        +
        initiator - Player that initiated the event
        +
        plot - Plot in which the event occurred
        +
        player - Player that was denied/un-denied
        +
        added - true of add to deny list, false if removed
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        wasAdded

        +
        public boolean wasAdded()
        +
        If a user was added
        +
        +
        Returns:
        +
        boolean
        +
        +
      • +
      + + + +
        +
      • +

        getPlayer

        +
        public java.util.UUID getPlayer()
        +
        The player added/removed
        +
        +
        Returns:
        +
        UUID
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        The plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getInitiator

        +
        public org.bukkit.entity.Player getInitiator()
        +
        The player initiating the action
        +
        +
        Returns:
        +
        Player
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html new file mode 100644 index 000000000..9206bd48a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html @@ -0,0 +1,436 @@ + + + + + + PlayerPlotHelperEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerPlotHelperEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerPlotHelperEvent
    +extends org.bukkit.event.Event
    +
    +
    Author:
    +
    Empire92, Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerPlotHelperEvent(org.bukkit.entity.Player initiator, + Plot plot, + java.util.UUID player, + boolean added) + +
      PlayerPlotHelperEvent: Called when a plot helper is added/removed +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      org.bukkit.entity.PlayergetInitiator() + +
      The player initiating the action
      +
      java.util.UUIDgetPlayer() + +
      The UUID added/removed
      +
      PlotgetPlot() + +
      The plot involved
      +
      booleanwasAdded() + +
      If a player was added
      +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerPlotHelperEvent

        +
        public PlayerPlotHelperEvent(org.bukkit.entity.Player initiator,
        +                     Plot plot,
        +                     java.util.UUID player,
        +                     boolean added)
        +
        PlayerPlotHelperEvent: Called when a plot helper is added/removed
        +
        +
        Parameters:
        +
        initiator - Player that initiated the event
        +
        plot - Plot in which the event occurred
        +
        player - Player that was added/removed from the helper list
        +
        added - true of the player was added, false if the player was removed +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        wasAdded

        +
        public boolean wasAdded()
        +
        If a player was added
        +
        +
        Returns:
        +
        boolean
        +
        +
      • +
      + + + +
        +
      • +

        getPlayer

        +
        public java.util.UUID getPlayer()
        +
        The UUID added/removed
        +
        +
        Returns:
        +
        UUID
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        The plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getInitiator

        +
        public org.bukkit.entity.Player getInitiator()
        +
        The player initiating the action
        +
        +
        Returns:
        +
        Player
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html new file mode 100644 index 000000000..1e6ff4967 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html @@ -0,0 +1,439 @@ + + + + + + PlayerPlotTrustedEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerPlotTrustedEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerPlotTrustedEvent
    +extends org.bukkit.event.Event
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerPlotTrustedEvent(org.bukkit.entity.Player initiator, + Plot plot, + java.util.UUID player, + boolean added) + +
      PlayerPlotTrustedEvent: Called when a plot trusted user is + added/removed +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      org.bukkit.entity.PlayergetInitiator() + +
      The player initiating the action
      +
      java.util.UUIDgetPlayer() + +
      The UUID added/removed
      +
      PlotgetPlot() + +
      The plot involved
      +
      booleanwasAdded() + +
      If a player was added
      +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerPlotTrustedEvent

        +
        public PlayerPlotTrustedEvent(org.bukkit.entity.Player initiator,
        +                      Plot plot,
        +                      java.util.UUID player,
        +                      boolean added)
        +
        PlayerPlotTrustedEvent: Called when a plot trusted user is + added/removed +
        +
        +
        Parameters:
        +
        initiator - Player that initiated the event
        +
        plot - Plot in which the event occurred
        +
        player - Player that was added/removed from the trusted list
        +
        added - true of the player was added, false if the player was removed +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        wasAdded

        +
        public boolean wasAdded()
        +
        If a player was added
        +
        +
        Returns:
        +
        boolean
        +
        +
      • +
      + + + +
        +
      • +

        getPlayer

        +
        public java.util.UUID getPlayer()
        +
        The UUID added/removed
        +
        +
        Returns:
        +
        UUID
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        The plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getInitiator

        +
        public org.bukkit.entity.Player getInitiator()
        +
        The player initiating the action
        +
        +
        Returns:
        +
        Player
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html new file mode 100644 index 000000000..cc8767cd5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html @@ -0,0 +1,465 @@ + + + + + + PlayerTeleportToPlotEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlayerTeleportToPlotEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlayerTeleportToPlotEvent
    +extends org.bukkit.event.player.PlayerEvent
    +implements org.bukkit.event.Cancellable
    +
    Called when a player teleports to a plot
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Field Summary

      +
        +
      • + + + +

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        + player
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerTeleportToPlotEvent(org.bukkit.entity.Player player, + org.bukkit.Location from, + Plot plot) + +
      PlayerTeleportToPlotEvent: Called when a player teleports to a plot +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.LocationgetFrom() + +
      Get the from location
      +
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the plot involved
      +
      booleanisCancelled()  +
      voidsetCancelled(boolean cancelled)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        + getPlayer
      • +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerTeleportToPlotEvent

        +
        public PlayerTeleportToPlotEvent(org.bukkit.entity.Player player,
        +                         org.bukkit.Location from,
        +                         Plot plot)
        +
        PlayerTeleportToPlotEvent: Called when a player teleports to a plot
        +
        +
        Parameters:
        +
        player - That was teleported
        +
        from - Start location
        +
        plot - Plot to which the player was teleported
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        getFrom

        +
        public org.bukkit.Location getFrom()
        +
        Get the from location
        +
        +
        Returns:
        +
        Location
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean cancelled)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html new file mode 100644 index 000000000..78135c829 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html @@ -0,0 +1,430 @@ + + + + + + PlotClearEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlotClearEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlotClearEvent
    +extends org.bukkit.event.Event
    +implements org.bukkit.event.Cancellable
    +
    Called when a plot is cleared
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotClearEvent(java.lang.String world, + PlotId id) + +
      PlotDeleteEvent: Called when a plot is cleared
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotIdgetPlotId() + +
      Get the PlotId
      +
      java.lang.StringgetWorld() + +
      Get the world name
      +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotClearEvent

        +
        public PlotClearEvent(java.lang.String world,
        +              PlotId id)
        +
        PlotDeleteEvent: Called when a plot is cleared
        +
        +
        Parameters:
        +
        world - The world in which the plot was cleared
        +
        id - The plot that was cleared
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlotId

        +
        public PlotId getPlotId()
        +
        Get the PlotId
        +
        +
        Returns:
        +
        PlotId
        +
        +
      • +
      + + + +
        +
      • +

        getWorld

        +
        public java.lang.String getWorld()
        +
        Get the world name
        +
        +
        Returns:
        +
        String
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html new file mode 100644 index 000000000..8ff1e07b7 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html @@ -0,0 +1,430 @@ + + + + + + PlotDeleteEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlotDeleteEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlotDeleteEvent
    +extends org.bukkit.event.Event
    +implements org.bukkit.event.Cancellable
    +
    Called when a plot is deleted
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotDeleteEvent(java.lang.String world, + PlotId id) + +
      PlotDeleteEvent: Called when a plot is deleted
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotIdgetPlotId() + +
      Get the PlotId
      +
      java.lang.StringgetWorld() + +
      Get the world name
      +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotDeleteEvent

        +
        public PlotDeleteEvent(java.lang.String world,
        +               PlotId id)
        +
        PlotDeleteEvent: Called when a plot is deleted
        +
        +
        Parameters:
        +
        world - The world in which the plot was deleted
        +
        id - The ID of the plot that was deleted
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlotId

        +
        public PlotId getPlotId()
        +
        Get the PlotId
        +
        +
        Returns:
        +
        PlotId
        +
        +
      • +
      + + + +
        +
      • +

        getWorld

        +
        public java.lang.String getWorld()
        +
        Get the world name
        +
        +
        Returns:
        +
        String
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html new file mode 100644 index 000000000..4a132a387 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html @@ -0,0 +1,436 @@ + + + + + + PlotFlagAddEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlotFlagAddEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlotFlagAddEvent
    +extends org.bukkit.event.Event
    +implements org.bukkit.event.Cancellable
    +
    Called when a Flag is added to a plot
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotFlagAddEvent(Flag flag, + Plot plot) + +
      PlotFlagAddEvent: Called when a Flag is added to a plot
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      FlaggetFlag() + +
      Get the flag involved
      +
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the plot involved
      +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotFlagAddEvent

        +
        public PlotFlagAddEvent(Flag flag,
        +                Plot plot)
        +
        PlotFlagAddEvent: Called when a Flag is added to a plot
        +
        +
        Parameters:
        +
        flag - Flag that was added
        +
        plot - Plot to which the flag was added
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getFlag

        +
        public Flag getFlag()
        +
        Get the flag involved
        +
        +
        Returns:
        +
        Flag
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html new file mode 100644 index 000000000..121d44fa5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html @@ -0,0 +1,436 @@ + + + + + + PlotFlagRemoveEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlotFlagRemoveEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlotFlagRemoveEvent
    +extends org.bukkit.event.Event
    +implements org.bukkit.event.Cancellable
    +
    Called when a flag is removed from a plot
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotFlagRemoveEvent(Flag flag, + Plot plot) + +
      PlotFlagRemoveEvent: Called when a flag is removed from a plot
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      FlaggetFlag() + +
      Get the flag involved
      +
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the plot involved
      +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotFlagRemoveEvent

        +
        public PlotFlagRemoveEvent(Flag flag,
        +                   Plot plot)
        +
        PlotFlagRemoveEvent: Called when a flag is removed from a plot
        +
        +
        Parameters:
        +
        flag - Flag that was removed
        +
        plot - Plot from which the flag was removed
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the plot involved
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getFlag

        +
        public Flag getFlag()
        +
        Get the flag involved
        +
        +
        Returns:
        +
        Flag
        +
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html new file mode 100644 index 000000000..381ee7fef --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html @@ -0,0 +1,454 @@ + + + + + + PlotMergeEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlotMergeEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlotMergeEvent
    +extends org.bukkit.event.Event
    +implements org.bukkit.event.Cancellable
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotMergeEvent(org.bukkit.World world, + Plot plot, + java.util.ArrayList<PlotId> plots) + +
      PlotMergeEvent: Called when plots are merged
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      PlotgetPlot() + +
      Get the main plot
      +
      java.util.ArrayList<PlotId>getPlots() + +
      Get the plots being added;
      +
      org.bukkit.WorldgetWorld()  +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotMergeEvent

        +
        public PlotMergeEvent(org.bukkit.World world,
        +              Plot plot,
        +              java.util.ArrayList<PlotId> plots)
        +
        PlotMergeEvent: Called when plots are merged
        +
        +
        Parameters:
        +
        world - World in which the event occurred
        +
        plot - Plot that was merged
        +
        plots - A list of plots involved in the event
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public java.util.ArrayList<PlotId> getPlots()
        +
        Get the plots being added;
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
        Get the main plot
        +
        +
        Returns:
        +
        Plot
        +
        +
      • +
      + + + +
        +
      • +

        getWorld

        +
        public org.bukkit.World getWorld()
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html new file mode 100644 index 000000000..35e1d86e2 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html @@ -0,0 +1,422 @@ + + + + + + PlotUnlinkEvent + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.events
+

Class PlotUnlinkEvent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Cancellable
    +
    +
    +
    +
    public class PlotUnlinkEvent
    +extends org.bukkit.event.Event
    +implements org.bukkit.event.Cancellable
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        + org.bukkit.event.Event.Result
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotUnlinkEvent(org.bukkit.World world, + java.util.ArrayList<PlotId> plots) + +
      Called when a mega-plot is unlinked.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  +
      org.bukkit.event.HandlerListgetHandlers()  +
      java.util.ArrayList<PlotId>getPlots() + +
      Get the plots involved
      +
      org.bukkit.WorldgetWorld()  +
      booleanisCancelled()  +
      voidsetCancelled(boolean b)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.event.Event

        + getEventName, isAsynchronous
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotUnlinkEvent

        +
        public PlotUnlinkEvent(org.bukkit.World world,
        +               java.util.ArrayList<PlotId> plots)
        +
        Called when a mega-plot is unlinked.
        +
        +
        Parameters:
        +
        world - World in which the event occurred
        +
        plots - Plots that are involved in the event
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getHandlerList

        +
        public static org.bukkit.event.HandlerList getHandlerList()
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        public java.util.ArrayList<PlotId> getPlots()
        +
        Get the plots involved
        +
        +
        Returns:
        +
        PlotId
        +
        +
      • +
      + + + +
        +
      • +

        getWorld

        +
        public org.bukkit.World getWorld()
        +
      • +
      + + + +
        +
      • +

        getHandlers

        +
        public org.bukkit.event.HandlerList getHandlers()
        +
        +
        Specified by:
        +
        getHandlers in class org.bukkit.event.Event
        +
        +
      • +
      + + + +
        +
      • +

        isCancelled

        +
        public boolean isCancelled()
        +
        +
        Specified by:
        +
        isCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      + + + +
        +
      • +

        setCancelled

        +
        public void setCancelled(boolean b)
        +
        +
        Specified by:
        +
        setCancelled in + interface org.bukkit.event.Cancellable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html new file mode 100644 index 000000000..9fdbba61c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html @@ -0,0 +1,46 @@ + + + + + + com.intellectualcrafters.plot.events + + + + +

com.intellectualcrafters.plot.events +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html new file mode 100644 index 000000000..c6356e543 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html @@ -0,0 +1,220 @@ + + + + + + com.intellectualcrafters.plot.events + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.events

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html new file mode 100644 index 000000000..86dcbda95 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html @@ -0,0 +1,195 @@ + + + + + + com.intellectualcrafters.plot.events Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.events

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html new file mode 100644 index 000000000..34ca6d42f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html @@ -0,0 +1,377 @@ + + + + + + AbstractFlag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.flag
+

Class AbstractFlag

+
+
+ +
+
    +
  • +
    +
    +
    public class AbstractFlag
    +extends java.lang.Object
    +
    Created 2014-09-23 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      AbstractFlag(java.lang.String key)  +
      AbstractFlag(java.lang.String key, + FlagValue<?> value) + +
      AbstractFlag is a parameter used in creating a new Flag
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object other)  +
      java.lang.StringgetKey() + +
      AbstractFlag key
      +
      java.lang.StringgetValueDesc()  +
      java.lang.StringparseValue(java.lang.String value)  +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait +
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        AbstractFlag

        +
        public AbstractFlag(java.lang.String key)
        +
      • +
      + + + +
        +
      • +

        AbstractFlag

        +
        public AbstractFlag(java.lang.String key,
        +            FlagValue<?> value)
        +
        AbstractFlag is a parameter used in creating a new Flag
        +
        +
        Parameters:
        +
        key - The key must be alphabetical characters and <= 16 characters + in length +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        parseValue

        +
        public java.lang.String parseValue(java.lang.String value)
        +
      • +
      + + + +
        +
      • +

        getValueDesc

        +
        public java.lang.String getValueDesc()
        +
      • +
      + + + +
        +
      • +

        getKey

        +
        public java.lang.String getKey()
        +
        AbstractFlag key
        +
        +
        Returns:
        +
        String
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object other)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html new file mode 100644 index 000000000..0eddbb5b8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html @@ -0,0 +1,401 @@ + + + + + + Flag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.flag
+

Class Flag

+
+
+ +
+
    +
  • +
    +
    +
    public class Flag
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Flag(AbstractFlag key, + java.lang.String value) + +
      Flag object used to store basic information for a Plot.
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj)  +
      AbstractFlaggetAbstractFlag() + +
      Get the AbstractFlag used in creating the flag
      +
      java.lang.StringgetKey() + +
      Get the key for the AbstractFlag
      +
      java.lang.StringgetValue() + +
      Get the value
      +
      inthashCode()  +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Flag

        +
        public Flag(AbstractFlag key,
        +    java.lang.String value)
        +
        Flag object used to store basic information for a Plot. Flags are a + key/value pair. For a flag to be usable by a player, you need to register + it with PlotSquared. +
        +
        +
        Parameters:
        +
        key - AbstractFlag
        +
        value - Value must be alphanumerical (can have spaces) and be <= 48 + characters +
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if you provide inadequate inputs +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getAbstractFlag

        +
        public AbstractFlag getAbstractFlag()
        +
        Get the AbstractFlag used in creating the flag
        +
        +
        Returns:
        +
        AbstractFlag
        +
        +
      • +
      + + + +
        +
      • +

        getKey

        +
        public java.lang.String getKey()
        +
        Get the key for the AbstractFlag
        +
        +
        Returns:
        +
        String
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public java.lang.String getValue()
        +
        Get the value
        +
        +
        Returns:
        +
        String
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html new file mode 100644 index 000000000..f15252b57 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html @@ -0,0 +1,530 @@ + + + + + + FlagManager + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.flag
+

Class FlagManager

+
+
+ +
+
    +
  • +
    +
    +
    public class FlagManager
    +extends java.lang.Object
    +
    Flag Manager Utility
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      FlagManager()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static booleanaddFlag(AbstractFlag flag) + +
      Register an AbstractFlag with PlotSquared
      +
      static AbstractFlaggetFlag(java.lang.String string) + +
      Get an AbstractFlag by a string Returns null if flag does not exist +
      +
      static AbstractFlaggetFlag(java.lang.String string, + boolean create) + +
      Get an AbstractFlag by a string
      +
      static java.util.List<AbstractFlag>getFlags() + +
      Get a list of registered AbstractFlag objects
      +
      static java.util.List<AbstractFlag>getFlags(org.bukkit.entity.Player player) + +
      Get a list of registerd AbstragFlag objects based on player + permissions +
      +
      static java.util.List<AbstractFlag>getPlotFlags(Plot plot) + +
      Get the flags for a plot
      +
      static Flag[]parseFlags(java.util.List<java.lang.String> flagstrings)  +
      static booleanremoveFlag(AbstractFlag flag) + +
      Remove a registered AbstractFlag
      +
      static Flag[]removeFlag(Flag[] flags, + java.lang.String r) 
      static Flag[]removeFlag(java.util.Set<Flag> flags, + java.lang.String r) 
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        FlagManager

        +
        public FlagManager()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        addFlag

        +
        public static boolean addFlag(AbstractFlag flag)
        +
        Register an AbstractFlag with PlotSquared
        +
        +
        Parameters:
        +
        flag - Flag to register
        +
        Returns:
        +
        success?
        +
        +
      • +
      + + + +
        +
      • +

        removeFlag

        +
        public static Flag[] removeFlag(Flag[] flags,
        +                java.lang.String r)
        +
      • +
      + + + +
        +
      • +

        removeFlag

        +
        public static Flag[] removeFlag(java.util.Set<Flag> flags,
        +                java.lang.String r)
        +
      • +
      + + + +
        +
      • +

        getFlags

        +
        public static java.util.List<AbstractFlag> getFlags()
        +
        Get a list of registered AbstractFlag objects
        +
        +
        Returns:
        +
        List (AbstractFlag)
        +
        +
      • +
      + + + +
        +
      • +

        getFlags

        +
        public static java.util.List<AbstractFlag> getFlags(org.bukkit.entity.Player player)
        +
        Get a list of registerd AbstragFlag objects based on player permissions +
        +
        +
        Parameters:
        +
        player - with permissions
        +
        Returns:
        +
        List (AbstractFlag)
        +
        +
      • +
      + + + +
        +
      • +

        getFlag

        +
        public static AbstractFlag getFlag(java.lang.String string)
        +
        Get an AbstractFlag by a string Returns null if flag does not exist
        +
        +
        Parameters:
        +
        string - Flag Key
        +
        Returns:
        +
        AbstractFlag
        +
        +
      • +
      + + + +
        +
      • +

        getFlag

        +
        public static AbstractFlag getFlag(java.lang.String string,
        +                   boolean create)
        +
        Get an AbstractFlag by a string
        +
        +
        Parameters:
        +
        string - Flag Key
        +
        create - If to create the flag if it does not exist
        +
        Returns:
        +
        AbstractFlag
        +
        +
      • +
      + + + +
        +
      • +

        removeFlag

        +
        public static boolean removeFlag(AbstractFlag flag)
        +
        Remove a registered AbstractFlag
        +
        +
        Parameters:
        +
        flag - Flag Key
        +
        Returns:
        +
        boolean Result of operation
        +
        +
      • +
      + + + +
        +
      • +

        parseFlags

        +
        public static Flag[] parseFlags(java.util.List<java.lang.String> flagstrings)
        +
      • +
      + + + +
        +
      • +

        getPlotFlags

        +
        public static java.util.List<AbstractFlag> getPlotFlags(Plot plot)
        +
        Get the flags for a plot
        +
        +
        Parameters:
        +
        plot - Plot to search in
        +
        Returns:
        +
        List (AbstractFlag)
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html new file mode 100644 index 000000000..24cde5123 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html @@ -0,0 +1,384 @@ + + + + + + FlagValue.BooleanValue + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.flag
+

Class FlagValue.BooleanValue

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    FlagValue<T>
    +
    +
    +
    +
    public static class FlagValue.BooleanValue
    +extends FlagValue<java.lang.Boolean>
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetDescription()  +
      java.lang.BooleangetValue(java.lang.String t)  +
      java.lang.Stringparse(java.lang.String t)  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        FlagValue.BooleanValue

        +
        public FlagValue.BooleanValue()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public java.lang.Boolean getValue(java.lang.String t)
        +
        +
        Specified by:
        +
        getValue in + class FlagValue<java.lang.Boolean> +
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public java.lang.String parse(java.lang.String t)
        +
        +
        Specified by:
        +
        parse in + class FlagValue<java.lang.Boolean> +
        +
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
        +
        Specified by:
        +
        getDescription in + class FlagValue<java.lang.Boolean> +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html new file mode 100644 index 000000000..de0372fe8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html @@ -0,0 +1,382 @@ + + + + + + FlagValue.StringValue + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.flag
+

Class FlagValue.StringValue

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    FlagValue<T>
    +
    +
    +
    +
    public static class FlagValue.StringValue
    +extends FlagValue<java.lang.String>
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetDescription()  +
      java.lang.StringgetValue(java.lang.String t)  +
      java.lang.Stringparse(java.lang.String s)  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        FlagValue.StringValue

        +
        public FlagValue.StringValue()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        parse

        +
        public java.lang.String parse(java.lang.String s)
        +
        +
        Specified by:
        +
        parse in + class FlagValue<java.lang.String> +
        +
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
        +
        Specified by:
        +
        getDescription in + class FlagValue<java.lang.String> +
        +
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public java.lang.String getValue(java.lang.String t)
        +
        +
        Specified by:
        +
        getValue in + class FlagValue<java.lang.String> +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html new file mode 100644 index 000000000..1346b3272 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html @@ -0,0 +1,381 @@ + + + + + + FlagValue + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.flag
+

Class FlagValue<T>

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    FlagValue.BooleanValue, FlagValue.StringValue
    +
    +
    +
    +
    public abstract class FlagValue<T>
    +extends java.lang.Object
    +
    Created 2014-11-17 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      FlagValue()  +
      FlagValue(java.lang.Class<T> clazz) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      abstract java.lang.StringgetDescription()  +
      abstract TgetValue(java.lang.String t)  +
      abstract java.lang.Stringparse(java.lang.String t)  +
      booleanvalidValue(java.lang.Object value)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        FlagValue

        +
        public FlagValue()
        +
      • +
      + + + +
        +
      • +

        FlagValue

        +
        public FlagValue(java.lang.Class<T> clazz)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        validValue

        +
        public boolean validValue(java.lang.Object value)
        +
      • +
      + + + +
        +
      • +

        getValue

        +
        public abstract T getValue(java.lang.String t)
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public abstract java.lang.String parse(java.lang.String t)
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public abstract java.lang.String getDescription()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html new file mode 100644 index 000000000..820adbc2c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html @@ -0,0 +1,31 @@ + + + + + + com.intellectualcrafters.plot.flag + + + + +

com.intellectualcrafters.plot.flag +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html new file mode 100644 index 000000000..4c571fece --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html @@ -0,0 +1,169 @@ + + + + + + com.intellectualcrafters.plot.flag + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.flag

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html new file mode 100644 index 000000000..14bb482e1 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html @@ -0,0 +1,152 @@ + + + + + + com.intellectualcrafters.plot.flag Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.flag

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html new file mode 100644 index 000000000..2ebf17c04 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html @@ -0,0 +1,973 @@ + + + + + + DefaultPlotManager + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.generator
+

Class DefaultPlotManager

+
+
+ +
+
    +
  • +
    +
    +
    public class DefaultPlotManager
    +extends PlotManager
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      DefaultPlotManager()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanclearPlot(org.bukkit.World world, + Plot plot) + +
      Clearing the plot needs to only consider removing the blocks - This + implementation has used the SetCuboid function, as it is fast, and uses + NMS code - It also makes use of the fact that deleting chunks is a lot + faster than block updates This code is very messy, but you don't need to + do something quite as complex unless you happen to have 512x512 sized + plots +
      +
      booleancreateRoadEast(PlotWorld plotworld, + Plot plot) + +
      PLOT MERGING
      +
      booleancreateRoadSouth(PlotWorld plotworld, + Plot plot)  +
      booleancreateRoadSouthEast(PlotWorld plotworld, + Plot plot)  +
      booleanfinishPlotMerge(org.bukkit.World world, + PlotWorld plotworld, + java.util.ArrayList<PlotId> plotIds) + +
      Finishing off plot merging by adding in the walls surrounding the + plot + (OPTIONAL)(UNFINISHED) +
      +
      booleanfinishPlotUnlink(org.bukkit.World world, + PlotWorld plotworld, + java.util.ArrayList<PlotId> plotIds)  +
      org.bukkit.LocationgetPlotBottomLocAbs(PlotWorld plotworld, + PlotId plotid) + +
      Get the bottom plot loc (some basic math)
      +
      PlotIdgetPlotId(PlotWorld plotworld, + org.bukkit.Location loc) + +
      Some complex stuff for traversing mega plots (return getPlotIdAbs if + you + do not support mega plots) +
      +
      PlotIdgetPlotIdAbs(PlotWorld plotworld, + org.bukkit.Location loc) + +
      Default implementation of getting a plot at a given location For a + simplified explanation of the math involved: - Get the current coords - + shift these numbers down to something relatable for a single plot + (similar to reducing trigonometric functions down to the first quadrant) + - e.g. +
      +
      org.bukkit.LocationgetPlotTopLocAbs(PlotWorld plotworld, + PlotId plotid) + +
      Get the top plot loc (some basic math)
      +
      org.bukkit.LocationgetSignLoc(org.bukkit.World world, + PlotWorld plotworld, + Plot plot) + +
      Remove sign for a plot
      +
      booleanisInPlotAbs(PlotWorld plotworld, + org.bukkit.Location loc, + PlotId plotid) + +
      Check if a location is inside a specific plot(non-Javadoc) - For this + implementation, we don't need to do anything fancier than referring to + getPlotIdAbs(...) +
      +
      booleanremoveRoadEast(PlotWorld plotworld, + Plot plot)  +
      booleanremoveRoadSouth(PlotWorld plotworld, + Plot plot)  +
      booleanremoveRoadSouthEast(PlotWorld plotworld, + Plot plot)  +
      booleansetBiome(org.bukkit.World world, + Plot plot, + org.bukkit.block.Biome biome) + +
      Set a plot biome
      +
      booleansetFloor(org.bukkit.World world, + PlotWorld plotworld, + PlotId plotid, + PlotBlock[] blocks)  +
      booleansetWall(org.bukkit.World w, + PlotWorld plotworld, + PlotId plotid, + PlotBlock plotblock)  +
      booleansetWallFilling(org.bukkit.World w, + PlotWorld plotworld, + PlotId plotid, + PlotBlock plotblock)  +
      booleanstartPlotMerge(org.bukkit.World world, + PlotWorld plotworld, + java.util.ArrayList<PlotId> plotIds)  +
      booleanstartPlotUnlink(org.bukkit.World world, + PlotWorld plotworld, + java.util.ArrayList<PlotId> plotIds)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DefaultPlotManager

        +
        public DefaultPlotManager()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getPlotIdAbs

        +
        public PlotId getPlotIdAbs(PlotWorld plotworld,
        +                  org.bukkit.Location loc)
        +
        Default implementation of getting a plot at a given location For a + simplified explanation of the math involved: - Get the current coords - + shift these numbers down to something relatable for a single plot + (similar to reducing trigonometric functions down to the first quadrant) + - e.g. If the plot size is 20 blocks, and we are at x=25, it's equivalent + to x=5 for that specific plot From this, and knowing how thick the road + is, we can say whether x=5 is road, or plot. The number of shifts done, + is also counted, and this number gives us the PlotId +
        +
        +
        Specified by:
        +
        getPlotIdAbs in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        getPlotId

        +
        public PlotId getPlotId(PlotWorld plotworld,
        +               org.bukkit.Location loc)
        +
        Some complex stuff for traversing mega plots (return getPlotIdAbs if you + do not support mega plots) +
        +
        +
        Specified by:
        +
        getPlotId in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        isInPlotAbs

        +
        public boolean isInPlotAbs(PlotWorld plotworld,
        +                  org.bukkit.Location loc,
        +                  PlotId plotid)
        +
        Check if a location is inside a specific plot(non-Javadoc) - For this + implementation, we don't need to do anything fancier than referring to + getPlotIdAbs(...) +
        +
        +
        Specified by:
        +
        isInPlotAbs in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        getPlotBottomLocAbs

        +
        public org.bukkit.Location getPlotBottomLocAbs(PlotWorld plotworld,
        +                                      PlotId plotid)
        +
        Get the bottom plot loc (some basic math)
        +
        +
        Specified by:
        +
        getPlotBottomLocAbs in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        getPlotTopLocAbs

        +
        public org.bukkit.Location getPlotTopLocAbs(PlotWorld plotworld,
        +                                   PlotId plotid)
        +
        Get the top plot loc (some basic math)
        +
        +
        Specified by:
        +
        getPlotTopLocAbs in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        clearPlot

        +
        public boolean clearPlot(org.bukkit.World world,
        +                Plot plot)
        +
        Clearing the plot needs to only consider removing the blocks - This + implementation has used the SetCuboid function, as it is fast, and uses + NMS code - It also makes use of the fact that deleting chunks is a lot + faster than block updates This code is very messy, but you don't need to + do something quite as complex unless you happen to have 512x512 sized + plots +
        +
        +
        Specified by:
        +
        clearPlot in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        getSignLoc

        +
        public org.bukkit.Location getSignLoc(org.bukkit.World world,
        +                             PlotWorld plotworld,
        +                             Plot plot)
        +
        Remove sign for a plot
        +
        +
        Specified by:
        +
        getSignLoc in + class PlotManager
        +
        +
      • +
      + + + + + + + + + + + + + + + +
        +
      • +

        setBiome

        +
        public boolean setBiome(org.bukkit.World world,
        +               Plot plot,
        +               org.bukkit.block.Biome biome)
        +
        Set a plot biome
        +
        +
        Specified by:
        +
        setBiome in + class PlotManager
        +
        +
      • +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
      • +

        finishPlotMerge

        +
        public boolean finishPlotMerge(org.bukkit.World world,
        +                      PlotWorld plotworld,
        +                      java.util.ArrayList<PlotId> plotIds)
        +
        Finishing off plot merging by adding in the walls surrounding the plot + (OPTIONAL)(UNFINISHED) +
        +
        +
        Specified by:
        +
        finishPlotMerge in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        finishPlotUnlink

        +
        public boolean finishPlotUnlink(org.bukkit.World world,
        +                       PlotWorld plotworld,
        +                       java.util.ArrayList<PlotId> plotIds)
        +
        +
        Specified by:
        +
        finishPlotUnlink in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        startPlotMerge

        +
        public boolean startPlotMerge(org.bukkit.World world,
        +                     PlotWorld plotworld,
        +                     java.util.ArrayList<PlotId> plotIds)
        +
        +
        Specified by:
        +
        startPlotMerge in + class PlotManager
        +
        +
      • +
      + + + +
        +
      • +

        startPlotUnlink

        +
        public boolean startPlotUnlink(org.bukkit.World world,
        +                      PlotWorld plotworld,
        +                      java.util.ArrayList<PlotId> plotIds)
        +
        +
        Specified by:
        +
        startPlotUnlink in + class PlotManager
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html new file mode 100644 index 000000000..b9c4a5323 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html @@ -0,0 +1,928 @@ + + + + + + DefaultPlotWorld + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.generator
+

Class DefaultPlotWorld

+
+
+ +
+
    +
  • +
    +
    +
    public class DefaultPlotWorld
    +extends PlotWorld
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        ROAD_HEIGHT_DEFAULT

        +
        public static int ROAD_HEIGHT_DEFAULT
        +
        Default Road Height: 64
        +
      • +
      + + + +
        +
      • +

        PLOT_HEIGHT_DEFAULT

        +
        public static int PLOT_HEIGHT_DEFAULT
        +
        Default plot height: 64
        +
      • +
      + + + +
        +
      • +

        WALL_HEIGHT_DEFAULT

        +
        public static int WALL_HEIGHT_DEFAULT
        +
        Default Wall Height: 64
        +
      • +
      + + + +
        +
      • +

        PLOT_WIDTH_DEFAULT

        +
        public static int PLOT_WIDTH_DEFAULT
        +
        Default plot width: 32
        +
      • +
      + + + +
        +
      • +

        ROAD_WIDTH_DEFAULT

        +
        public static int ROAD_WIDTH_DEFAULT
        +
        Default road width: 7
        +
      • +
      + + + +
        +
      • +

        MAIN_BLOCK_DEFAULT

        +
        public static PlotBlock[] MAIN_BLOCK_DEFAULT
        +
        Default main block: 1
        +
      • +
      + + + +
        +
      • +

        TOP_BLOCK_DEFAULT

        +
        public static PlotBlock[] TOP_BLOCK_DEFAULT
        +
        Default top blocks: {"2"}
        +
      • +
      + + + +
        +
      • +

        WALL_BLOCK_DEFAULT

        +
        public static PlotBlock WALL_BLOCK_DEFAULT
        +
        Default wall block: 44
        +
      • +
      + + + +
        +
      • +

        CLAIMED_WALL_BLOCK_DEFAULT

        +
        public static PlotBlock CLAIMED_WALL_BLOCK_DEFAULT
        +
      • +
      + + + +
        +
      • +

        WALL_FILLING_DEFAULT

        +
        public static PlotBlock WALL_FILLING_DEFAULT
        +
        Default wall filling: 1
        +
      • +
      + + + +
        +
      • +

        ROAD_STRIPES_DEFAULT

        +
        public static PlotBlock ROAD_STRIPES_DEFAULT
        +
        Default road stripes: 35
        +
      • +
      + + + +
        +
      • +

        ROAD_STRIPES_ENABLED_DEFAULT

        +
        public static boolean ROAD_STRIPES_ENABLED_DEFAULT
        +
      • +
      + + + +
        +
      • +

        ROAD_BLOCK_DEFAULT

        +
        public static PlotBlock ROAD_BLOCK_DEFAULT
        +
        Default road block: 155
        +
      • +
      + + + +
        +
      • +

        ROAD_HEIGHT

        +
        public int ROAD_HEIGHT
        +
        Road Height
        +
      • +
      + + + +
        +
      • +

        PLOT_HEIGHT

        +
        public int PLOT_HEIGHT
        +
        plot height
        +
      • +
      + + + +
        +
      • +

        WALL_HEIGHT

        +
        public int WALL_HEIGHT
        +
        Wall height
        +
      • +
      + + + +
        +
      • +

        PLOT_WIDTH

        +
        public int PLOT_WIDTH
        +
        plot width
        +
      • +
      + + + +
        +
      • +

        ROAD_WIDTH

        +
        public int ROAD_WIDTH
        +
        Road width
        +
      • +
      + + + +
        +
      • +

        MAIN_BLOCK

        +
        public PlotBlock[] MAIN_BLOCK
        +
        Plot main block
        +
      • +
      + + + +
        +
      • +

        TOP_BLOCK

        +
        public PlotBlock[] TOP_BLOCK
        +
        Top blocks
        +
      • +
      + + + +
        +
      • +

        WALL_BLOCK

        +
        public PlotBlock WALL_BLOCK
        +
        Wall block
        +
      • +
      + + + +
        +
      • +

        CLAIMED_WALL_BLOCK

        +
        public PlotBlock CLAIMED_WALL_BLOCK
        +
      • +
      + + + +
        +
      • +

        WALL_FILLING

        +
        public PlotBlock WALL_FILLING
        +
        Wall filling
        +
      • +
      + + + +
        +
      • +

        ROAD_STRIPES

        +
        public PlotBlock ROAD_STRIPES
        +
        Road stripes
        +
      • +
      + + + +
        +
      • +

        ROAD_STRIPES_ENABLED

        +
        public boolean ROAD_STRIPES_ENABLED
        +
        enable road stripes
        +
      • +
      + + + +
        +
      • +

        ROAD_BLOCK

        +
        public PlotBlock ROAD_BLOCK
        +
        Road block
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        DefaultPlotWorld

        +
        public DefaultPlotWorld(java.lang.String worldname)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getSettingNodes

        +
        public ConfigurationNode[] getSettingNodes()
        +
        CONFIG NODE | DEFAULT VALUE | DESCRIPTION | CONFIGURATION TYPE | REQUIRED + FOR INITIAL SETUP +

        + Set the last boolean to false if you do not require a specific config + node to be set while using the setup command - this may be useful if a + config value can be changed at a later date, and has no impact on the + actual world generation +

        +
        +
        Specified by:
        +
        getSettingNodes in + class PlotWorld +
        +
        Returns:
        +
        ConfigurationNode[]
        +
        +
      • +
      + + + +
        +
      • +

        loadConfiguration

        +
        public void loadConfiguration(org.bukkit.configuration.ConfigurationSection config)
        +
        This method is called when a world loads. Make sure you set all your + constants here. You are provided with the configuration section for that + specific world. +
        +
        +
        Specified by:
        +
        loadConfiguration in + class PlotWorld +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html new file mode 100644 index 000000000..604d2dae3 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html @@ -0,0 +1,580 @@ + + + + + + WorldGenerator + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.generator
+

Class WorldGenerator

+
+
+ +
+
    +
  • +
    +
    +
    public class WorldGenerator
    +extends PlotGenerator
    +
    +
    Author:
    +
    Citymonstret The default generator is very messy, as we have decided + to try externalize all calculations from within the loop. - You will + see a lot of slower implementations have a single for loop. - This is + perfectly fine to do, it will just mean world generation may take + somewhat longer +
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from + class org.bukkit.generator.ChunkGenerator

        + org.bukkit.generator.ChunkGenerator.BiomeGrid
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      WorldGenerator(java.lang.String world) + +
      Initialize variables, and create plotworld object used in + calculations +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleancanSpawn(org.bukkit.World world, + int x, + int z) + +
      Allow spawning everywhere
      +
      short[][]generateExtBlockSections(org.bukkit.World world, + java.util.Random random, + int cx, + int cz, + org.bukkit.generator.ChunkGenerator.BiomeGrid biomes) + +
      This part is a fucking mess. - Refer to a proper tutorial if you + would + like to learn how to make a world generator +
      +
      java.util.List<org.bukkit.generator.BlockPopulator> + getDefaultPopulators(org.bukkit.World world) + +
      Return the block populator
      +
      org.bukkit.LocationgetFixedSpawnLocation(org.bukkit.World world, + java.util.Random random) + +
      Return the default spawn location for this world
      +
      PlotWorldgetNewPlotWorld(java.lang.String world) + +
      Get a new plotworld class For square plots you can use the + DefaultPlotWorld class which comes with PlotSquared +
      +
      PlotManagergetPlotManager() + +
      Return the plot manager for this type of generator, or create one For + square plots you may as well use the default plot manager which comes + with PlotSquared +
      +
      longnextLong()  +
      intrandom(int n)  +
      voidsetCuboidRegion(int x1, + int x2, + int y1, + int y2, + int z1, + int z2, + PlotBlock block) + +
      Cuboid based plot generation is quick, as it requires no calculations + inside the loop - You don't have to use this this method, but you may + find it useful. +
      +
      longxorShift64(long a)  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.generator.ChunkGenerator

        + generate, generateBlockSections
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        WorldGenerator

        +
        public WorldGenerator(java.lang.String world)
        +
        Initialize variables, and create plotworld object used in calculations +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getPlotManager

        +
        public PlotManager getPlotManager()
        +
        Return the plot manager for this type of generator, or create one For + square plots you may as well use the default plot manager which comes + with PlotSquared +
        +
        +
        Specified by:
        +
        getPlotManager in + class PlotGenerator +
        +
        +
      • +
      + + + +
        +
      • +

        canSpawn

        +
        public boolean canSpawn(org.bukkit.World world,
        +               int x,
        +               int z)
        +
        Allow spawning everywhere
        +
        +
        Overrides:
        +
        canSpawn in + class org.bukkit.generator.ChunkGenerator
        +
        +
      • +
      + + + +
        +
      • +

        getNewPlotWorld

        +
        public PlotWorld getNewPlotWorld(java.lang.String world)
        +
        Get a new plotworld class For square plots you can use the + DefaultPlotWorld class which comes with PlotSquared +
        +
        +
        Specified by:
        +
        getNewPlotWorld in + class PlotGenerator +
        +
        +
      • +
      + + + +
        +
      • +

        nextLong

        +
        public final long nextLong()
        +
      • +
      + + + +
        +
      • +

        xorShift64

        +
        public final long xorShift64(long a)
        +
      • +
      + + + +
        +
      • +

        random

        +
        public final int random(int n)
        +
      • +
      + + + +
        +
      • +

        setCuboidRegion

        +
        public void setCuboidRegion(int x1,
        +                   int x2,
        +                   int y1,
        +                   int y2,
        +                   int z1,
        +                   int z2,
        +                   PlotBlock block)
        +
        Cuboid based plot generation is quick, as it requires no calculations + inside the loop - You don't have to use this this method, but you may + find it useful. +
        +
      • +
      + + + +
        +
      • +

        getDefaultPopulators

        +
        public java.util.List<org.bukkit.generator.BlockPopulator> getDefaultPopulators(org.bukkit.World world)
        +
        Return the block populator
        +
        +
        Overrides:
        +
        getDefaultPopulators in class org.bukkit.generator.ChunkGenerator +
        +
        +
      • +
      + + + +
        +
      • +

        getFixedSpawnLocation

        +
        public org.bukkit.Location getFixedSpawnLocation(org.bukkit.World world,
        +                                        java.util.Random random)
        +
        Return the default spawn location for this world
        +
        +
        Overrides:
        +
        getFixedSpawnLocation in class org.bukkit.generator.ChunkGenerator +
        +
        +
      • +
      + + + +
        +
      • +

        generateExtBlockSections

        +
        public short[][] generateExtBlockSections(org.bukkit.World world,
        +                                 java.util.Random random,
        +                                 int cx,
        +                                 int cz,
        +                                 org.bukkit.generator.ChunkGenerator.BiomeGrid biomes)
        +
        This part is a fucking mess. - Refer to a proper tutorial if you would + like to learn how to make a world generator +
        +
        +
        Overrides:
        +
        generateExtBlockSections in class org.bukkit.generator.ChunkGenerator +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html new file mode 100644 index 000000000..9d7bb3c4d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html @@ -0,0 +1,381 @@ + + + + + + XPopulator + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.generator
+

Class XPopulator

+
+
+ +
+
    +
  • +
    +
    +
    public class XPopulator
    +extends org.bukkit.generator.BlockPopulator
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      XPopulator(PlotWorld pw)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      short[]getBlock(java.lang.String block)  +
      longnextLong()  +
      voidpopulate(org.bukkit.World w, + java.util.Random r, + org.bukkit.Chunk c) 
      intrandom(int n)  +
      voidsetCuboidRegion(int x1, + int x2, + int y1, + int y2, + int z1, + int z2, + PlotBlock block, + org.bukkit.World w) 
      longxorShift64(long a)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        XPopulator

        +
        public XPopulator(PlotWorld pw)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        nextLong

        +
        public final long nextLong()
        +
      • +
      + + + +
        +
      • +

        xorShift64

        +
        public final long xorShift64(long a)
        +
      • +
      + + + +
        +
      • +

        random

        +
        public final int random(int n)
        +
      • +
      + + + +
        +
      • +

        setCuboidRegion

        +
        public void setCuboidRegion(int x1,
        +                   int x2,
        +                   int y1,
        +                   int y2,
        +                   int z1,
        +                   int z2,
        +                   PlotBlock block,
        +                   org.bukkit.World w)
        +
      • +
      + + + +
        +
      • +

        getBlock

        +
        public short[] getBlock(java.lang.String block)
        +
      • +
      + + + +
        +
      • +

        populate

        +
        public void populate(org.bukkit.World w,
        +            java.util.Random r,
        +            org.bukkit.Chunk c)
        +
        +
        Specified by:
        +
        populate in + class org.bukkit.generator.BlockPopulator
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html new file mode 100644 index 000000000..ffd4f463f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html @@ -0,0 +1,28 @@ + + + + + + com.intellectualcrafters.plot.generator + + + + +

com.intellectualcrafters.plot.generator +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html new file mode 100644 index 000000000..7beb74937 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html @@ -0,0 +1,153 @@ + + + + + + com.intellectualcrafters.plot.generator + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.generator

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html new file mode 100644 index 000000000..c5d073986 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html @@ -0,0 +1,171 @@ + + + + + + com.intellectualcrafters.plot.generator Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.generator

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html new file mode 100644 index 000000000..8908c3158 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html @@ -0,0 +1,404 @@ + + + + + + EntityListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class EntityListener

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class EntityListener
    +extends java.lang.Object
    +implements org.bukkit.event.Listener
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.util.HashMap<java.lang.String,java.util.HashMap<Plot,java.util.HashSet<java.lang.Integer>>> + entityMap  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      EntityListener()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidaddEntity(org.bukkit.entity.Entity entity, + Plot plot)  +
      static voidonChunkDespawn(org.bukkit.event.world.ChunkUnloadEvent e)  +
      static voidonChunkLoad(org.bukkit.event.world.ChunkLoadEvent e)  +
      static voidonCreatureSpawn(org.bukkit.event.entity.CreatureSpawnEvent e)  +
      static voidonEntityDeath(org.bukkit.event.entity.EntityDeathEvent e)  +
      static voidonPlayerInteract(org.bukkit.event.player.PlayerInteractEvent e)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        entityMap

        +
        public static java.util.HashMap<java.lang.String,java.util.HashMap<Plot,java.util.HashSet<java.lang.Integer>>> entityMap
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        EntityListener

        +
        public EntityListener()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        onPlayerInteract

        +
        public static void onPlayerInteract(org.bukkit.event.player.PlayerInteractEvent e)
        +
      • +
      + + + +
        +
      • +

        onCreatureSpawn

        +
        public static void onCreatureSpawn(org.bukkit.event.entity.CreatureSpawnEvent e)
        +
      • +
      + + + +
        +
      • +

        onChunkLoad

        +
        public static void onChunkLoad(org.bukkit.event.world.ChunkLoadEvent e)
        +
      • +
      + + + +
        +
      • +

        addEntity

        +
        public static void addEntity(org.bukkit.entity.Entity entity,
        +             Plot plot)
        +
      • +
      + + + +
        +
      • +

        onEntityDeath

        +
        public static void onEntityDeath(org.bukkit.event.entity.EntityDeathEvent e)
        +
      • +
      + + + +
        +
      • +

        onChunkDespawn

        +
        public static void onChunkDespawn(org.bukkit.event.world.ChunkUnloadEvent e)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html new file mode 100644 index 000000000..f2072421b --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html @@ -0,0 +1,297 @@ + + + + + + ForceFieldListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class ForceFieldListener

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class ForceFieldListener
    +extends java.lang.Object
    +implements org.bukkit.event.Listener
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ForceFieldListener(org.bukkit.plugin.java.JavaPlugin plugin)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.util.VectorcalculateVelocity(org.bukkit.entity.Player p, + org.bukkit.entity.Player e) 
      voidonPlotEntry(org.bukkit.event.player.PlayerMoveEvent event)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ForceFieldListener

        +
        public ForceFieldListener(org.bukkit.plugin.java.JavaPlugin plugin)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        calculateVelocity

        +
        public org.bukkit.util.Vector calculateVelocity(org.bukkit.entity.Player p,
        +                                       org.bukkit.entity.Player e)
        +
      • +
      + + + +
        +
      • +

        onPlotEntry

        +
        public void onPlotEntry(org.bukkit.event.player.PlayerMoveEvent event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html new file mode 100644 index 000000000..403b175ef --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html @@ -0,0 +1,297 @@ + + + + + + InventoryListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class InventoryListener

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class InventoryListener
    +extends java.lang.Object
    +implements org.bukkit.event.Listener
    +
    Created 2014-11-18 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      InventoryListener()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidonInventoryAction(org.bukkit.event.inventory.InventoryInteractEvent event)  +
      voidonInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        InventoryListener

        +
        public InventoryListener()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        onInventoryAction

        +
        public void onInventoryAction(org.bukkit.event.inventory.InventoryInteractEvent event)
        +
      • +
      + + + +
        +
      • +

        onInventoryClick

        +
        public void onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html new file mode 100644 index 000000000..cd8331bd6 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html @@ -0,0 +1,784 @@ + + + + + + PlayerEvents + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class PlayerEvents

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class PlayerEvents
    +extends PlotListener
    +implements org.bukkit.event.Listener
    +
    Player Events involving plots
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerEvents()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidBlockCreate(org.bukkit.event.block.BlockPlaceEvent event)  +
      static voidBlockDestroy(org.bukkit.event.block.BlockBreakEvent event)  +
      static voidMobSpawn(org.bukkit.event.entity.CreatureSpawnEvent event)  +
      static voidonBD(org.bukkit.event.block.BlockDamageEvent e)  +
      static voidonBF(org.bukkit.event.block.BlockFormEvent e)  +
      static voidonBigBoom(org.bukkit.event.entity.EntityExplodeEvent event)  +
      static voidonBlockIgnite(org.bukkit.event.block.BlockIgniteEvent e)  +
      static voidonBlockPistonExtend(org.bukkit.event.block.BlockPistonExtendEvent e)  +
      static voidonBlockPistonRetract(org.bukkit.event.block.BlockPistonRetractEvent e)  +
      static voidonBS(org.bukkit.event.block.BlockSpreadEvent e)  +
      static voidonBucketEmpty(org.bukkit.event.player.PlayerBucketEmptyEvent e)  +
      static voidonBucketFill(org.bukkit.event.player.PlayerBucketFillEvent e)  +
      static voidonChange(org.bukkit.event.block.BlockFromToEvent e)  +
      voidonChangeWorld(org.bukkit.event.player.PlayerChangedWorldEvent event)  +
      static voidonChat(org.bukkit.event.player.AsyncPlayerChatEvent event)  +
      static voidonEntityBlockForm(org.bukkit.event.block.EntityBlockFormEvent event)  +
      static voidonEntityDamageByEntityEvent(org.bukkit.event.entity.EntityDamageByEntityEvent e)  +
      static voidonFade(org.bukkit.event.block.BlockFadeEvent e)  +
      static voidonGrow(org.bukkit.event.block.BlockGrowEvent e)  +
      static voidonHangingBreakByEntity(org.bukkit.event.hanging.HangingBreakByEntityEvent e)  +
      static voidonHangingPlace(org.bukkit.event.hanging.HangingPlaceEvent e)  +
      static voidonInteract(org.bukkit.event.player.PlayerInteractEvent event)  +
      static voidonInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)  +
      static voidonJoin(org.bukkit.event.player.PlayerJoinEvent event)  +
      static voidonLeave(org.bukkit.event.player.PlayerQuitEvent event)  +
      static voidonPeskyMobsChangeTheWorldLikeWTFEvent(org.bukkit.event.entity.EntityChangeBlockEvent event)  +
      static voidonPlayerEggThrow(org.bukkit.event.player.PlayerEggThrowEvent e)  +
      static voidonPlayerInteractEntity(org.bukkit.event.player.PlayerInteractEntityEvent e)  +
      static voidonStructureGrow(org.bukkit.event.world.StructureGrowEvent e)  +
      static voidonTeleport(org.bukkit.event.player.PlayerTeleportEvent event)  +
      static voidonWorldLoad(org.bukkit.event.world.WorldLoadEvent event)  +
      static voidPlayerMove(org.bukkit.event.player.PlayerMoveEvent event)  +
      + +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerEvents

        +
        public PlayerEvents()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        onWorldLoad

        +
        public static void onWorldLoad(org.bukkit.event.world.WorldLoadEvent event)
        +
      • +
      + + + +
        +
      • +

        onJoin

        +
        public static void onJoin(org.bukkit.event.player.PlayerJoinEvent event)
        +
      • +
      + + + +
        +
      • +

        PlayerMove

        +
        public static void PlayerMove(org.bukkit.event.player.PlayerMoveEvent event)
        +
      • +
      + + + +
        +
      • +

        onChat

        +
        public static void onChat(org.bukkit.event.player.AsyncPlayerChatEvent event)
        +
      • +
      + + + +
        +
      • +

        BlockDestroy

        +
        public static void BlockDestroy(org.bukkit.event.block.BlockBreakEvent event)
        +
      • +
      + + + +
        +
      • +

        onBigBoom

        +
        public static void onBigBoom(org.bukkit.event.entity.EntityExplodeEvent event)
        +
      • +
      + + + +
        +
      • +

        onPeskyMobsChangeTheWorldLikeWTFEvent

        +
        public static void onPeskyMobsChangeTheWorldLikeWTFEvent(org.bukkit.event.entity.EntityChangeBlockEvent event)
        +
      • +
      + + + +
        +
      • +

        onEntityBlockForm

        +
        public static void onEntityBlockForm(org.bukkit.event.block.EntityBlockFormEvent event)
        +
      • +
      + + + +
        +
      • +

        onBS

        +
        public static void onBS(org.bukkit.event.block.BlockSpreadEvent e)
        +
      • +
      + + + +
        +
      • +

        onBF

        +
        public static void onBF(org.bukkit.event.block.BlockFormEvent e)
        +
      • +
      + + + +
        +
      • +

        onBD

        +
        public static void onBD(org.bukkit.event.block.BlockDamageEvent e)
        +
      • +
      + + + +
        +
      • +

        onFade

        +
        public static void onFade(org.bukkit.event.block.BlockFadeEvent e)
        +
      • +
      + + + +
        +
      • +

        onChange

        +
        public static void onChange(org.bukkit.event.block.BlockFromToEvent e)
        +
      • +
      + + + +
        +
      • +

        onGrow

        +
        public static void onGrow(org.bukkit.event.block.BlockGrowEvent e)
        +
      • +
      + + + +
        +
      • +

        onBlockPistonExtend

        +
        public static void onBlockPistonExtend(org.bukkit.event.block.BlockPistonExtendEvent e)
        +
      • +
      + + + +
        +
      • +

        onBlockPistonRetract

        +
        public static void onBlockPistonRetract(org.bukkit.event.block.BlockPistonRetractEvent e)
        +
      • +
      + + + +
        +
      • +

        onStructureGrow

        +
        public static void onStructureGrow(org.bukkit.event.world.StructureGrowEvent e)
        +
      • +
      + + + +
        +
      • +

        onInteract

        +
        public static void onInteract(org.bukkit.event.player.PlayerInteractEvent event)
        +
      • +
      + + + +
        +
      • +

        MobSpawn

        +
        public static void MobSpawn(org.bukkit.event.entity.CreatureSpawnEvent event)
        +
      • +
      + + + +
        +
      • +

        onBlockIgnite

        +
        public static void onBlockIgnite(org.bukkit.event.block.BlockIgniteEvent e)
        +
      • +
      + + + +
        +
      • +

        onTeleport

        +
        public static void onTeleport(org.bukkit.event.player.PlayerTeleportEvent event)
        +
      • +
      + + + +
        +
      • +

        onBucketEmpty

        +
        public static void onBucketEmpty(org.bukkit.event.player.PlayerBucketEmptyEvent e)
        +
      • +
      + + + +
        +
      • +

        onInventoryClick

        +
        public static void onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)
        +
      • +
      + + + +
        +
      • +

        onLeave

        +
        public static void onLeave(org.bukkit.event.player.PlayerQuitEvent event)
        +
      • +
      + + + +
        +
      • +

        onBucketFill

        +
        public static void onBucketFill(org.bukkit.event.player.PlayerBucketFillEvent e)
        +
      • +
      + + + +
        +
      • +

        onHangingPlace

        +
        public static void onHangingPlace(org.bukkit.event.hanging.HangingPlaceEvent e)
        +
      • +
      + + + +
        +
      • +

        onHangingBreakByEntity

        +
        public static void onHangingBreakByEntity(org.bukkit.event.hanging.HangingBreakByEntityEvent e)
        +
      • +
      + + + +
        +
      • +

        onPlayerInteractEntity

        +
        public static void onPlayerInteractEntity(org.bukkit.event.player.PlayerInteractEntityEvent e)
        +
      • +
      + + + +
        +
      • +

        onEntityDamageByEntityEvent

        +
        public static void onEntityDamageByEntityEvent(org.bukkit.event.entity.EntityDamageByEntityEvent e)
        +
      • +
      + + + +
        +
      • +

        onPlayerEggThrow

        +
        public static void onPlayerEggThrow(org.bukkit.event.player.PlayerEggThrowEvent e)
        +
      • +
      + + + +
        +
      • +

        onChangeWorld

        +
        public void onChangeWorld(org.bukkit.event.player.PlayerChangedWorldEvent event)
        +
      • +
      + + + +
        +
      • +

        BlockCreate

        +
        public void BlockCreate(org.bukkit.event.block.BlockPlaceEvent event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html new file mode 100644 index 000000000..571f315a0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html @@ -0,0 +1,548 @@ + + + + + + PlotListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class PlotListener

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    PlayerEvents, PlotPlusListener
    +
    +
    +
    +
    public class PlotListener
    +extends java.lang.Object
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotListener()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidblockChange(org.bukkit.block.Block block, + org.bukkit.event.Cancellable event) 
      static booleanbooleanFlag(Plot plot, + java.lang.String flag) 
      static booleanenteredPlot(org.bukkit.Location l1, + org.bukkit.Location l2) 
      static PlotgetCurrentPlot(org.bukkit.Location loc)  +
      static booleangetFlagValue(java.lang.String value)  +
      static java.lang.StringgetName(java.util.UUID uuid)  +
      static PlotgetPlot(org.bukkit.entity.Player player)  +
      static PlotWorldgetPlotWorld(org.bukkit.World world)  +
      static java.util.UUIDgetUUID(java.lang.String name)  +
      static booleanisInPlot(org.bukkit.Location loc)  +
      static booleanisInPlot(org.bukkit.entity.Player player)  +
      static booleanisPlotWorld(org.bukkit.Location l)  +
      static booleanisPlotWorld(org.bukkit.World world)  +
      static booleanleftPlot(org.bukkit.Location l1, + org.bukkit.Location l2) 
      static voidplotEntry(org.bukkit.entity.Player player, + Plot plot)  +
      static voidplotExit(org.bukkit.entity.Player player, + Plot plot)  +
      static voidtextures(org.bukkit.entity.Player p)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotListener

        +
        public PlotListener()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        textures

        +
        public static void textures(org.bukkit.entity.Player p)
        +
      • +
      + + + +
        +
      • +

        isInPlot

        +
        public static boolean isInPlot(org.bukkit.entity.Player player)
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public static Plot getPlot(org.bukkit.entity.Player player)
        +
      • +
      + + + +
        +
      • +

        isPlotWorld

        +
        public static boolean isPlotWorld(org.bukkit.World world)
        +
      • +
      + + + +
        +
      • +

        getPlotWorld

        +
        public static PlotWorld getPlotWorld(org.bukkit.World world)
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public static java.lang.String getName(java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        getUUID

        +
        public static java.util.UUID getUUID(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        blockChange

        +
        public static void blockChange(org.bukkit.block.Block block,
        +               org.bukkit.event.Cancellable event)
        +
      • +
      + + + +
        +
      • +

        enteredPlot

        +
        public static boolean enteredPlot(org.bukkit.Location l1,
        +                  org.bukkit.Location l2)
        +
      • +
      + + + +
        +
      • +

        leftPlot

        +
        public static boolean leftPlot(org.bukkit.Location l1,
        +               org.bukkit.Location l2)
        +
      • +
      + + + +
        +
      • +

        isPlotWorld

        +
        public static boolean isPlotWorld(org.bukkit.Location l)
        +
      • +
      + + + +
        +
      • +

        isInPlot

        +
        public static boolean isInPlot(org.bukkit.Location loc)
        +
      • +
      + + + +
        +
      • +

        getCurrentPlot

        +
        public static Plot getCurrentPlot(org.bukkit.Location loc)
        +
      • +
      + + + +
        +
      • +

        booleanFlag

        +
        public static boolean booleanFlag(Plot plot,
        +                  java.lang.String flag)
        +
      • +
      + + + +
        +
      • +

        plotEntry

        +
        public static void plotEntry(org.bukkit.entity.Player player,
        +             Plot plot)
        +
      • +
      + + + +
        +
      • +

        plotExit

        +
        public static void plotExit(org.bukkit.entity.Player player,
        +            Plot plot)
        +
      • +
      + + + +
        +
      • +

        getFlagValue

        +
        public static boolean getFlagValue(java.lang.String value)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html new file mode 100644 index 000000000..ce7639d92 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html @@ -0,0 +1,334 @@ + + + + + + PlotPlusListener.Interval + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class PlotPlusListener.Interval

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    PlotPlusListener
    +
    +
    +
    +
    public static class PlotPlusListener.Interval
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      intamount  +
      intcount  +
      intinterval  +
      intmax  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotPlusListener.Interval(int interval, + int amount, + int max) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        interval

        +
        public int interval
        +
      • +
      + + + +
        +
      • +

        amount

        +
        public int amount
        +
      • +
      + + + +
        +
      • +

        count

        +
        public int count
        +
      • +
      + + + +
        +
      • +

        max

        +
        public int max
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotPlusListener.Interval

        +
        public PlotPlusListener.Interval(int interval,
        +                         int amount,
        +                         int max)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html new file mode 100644 index 000000000..e9c461073 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html @@ -0,0 +1,366 @@ + + + + + + PlotPlusListener.RecordMeta + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class PlotPlusListener.RecordMeta

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    PlotPlusListener
    +
    +
    +
    +
    public static class PlotPlusListener.RecordMeta
    +extends java.lang.Object
    +
    Record Meta Class
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotPlusListener.RecordMeta(java.lang.String name, + org.bukkit.Material material) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.MaterialgetMaterial()  +
      inthashCode()  +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotPlusListener.RecordMeta

        +
        public PlotPlusListener.RecordMeta(java.lang.String name,
        +                           org.bukkit.Material material)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        getMaterial

        +
        public org.bukkit.Material getMaterial()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html new file mode 100644 index 000000000..276ffba08 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html @@ -0,0 +1,480 @@ + + + + + + PlotPlusListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class PlotPlusListener

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class PlotPlusListener
    +extends PlotListener
    +implements org.bukkit.event.Listener
    +
    Created 2014-10-30 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotPlusListener

        +
        public PlotPlusListener()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        startRunnable

        +
        public static void startRunnable(org.bukkit.plugin.java.JavaPlugin plugin)
        +
      • +
      + + + +
        +
      • +

        onInventoryClick

        +
        public void onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)
        +
      • +
      + + + +
        +
      • +

        onInteract

        +
        public void onInteract(org.bukkit.event.block.BlockDamageEvent event)
        +
      • +
      + + + +
        +
      • +

        onDamage

        +
        public void onDamage(org.bukkit.event.entity.EntityDamageEvent event)
        +
      • +
      + + + +
        +
      • +

        onItemPickup

        +
        public void onItemPickup(org.bukkit.event.player.PlayerPickupItemEvent event)
        +
      • +
      + + + +
        +
      • +

        onItemDrop

        +
        public void onItemDrop(org.bukkit.event.player.PlayerDropItemEvent event)
        +
      • +
      + + + + + + + +
        +
      • +

        onPlayerQuit

        +
        public void onPlayerQuit(org.bukkit.event.player.PlayerQuitEvent event)
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html new file mode 100644 index 000000000..5b4026b1c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html @@ -0,0 +1,431 @@ + + + + + + WorldEditListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class WorldEditListener

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class WorldEditListener
    +extends java.lang.Object
    +implements org.bukkit.event.Listener
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.util.Set<java.lang.String>blockedcmds  +
      java.util.Set<java.lang.String>restrictedcmds  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      WorldEditListener()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidonDelete(PlotDeleteEvent e)  +
      voidonInteract(org.bukkit.event.player.PlayerInteractEvent e)  +
      voidonPlayerCommand(org.bukkit.event.player.PlayerCommandPreprocessEvent e)  +
      voidonPlayerJoin(org.bukkit.event.player.PlayerJoinEvent e)  +
      voidonPlayerMove(org.bukkit.event.player.PlayerMoveEvent e)  +
      voidonPortal(org.bukkit.event.player.PlayerPortalEvent e)  +
      voidonTeleport(org.bukkit.event.player.PlayerTeleportEvent e)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        blockedcmds

        +
        public final java.util.Set<java.lang.String> blockedcmds
        +
      • +
      + + + +
        +
      • +

        restrictedcmds

        +
        public final java.util.Set<java.lang.String> restrictedcmds
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        WorldEditListener

        +
        public WorldEditListener()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + + + + + +
        +
      • +

        onInteract

        +
        public void onInteract(org.bukkit.event.player.PlayerInteractEvent e)
        +
      • +
      + + + +
        +
      • +

        onPlayerCommand

        +
        public void onPlayerCommand(org.bukkit.event.player.PlayerCommandPreprocessEvent e)
        +
      • +
      + + + +
        +
      • +

        onPlayerJoin

        +
        public void onPlayerJoin(org.bukkit.event.player.PlayerJoinEvent e)
        +
      • +
      + + + +
        +
      • +

        onPlayerMove

        +
        public void onPlayerMove(org.bukkit.event.player.PlayerMoveEvent e)
        +
      • +
      + + + +
        +
      • +

        onPortal

        +
        public void onPortal(org.bukkit.event.player.PlayerPortalEvent e)
        +
      • +
      + + + +
        +
      • +

        onTeleport

        +
        public void onTeleport(org.bukkit.event.player.PlayerTeleportEvent e)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html new file mode 100644 index 000000000..9633d84f5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html @@ -0,0 +1,471 @@ + + + + + + WorldGuardListener + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.listeners
+

Class WorldGuardListener

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.event.Listener
    +
    +
    +
    +
    public class WorldGuardListener
    +extends java.lang.Object
    +implements org.bukkit.event.Listener
    +
    Created 2014-09-24 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.util.ArrayList<com.sk89q.worldguard.protection.flags.Flag<?>> + flags  +
      java.util.ArrayList<java.lang.String>str_flags  +
      +
    • +
    + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidaddFlag(org.bukkit.entity.Player requester, + org.bukkit.World world, + Plot plot, + java.lang.String key, + java.lang.String value) 
      voidchangeOwner(org.bukkit.entity.Player requester, + java.util.UUID owner, + org.bukkit.World world, + Plot plot)  +
      voidonMerge(PlotMergeEvent event)  +
      voidonPlotClaim(PlayerClaimPlotEvent event)  +
      voidonPlotDelete(PlotDeleteEvent event)  +
      voidonUnlink(PlotUnlinkEvent event)  +
      voidremoveFlag(org.bukkit.entity.Player requester, + org.bukkit.World world, + Plot plot, + java.lang.String key) 
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        str_flags

        +
        public final java.util.ArrayList<java.lang.String> str_flags
        +
      • +
      + + + +
        +
      • +

        flags

        +
        public final java.util.ArrayList<com.sk89q.worldguard.protection.flags.Flag<?>> flags
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        WorldGuardListener

        +
        public WorldGuardListener(PlotMain plugin)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        changeOwner

        +
        public void changeOwner(org.bukkit.entity.Player requester,
        +               java.util.UUID owner,
        +               org.bukkit.World world,
        +               Plot plot)
        +
      • +
      + + + +
        +
      • +

        removeFlag

        +
        public void removeFlag(org.bukkit.entity.Player requester,
        +              org.bukkit.World world,
        +              Plot plot,
        +              java.lang.String key)
        +
      • +
      + + + +
        +
      • +

        addFlag

        +
        public void addFlag(org.bukkit.entity.Player requester,
        +           org.bukkit.World world,
        +           Plot plot,
        +           java.lang.String key,
        +           java.lang.String value)
        +
      • +
      + + + + + + + + + + + + + + + +
        +
      • +

        onPlotDelete

        +
        public void onPlotDelete(PlotDeleteEvent event)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html new file mode 100644 index 000000000..63b7dc5f3 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html @@ -0,0 +1,40 @@ + + + + + + com.intellectualcrafters.plot.listeners + + + + +

com.intellectualcrafters.plot.listeners +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html new file mode 100644 index 000000000..b2d80bcde --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html @@ -0,0 +1,201 @@ + + + + + + com.intellectualcrafters.plot.listeners + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.listeners

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html new file mode 100644 index 000000000..4de59b85d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html @@ -0,0 +1,177 @@ + + + + + + com.intellectualcrafters.plot.listeners Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.listeners

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html new file mode 100644 index 000000000..ca8a8df65 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html @@ -0,0 +1,448 @@ + + + + + + BlockWrapper + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class BlockWrapper

+
+
+ +
+
    +
  • +
    +
    +
    public class BlockWrapper
    +extends java.lang.Object
    +
    Wrapper class for blocks, using + pure data rather than the object. +

    + Useful for NMS +

    +
    +
    Author:
    +
    Empire92, Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      bytedata + +
      Block Data Value
      +
      intid + +
      Block ID
      +
      intx + +
      X Coordinate
      +
      inty + +
      Y Coordinate
      +
      intz + +
      Z Coordinate
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      BlockWrapper(org.bukkit.block.Block block) + +
      Alternative Constructor + Uses block data, rather than typed data +
      +
      BlockWrapper(int x, + int y, + int z, + short id, + byte data) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.block.BlocktoBlock(org.bukkit.World world) + +
      Get a block based on the block wrapper
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        x

        +
        public final int x
        +
        X Coordinate
        +
      • +
      + + + +
        +
      • +

        y

        +
        public final int y
        +
        Y Coordinate
        +
      • +
      + + + +
        +
      • +

        z

        +
        public final int z
        +
        Z Coordinate
        +
      • +
      + + + +
        +
      • +

        id

        +
        public final int id
        +
        Block ID
        +
      • +
      + + + +
        +
      • +

        data

        +
        public final byte data
        +
        Block Data Value
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        BlockWrapper

        +
        public BlockWrapper(int x,
        +            int y,
        +            int z,
        +            short id,
        +            byte data)
        +
        Constructor
        +
        +
        Parameters:
        +
        x - X Loc Value
        +
        y - Y Loc Value
        +
        z - Z Loc Value
        +
        id - Material ID
        +
        data - Data Value
        +
        +
      • +
      + + + +
        +
      • +

        BlockWrapper

        +
        public BlockWrapper(org.bukkit.block.Block block)
        +
        Alternative Constructor + Uses block data, rather than typed data +
        +
        +
        Parameters:
        +
        block - Block from which we get the data
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toBlock

        +
        public org.bukkit.block.Block toBlock(org.bukkit.World world)
        +
        Get a block based on the block wrapper
        +
        +
        Parameters:
        +
        world - World in which the block is/will be, located
        +
        Returns:
        +
        block created/fetched from settings
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html new file mode 100644 index 000000000..fd97289fb --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html @@ -0,0 +1,339 @@ + + + + + + InfoInventory + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class InfoInventory

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.inventory.InventoryHolder
    +
    +
    +
    +
    public class InfoInventory
    +extends java.lang.Object
    +implements org.bukkit.inventory.InventoryHolder
    +
    Created 2014-11-18 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      InfoInventory(Plot plot, + org.bukkit.entity.Player player) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      InfoInventory + build()  +
      InfoInventory + display()  +
      org.bukkit.inventory.InventorygetInventory()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        InfoInventory

        +
        public InfoInventory(Plot plot,
        +             org.bukkit.entity.Player player)
        +
        Constructor
        +
        +
        Parameters:
        +
        plot - from which we take information
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getInventory

        +
        public org.bukkit.inventory.Inventory getInventory()
        +
        +
        Specified by:
        +
        getInventory in interface org.bukkit.inventory.InventoryHolder +
        +
        +
      • +
      + + + + + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html new file mode 100644 index 000000000..b4857ea24 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html @@ -0,0 +1,1059 @@ + + + + + + Plot + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class Plot

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Cloneable
    +
    +
    +
    +
    public class Plot
    +extends java.lang.Object
    +implements java.lang.Cloneable
    +
    The plot class
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      booleancountsTowardsMax  +
      booleandelete + +
      Delete on next save cycle?
      +
      java.util.ArrayList<java.util.UUID>denied + +
      List of denied players
      +
      booleandeny_entry + +
      Deny Entry
      +
      booleanhasChanged + +
      Has the plot changed since the last save cycle?
      +
      java.util.ArrayList<java.util.UUID>helpers + +
      List of helpers (with plot permissions)
      +
      PlotId + id + +
      plot ID
      +
      java.util.UUIDowner + +
      plot owner
      +
      PlotSettings + settings + +
      External settings class
      +
      java.util.ArrayList<java.util.UUID>trusted + +
      List of trusted users (with plot permissions)
      +
      java.lang.Stringworld + +
      plot world
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      Plot(PlotId id, + java.util.UUID owner, + java.util.ArrayList<java.util.UUID> helpers, + java.util.ArrayList<java.util.UUID> trusted, + java.util.ArrayList<java.util.UUID> denied, + java.lang.String alias, + PlotHomePosition position, + Flag[] flags, + java.lang.String world, + boolean[] merged) + +
      Constructor for saved plots
      +
      Plot(PlotId id, + java.util.UUID owner, + java.util.ArrayList<java.util.UUID> helpers, + java.util.ArrayList<java.util.UUID> denied, + java.lang.String world) + +
      Primary constructor
      +
      Plot(PlotId id, + java.util.UUID owner, + org.bukkit.block.Biome plotBiome, + java.util.ArrayList<java.util.UUID> helpers, + java.util.ArrayList<java.util.UUID> trusted, + java.util.ArrayList<java.util.UUID> denied, + java.lang.String alias, + PlotHomePosition position, + Flag[] flags, + java.lang.String world, + boolean[] merged) + +
      Deprecated.  
      +
      Plot(PlotId id, + java.util.UUID owner, + org.bukkit.block.Biome plotBiome, + java.util.ArrayList<java.util.UUID> helpers, + java.util.ArrayList<java.util.UUID> denied, + java.lang.String world) + +
      Deprecated.  
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidaddDenied(java.util.UUID uuid) + +
      Deny someone (use DBFunc.addDenied() as well)
      +
      voidaddHelper(java.util.UUID uuid) + +
      Add someone as a helper (use DBFunc as well)
      +
      voidaddTrusted(java.util.UUID uuid) + +
      Add someone as a trusted user (use DBFunc as well)
      +
      voidclear(org.bukkit.entity.Player plr) + +
      Clear a plot
      +
      java.lang.Objectclone() + +
      Get a clone of the plot
      +
      booleandeny_entry(org.bukkit.entity.Player player) + +
      Should the player be allowed to enter?
      +
      booleanequals(java.lang.Object obj)  +
      java.lang.StringgetDisplayName() + +
      Get plot display name
      +
      PlotId + getId() + +
      Get the plot ID
      +
      java.util.UUIDgetOwner() + +
      Get the UUID of the owner
      +
      org.bukkit.WorldgetWorld() + +
      Get the plot World
      +
      inthashCode() + +
      Get the plot hashcode
      +
      booleanhasOwner() + +
      Check if the plot has a set owner
      +
      booleanhasRights(org.bukkit.entity.Player player) + +
      Check if the player is either the owner or on the helpers list
      +
      voidremoveDenied(java.util.UUID uuid) + +
      Remove a denied player (use DBFunc as well)
      +
      voidremoveHelper(java.util.UUID uuid) + +
      Remove a helper (use DBFunc as well)
      +
      voidremoveTrusted(java.util.UUID uuid) + +
      Remove a trusted user (use DBFunc as well)
      +
      voidsetOwner(org.bukkit.entity.Player player) + +
      Set the owner
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        id

        +
        public PlotId id
        +
        plot ID
        +
      • +
      + + + +
        +
      • +

        world

        +
        public java.lang.String world
        +
        plot world
        +
      • +
      + + + +
        +
      • +

        owner

        +
        public java.util.UUID owner
        +
        plot owner
        +
      • +
      + + + +
        +
      • +

        deny_entry

        +
        public boolean deny_entry
        +
        Deny Entry
        +
      • +
      + + + +
        +
      • +

        helpers

        +
        public java.util.ArrayList<java.util.UUID> helpers
        +
        List of helpers (with plot permissions)
        +
      • +
      + + + +
        +
      • +

        trusted

        +
        public java.util.ArrayList<java.util.UUID> trusted
        +
        List of trusted users (with plot permissions)
        +
      • +
      + + + +
        +
      • +

        denied

        +
        public java.util.ArrayList<java.util.UUID> denied
        +
        List of denied players
        +
      • +
      + + + +
        +
      • +

        settings

        +
        public PlotSettings settings
        +
        External settings class
        +
      • +
      + + + +
        +
      • +

        delete

        +
        public boolean delete
        +
        Delete on next save cycle?
        +
      • +
      + + + +
        +
      • +

        hasChanged

        +
        public boolean hasChanged
        +
        Has the plot changed since the last save cycle?
        +
      • +
      + + + +
        +
      • +

        countsTowardsMax

        +
        public boolean countsTowardsMax
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Plot

        +
        @Deprecated
        +public Plot(PlotId id,
        +               java.util.UUID owner,
        +               org.bukkit.block.Biome plotBiome,
        +               java.util.ArrayList<java.util.UUID> helpers,
        +               java.util.ArrayList<java.util.UUID> denied,
        +               java.lang.String world)
        +
        Deprecated. 
        +
        Primary constructor
        +
        +
        Parameters:
        +
        id -
        +
        owner -
        +
        plotBiome -
        +
        helpers -
        +
        denied -
        +
        +
      • +
      + + + +
        +
      • +

        Plot

        +
        public Plot(PlotId id,
        +    java.util.UUID owner,
        +    java.util.ArrayList<java.util.UUID> helpers,
        +    java.util.ArrayList<java.util.UUID> denied,
        +    java.lang.String world)
        +
        Primary constructor
        +
        +
        Parameters:
        +
        id -
        +
        owner -
        +
        helpers -
        +
        denied -
        +
        +
      • +
      + + + +
        +
      • +

        Plot

        +
        @Deprecated
        +public Plot(PlotId id,
        +               java.util.UUID owner,
        +               org.bukkit.block.Biome plotBiome,
        +               java.util.ArrayList<java.util.UUID> helpers,
        +               java.util.ArrayList<java.util.UUID> trusted,
        +               java.util.ArrayList<java.util.UUID> denied,
        +               java.lang.String alias,
        +               PlotHomePosition position,
        +               Flag[] flags,
        +               java.lang.String world,
        +               boolean[] merged)
        +
        Deprecated. 
        +
        Constructor for saved plots
        +
        +
        Parameters:
        +
        id -
        +
        owner -
        +
        plotBiome -
        +
        helpers -
        +
        denied -
        +
        merged -
        +
        +
      • +
      + + + +
        +
      • +

        Plot

        +
        public Plot(PlotId id,
        +    java.util.UUID owner,
        +    java.util.ArrayList<java.util.UUID> helpers,
        +    java.util.ArrayList<java.util.UUID> trusted,
        +    java.util.ArrayList<java.util.UUID> denied,
        +    java.lang.String alias,
        +    PlotHomePosition position,
        +    Flag[] flags,
        +    java.lang.String world,
        +    boolean[] merged)
        +
        Constructor for saved plots
        +
        +
        Parameters:
        +
        id -
        +
        owner -
        +
        helpers -
        +
        denied -
        +
        merged -
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        hasOwner

        +
        public boolean hasOwner()
        +
        Check if the plot has a set owner
        +
        +
        Returns:
        +
        false if there is no owner
        +
        +
      • +
      + + + +
        +
      • +

        hasRights

        +
        public boolean hasRights(org.bukkit.entity.Player player)
        +
        Check if the player is either the owner or on the helpers list
        +
        +
        Parameters:
        +
        player -
        +
        Returns:
        +
        true if the player is added as a helper or is the owner
        +
        +
      • +
      + + + +
        +
      • +

        deny_entry

        +
        public boolean deny_entry(org.bukkit.entity.Player player)
        +
        Should the player be allowed to enter?
        +
        +
        Parameters:
        +
        player -
        +
        Returns:
        +
        false if the player is allowed to enter
        +
        +
      • +
      + + + +
        +
      • +

        getOwner

        +
        public java.util.UUID getOwner()
        +
        Get the UUID of the owner
        +
      • +
      + + + +
        +
      • +

        setOwner

        +
        public void setOwner(org.bukkit.entity.Player player)
        +
        Set the owner
        +
        +
        Parameters:
        +
        player -
        +
        +
      • +
      + + + +
        +
      • +

        getId

        +
        public PlotId getId()
        +
        Get the plot ID
        +
      • +
      + + + +
        +
      • +

        getWorld

        +
        public org.bukkit.World getWorld()
        +
        Get the plot World
        +
      • +
      + + + +
        +
      • +

        clone

        +
        public java.lang.Object clone()
        +                       throws java.lang.CloneNotSupportedException
        +
        Get a clone of the plot
        +
        +
        Overrides:
        +
        clone in class java.lang.Object
        +
        Returns:
        +
        +
        Throws:
        +
        java.lang.CloneNotSupportedException
        +
        +
      • +
      + + + +
        +
      • +

        addDenied

        +
        public void addDenied(java.util.UUID uuid)
        +
        Deny someone (use DBFunc.addDenied() as well)
        +
        +
        Parameters:
        +
        uuid -
        +
        +
      • +
      + + + +
        +
      • +

        addHelper

        +
        public void addHelper(java.util.UUID uuid)
        +
        Add someone as a helper (use DBFunc as well)
        +
        +
        Parameters:
        +
        uuid -
        +
        +
      • +
      + + + +
        +
      • +

        addTrusted

        +
        public void addTrusted(java.util.UUID uuid)
        +
        Add someone as a trusted user (use DBFunc as well)
        +
        +
        Parameters:
        +
        uuid -
        +
        +
      • +
      + + + +
        +
      • +

        getDisplayName

        +
        public java.lang.String getDisplayName()
        +
        Get plot display name
        +
        +
        Returns:
        +
        alias if set, else id
        +
        +
      • +
      + + + +
        +
      • +

        removeDenied

        +
        public void removeDenied(java.util.UUID uuid)
        +
        Remove a denied player (use DBFunc as well)
        +
        +
        Parameters:
        +
        uuid -
        +
        +
      • +
      + + + +
        +
      • +

        removeHelper

        +
        public void removeHelper(java.util.UUID uuid)
        +
        Remove a helper (use DBFunc as well)
        +
        +
        Parameters:
        +
        uuid -
        +
        +
      • +
      + + + +
        +
      • +

        removeTrusted

        +
        public void removeTrusted(java.util.UUID uuid)
        +
        Remove a trusted user (use DBFunc as well)
        +
        +
        Parameters:
        +
        uuid -
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public void clear(org.bukkit.entity.Player plr)
        +
        Clear a plot
        +
        +
        Parameters:
        +
        plr - initiator
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        Get the plot hashcode
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        Returns:
        +
        integer. You can easily make this a character array
        + xI = c[0] + x = c[1 -> xI...] + yI = c[xI ... + 1] + y = c[xI ... + 2 -> yI ...] +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html new file mode 100644 index 000000000..d1d883aef --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html @@ -0,0 +1,301 @@ + + + + + + PlotBlock + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotBlock

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotBlock
    +extends java.lang.Object
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      bytedata  +
      shortid  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotBlock(short id, + byte data) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        id

        +
        public short id
        +
      • +
      + + + +
        +
      • +

        data

        +
        public byte data
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotBlock

        +
        public PlotBlock(short id,
        +         byte data)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html new file mode 100644 index 000000000..7295c4870 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html @@ -0,0 +1,318 @@ + + + + + + PlotComment + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotComment

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotComment
    +extends java.lang.Object
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.lang.Stringcomment  +
      java.lang.StringsenderName  +
      inttier  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotComment(java.lang.String comment, + java.lang.String senderName, + int tier) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        comment

        +
        public final java.lang.String comment
        +
      • +
      + + + +
        +
      • +

        tier

        +
        public final int tier
        +
      • +
      + + + +
        +
      • +

        senderName

        +
        public final java.lang.String senderName
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotComment

        +
        public PlotComment(java.lang.String comment,
        +           java.lang.String senderName,
        +           int tier)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html new file mode 100644 index 000000000..678ec0914 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html @@ -0,0 +1,336 @@ + + + + + + PlotGenerator + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotGenerator

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    WorldGenerator
    +
    +
    +
    +
    public abstract class PlotGenerator
    +extends org.bukkit.generator.ChunkGenerator
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      +
        +
      • + + + +

        Nested classes/interfaces inherited from class org.bukkit.generator.ChunkGenerator

        + org.bukkit.generator.ChunkGenerator.BiomeGrid
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotGenerator(java.lang.String world)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      abstract PlotWorldgetNewPlotWorld(java.lang.String world)  +
      abstract PlotManager + getPlotManager()  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.generator.ChunkGenerator

        + canSpawn, generate, generateBlockSections, generateExtBlockSections, + getDefaultPopulators, getFixedSpawnLocation
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotGenerator

        +
        public PlotGenerator(java.lang.String world)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getNewPlotWorld

        +
        public abstract PlotWorld getNewPlotWorld(java.lang.String world)
        +
      • +
      + + + +
        +
      • +

        getPlotManager

        +
        public abstract PlotManager getPlotManager()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html new file mode 100644 index 000000000..191167adc --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html @@ -0,0 +1,393 @@ + + + + + + PlotHomePosition + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Enum PlotHomePosition

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<PlotHomePosition>
    +
    +
    +
    +
    public enum PlotHomePosition
    +extends java.lang.Enum<PlotHomePosition>
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      CENTER  +
      DEFAULT  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanisMatching(java.lang.String string)  +
      static PlotHomePosition + valueOf(java.lang.String name) + +
      Returns the enum constant of this type with the specified name. +
      +
      static PlotHomePosition[] + values() + +
      Returns an array containing the constants of this enum type, in + the order they are declared. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Enum

        + clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, + toString, valueOf
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static PlotHomePosition[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (PlotHomePosition c : PlotHomePosition.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are + declared +
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static PlotHomePosition valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no + constant with the specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        isMatching

        +
        public boolean isMatching(java.lang.String string)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html new file mode 100644 index 000000000..0896a280a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html @@ -0,0 +1,416 @@ + + + + + + PlotId + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotId

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotId
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.lang.Integerx + +
      x value
      +
      java.lang.Integery + +
      y value
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotId(int x, + int y) + +
      PlotId class (PlotId x,y values do not correspond to Block + locations) +
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj)  +
      static PlotIdfromString(java.lang.String string) + +
      Get a Plot Id based on a string
      +
      inthashCode()  +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        x

        +
        public java.lang.Integer x
        +
        x value
        +
      • +
      + + + +
        +
      • +

        y

        +
        public java.lang.Integer y
        +
        y value
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotId

        +
        public PlotId(int x,
        +      int y)
        +
        PlotId class (PlotId x,y values do not correspond to Block locations) +
        +
        +
        Parameters:
        +
        x - The plot x coordinate
        +
        y - The plot y coordinate
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        fromString

        +
        public static PlotId fromString(java.lang.String string)
        +
        Get a Plot Id based on a string
        +
        +
        Parameters:
        +
        string - to create id from
        +
        Returns:
        +
        null if the string is invalid
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html new file mode 100644 index 000000000..e61a4fd45 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html @@ -0,0 +1,756 @@ + + + + + + PlotManager + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotManager

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    DefaultPlotManager
    +
    +
    +
    +
    public abstract class PlotManager
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotManager

        +
        public PlotManager()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getPlotIdAbs

        +
        public abstract PlotId getPlotIdAbs(PlotWorld plotworld,
        +                  org.bukkit.Location loc)
        +
      • +
      + + + +
        +
      • +

        getPlotId

        +
        public abstract PlotId getPlotId(PlotWorld plotworld,
        +               org.bukkit.Location loc)
        +
      • +
      + + + +
        +
      • +

        isInPlotAbs

        +
        public abstract boolean isInPlotAbs(PlotWorld plotworld,
        +                  org.bukkit.Location loc,
        +                  PlotId plotid)
        +
      • +
      + + + +
        +
      • +

        getPlotBottomLocAbs

        +
        public abstract org.bukkit.Location getPlotBottomLocAbs(PlotWorld plotworld,
        +                                      PlotId plotid)
        +
      • +
      + + + +
        +
      • +

        getPlotTopLocAbs

        +
        public abstract org.bukkit.Location getPlotTopLocAbs(PlotWorld plotworld,
        +                                   PlotId plotid)
        +
      • +
      + + + +
        +
      • +

        clearPlot

        +
        public abstract boolean clearPlot(org.bukkit.World world,
        +                Plot plot)
        +
      • +
      + + + +
        +
      • +

        getSignLoc

        +
        public abstract org.bukkit.Location getSignLoc(org.bukkit.World world,
        +                             PlotWorld plotworld,
        +                             Plot plot)
        +
      • +
      + + + +
        +
      • +

        setWallFilling

        +
        public abstract boolean setWallFilling(org.bukkit.World world,
        +                     PlotWorld plotworld,
        +                     PlotId plotid,
        +                     PlotBlock block)
        +
      • +
      + + + +
        +
      • +

        setWall

        +
        public abstract boolean setWall(org.bukkit.World world,
        +              PlotWorld plotworld,
        +              PlotId plotid,
        +              PlotBlock block)
        +
      • +
      + + + +
        +
      • +

        setFloor

        +
        public abstract boolean setFloor(org.bukkit.World world,
        +               PlotWorld plotworld,
        +               PlotId plotid,
        +               PlotBlock[] block)
        +
      • +
      + + + +
        +
      • +

        setBiome

        +
        public abstract boolean setBiome(org.bukkit.World world,
        +               Plot plot,
        +               org.bukkit.block.Biome biome)
        +
      • +
      + + + +
        +
      • +

        createRoadEast

        +
        public abstract boolean createRoadEast(PlotWorld plotworld,
        +                     Plot plot)
        +
      • +
      + + + +
        +
      • +

        createRoadSouth

        +
        public abstract boolean createRoadSouth(PlotWorld plotworld,
        +                      Plot plot)
        +
      • +
      + + + +
        +
      • +

        createRoadSouthEast

        +
        public abstract boolean createRoadSouthEast(PlotWorld plotworld,
        +                          Plot plot)
        +
      • +
      + + + +
        +
      • +

        removeRoadEast

        +
        public abstract boolean removeRoadEast(PlotWorld plotworld,
        +                     Plot plot)
        +
      • +
      + + + +
        +
      • +

        removeRoadSouth

        +
        public abstract boolean removeRoadSouth(PlotWorld plotworld,
        +                      Plot plot)
        +
      • +
      + + + +
        +
      • +

        removeRoadSouthEast

        +
        public abstract boolean removeRoadSouthEast(PlotWorld plotworld,
        +                          Plot plot)
        +
      • +
      + + + +
        +
      • +

        startPlotMerge

        +
        public abstract boolean startPlotMerge(org.bukkit.World world,
        +                     PlotWorld plotworld,
        +                     java.util.ArrayList<PlotId> plotIds)
        +
      • +
      + + + +
        +
      • +

        startPlotUnlink

        +
        public abstract boolean startPlotUnlink(org.bukkit.World world,
        +                      PlotWorld plotworld,
        +                      java.util.ArrayList<PlotId> plotIds)
        +
      • +
      + + + +
        +
      • +

        finishPlotMerge

        +
        public abstract boolean finishPlotMerge(org.bukkit.World world,
        +                      PlotWorld plotworld,
        +                      java.util.ArrayList<PlotId> plotIds)
        +
      • +
      + + + +
        +
      • +

        finishPlotUnlink

        +
        public abstract boolean finishPlotUnlink(org.bukkit.World world,
        +                       PlotWorld plotworld,
        +                       java.util.ArrayList<PlotId> plotIds)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html new file mode 100644 index 000000000..734d39656 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html @@ -0,0 +1,407 @@ + + + + + + PlotSelection + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotSelection

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotSelection
    +extends java.lang.Object
    +
    Created 2014-10-12 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.util.HashMap<java.lang.String,PlotSelection> + currentSelection  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotSelection(int width, + org.bukkit.World world, + Plot plot)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      PlotBlock[]getBlocks()  +
      PlotgetPlot()  +
      intgetWidth()  +
      voidpaste(org.bukkit.World world, + Plot plot)  +
      static booleanswap(org.bukkit.World world, + PlotId id1, + PlotId id2)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        currentSelection

        +
        public static java.util.HashMap<java.lang.String,PlotSelection> currentSelection
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotSelection

        +
        public PlotSelection(int width,
        +             org.bukkit.World world,
        +             Plot plot)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        swap

        +
        public static boolean swap(org.bukkit.World world,
        +           PlotId id1,
        +           PlotId id2)
        +
      • +
      + + + +
        +
      • +

        getBlocks

        +
        public PlotBlock[] getBlocks()
        +
      • +
      + + + +
        +
      • +

        getWidth

        +
        public int getWidth()
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public Plot getPlot()
        +
      • +
      + + + +
        +
      • +

        paste

        +
        public void paste(org.bukkit.World world,
        +         Plot plot)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html new file mode 100644 index 000000000..c1e8f40c0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html @@ -0,0 +1,694 @@ + + + + + + PlotSettings + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotSettings

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotSettings
    +extends java.lang.Object
    +
    plot settings
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotSettings

        +
        public PlotSettings(Plot plot)
        +
        Constructor
        +
        +
        Parameters:
        +
        plot - object
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getMerged

        +
        public boolean getMerged(int direction)
        +
        Check if the plot is merged in a direction
        + 0 = North
        + 1 = East
        + 2 = South
        + 3 = West
        +
        +
        Parameters:
        +
        direction - Direction to check
        +
        Returns:
        +
        boolean merged
        +
        +
      • +
      + + + +
        +
      • +

        isMerged

        +
        public boolean isMerged()
        +
        Returns true if the plot is merged (i.e. if it's a mega plot)
        +
      • +
      + + + +
        +
      • +

        getMerged

        +
        public boolean[] getMerged()
        +
      • +
      + + + +
        +
      • +

        setMerged

        +
        public void setMerged(boolean[] merged)
        +
      • +
      + + + +
        +
      • +

        setMerged

        +
        public void setMerged(int direction,
        +             boolean merged)
        +
      • +
      + + + +
        +
      • +

        getBiome

        +
        public org.bukkit.block.Biome getBiome()
        +
        +
        Returns:
        +
        biome at plot loc
        +
        +
      • +
      + + + +
        +
      • +

        addFlag

        +
        public void addFlag(Flag flag)
        +
        +
        Parameters:
        +
        flag - to add
        +
        +
      • +
      + + + +
        +
      • +

        getFlags

        +
        public java.util.Set<Flag> getFlags()
        +
        Get all flags applied for the plot
        +
        +
        Returns:
        +
        flags
        +
        +
      • +
      + + + +
        +
      • +

        setFlags

        +
        public void setFlags(Flag[] flags)
        +
        Set multiple flags
        +
        +
        Parameters:
        +
        flags - Flag Array
        +
        +
      • +
      + + + +
        +
      • +

        getFlag

        +
        public Flag getFlag(java.lang.String flag)
        +
        Get a flag
        +
        +
        Parameters:
        +
        flag - Flag to get
        +
        Returns:
        +
        flag
        +
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        getAlias

        +
        public java.lang.String getAlias()
        +
      • +
      + + + +
        +
      • +

        setAlias

        +
        public void setAlias(java.lang.String alias)
        +
        Set the plot alias
        +
        +
        Parameters:
        +
        alias - alias to be used
        +
        +
      • +
      + + + +
        +
      • +

        getJoinMessage

        +
        public java.lang.String getJoinMessage()
        +
      • +
      + + + +
        +
      • +

        getLeaveMessage

        +
        public java.lang.String getLeaveMessage()
        +
        Get the "farewell" flag value
        +
        +
        Returns:
        +
        Farewell flag
        +
        +
      • +
      + + + +
        +
      • +

        getComments

        +
        public java.util.ArrayList<PlotComment> getComments(int tier)
        +
      • +
      + + + +
        +
      • +

        setComments

        +
        public void setComments(java.util.ArrayList<PlotComment> comments)
        +
      • +
      + + + +
        +
      • +

        removeComment

        +
        public void removeComment(PlotComment comment)
        +
      • +
      + + + +
        +
      • +

        removeComments

        +
        public void removeComments(java.util.ArrayList<PlotComment> comments)
        +
      • +
      + + + +
        +
      • +

        addComment

        +
        public void addComment(PlotComment comment)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html new file mode 100644 index 000000000..982477b8d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html @@ -0,0 +1,951 @@ + + + + + + PlotWorld + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class PlotWorld

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    DefaultPlotWorld
    +
    +
    +
    +
    public abstract class PlotWorld
    +extends java.lang.Object
    +
    +
    Author:
    +
    Jesse Boyd
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        BLOCKS

        +
        public static java.util.ArrayList<org.bukkit.Material> BLOCKS
        +
      • +
      + + + +
        +
      • +

        AUTO_MERGE_DEFAULT

        +
        public static boolean AUTO_MERGE_DEFAULT
        +
      • +
      + + + +
        +
      • +

        MOB_SPAWNING_DEFAULT

        +
        public static boolean MOB_SPAWNING_DEFAULT
        +
      • +
      + + + +
        +
      • +

        PLOT_BIOME_DEFAULT

        +
        public static org.bukkit.block.Biome PLOT_BIOME_DEFAULT
        +
      • +
      + + + +
        +
      • +

        PLOT_CHAT_DEFAULT

        +
        public static boolean PLOT_CHAT_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_CLAIM_SPECIFY_DEFAULT

        +
        public static boolean SCHEMATIC_CLAIM_SPECIFY_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_ON_CLAIM_DEFAULT

        +
        public static boolean SCHEMATIC_ON_CLAIM_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_FILE_DEFAULT

        +
        public static java.lang.String SCHEMATIC_FILE_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SCHEMATICS_DEFAULT

        +
        public static java.util.List<java.lang.String> SCHEMATICS_DEFAULT
        +
      • +
      + + + +
        +
      • +

        DEFAULT_FLAGS_DEFAULT

        +
        public static java.util.List<java.lang.String> DEFAULT_FLAGS_DEFAULT
        +
      • +
      + + + +
        +
      • +

        USE_ECONOMY_DEFAULT

        +
        public static boolean USE_ECONOMY_DEFAULT
        +
      • +
      + + + +
        +
      • +

        PLOT_PRICE_DEFAULT

        +
        public static double PLOT_PRICE_DEFAULT
        +
      • +
      + + + +
        +
      • +

        MERGE_PRICE_DEFAULT

        +
        public static double MERGE_PRICE_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SELL_PRICE_DEFAULT

        +
        public static double SELL_PRICE_DEFAULT
        +
      • +
      + + + +
        +
      • +

        PVP_DEFAULT

        +
        public static boolean PVP_DEFAULT
        +
      • +
      + + + +
        +
      • +

        PVE_DEFAULT

        +
        public static boolean PVE_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SPAWN_EGGS_DEFAULT

        +
        public static boolean SPAWN_EGGS_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SPAWN_CUSTOM_DEFAULT

        +
        public static boolean SPAWN_CUSTOM_DEFAULT
        +
      • +
      + + + +
        +
      • +

        SPAWN_BREEDING_DEFAULT

        +
        public static boolean SPAWN_BREEDING_DEFAULT
        +
      • +
      + + + +
        +
      • +

        AUTO_MERGE

        +
        public boolean AUTO_MERGE
        +
      • +
      + + + +
        +
      • +

        MOB_SPAWNING

        +
        public boolean MOB_SPAWNING
        +
      • +
      + + + +
        +
      • +

        PLOT_BIOME

        +
        public org.bukkit.block.Biome PLOT_BIOME
        +
      • +
      + + + +
        +
      • +

        PLOT_CHAT

        +
        public boolean PLOT_CHAT
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_CLAIM_SPECIFY

        +
        public boolean SCHEMATIC_CLAIM_SPECIFY
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_ON_CLAIM

        +
        public boolean SCHEMATIC_ON_CLAIM
        +
      • +
      + + + +
        +
      • +

        SCHEMATIC_FILE

        +
        public java.lang.String SCHEMATIC_FILE
        +
      • +
      + + + +
        +
      • +

        SCHEMATICS

        +
        public java.util.List<java.lang.String> SCHEMATICS
        +
      • +
      + + + +
        +
      • +

        DEFAULT_FLAGS

        +
        public java.util.List<java.lang.String> DEFAULT_FLAGS
        +
      • +
      + + + +
        +
      • +

        USE_ECONOMY

        +
        public boolean USE_ECONOMY
        +
      • +
      + + + +
        +
      • +

        PLOT_PRICE

        +
        public double PLOT_PRICE
        +
      • +
      + + + +
        +
      • +

        MERGE_PRICE

        +
        public double MERGE_PRICE
        +
      • +
      + + + +
        +
      • +

        SELL_PRICE

        +
        public double SELL_PRICE
        +
      • +
      + + + +
        +
      • +

        PVP

        +
        public boolean PVP
        +
      • +
      + + + +
        +
      • +

        PVE

        +
        public boolean PVE
        +
      • +
      + + + +
        +
      • +

        SPAWN_EGGS

        +
        public boolean SPAWN_EGGS
        +
      • +
      + + + +
        +
      • +

        SPAWN_CUSTOM

        +
        public boolean SPAWN_CUSTOM
        +
      • +
      + + + +
        +
      • +

        SPAWN_BREEDING

        +
        public boolean SPAWN_BREEDING
        +
      • +
      + + + +
        +
      • +

        worldname

        +
        public java.lang.String worldname
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotWorld

        +
        public PlotWorld(java.lang.String worldname)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        loadDefaultConfiguration

        +
        public void loadDefaultConfiguration(org.bukkit.configuration.ConfigurationSection config)
        +
        When a world is created, the following method will be called for each
        +
        +
        Parameters:
        +
        config - Configuration Section
        +
        +
      • +
      + + + +
        +
      • +

        loadConfiguration

        +
        public abstract void loadConfiguration(org.bukkit.configuration.ConfigurationSection config)
        +
      • +
      + + + +
        +
      • +

        saveConfiguration

        +
        public void saveConfiguration(org.bukkit.configuration.ConfigurationSection config)
        +
        Saving core plotworld settings
        +
        +
        Parameters:
        +
        config - Configuration Section
        +
        +
      • +
      + + + +
        +
      • +

        getSettingNodes

        +
        public abstract ConfigurationNode[] getSettingNodes()
        +
        Used for the /plot setup command Return null if you do not want to + support this feature +
        +
        +
        Returns:
        +
        ConfigurationNode[]
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html new file mode 100644 index 000000000..25df70d71 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html @@ -0,0 +1,382 @@ + + + + + + StringWrapper + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class StringWrapper

+
+
+ +
+
    +
  • +
    +
    +
    public class StringWrapper
    +extends java.lang.Object
    +
    +
    Author:
    +
    Empire92
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      java.lang.Stringvalue  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      StringWrapper(java.lang.String value) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj) + +
      Check if a wrapped string equals another one
      +
      inthashCode() + +
      Get the hash value
      +
      java.lang.StringtoString() + +
      Get the string value
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        value

        +
        public java.lang.String value
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        StringWrapper

        +
        public StringWrapper(java.lang.String value)
        +
        Constructor
        +
        +
        Parameters:
        +
        value - to wrap
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object obj)
        +
        Check if a wrapped string equals another one
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        Parameters:
        +
        obj - to compare
        +
        Returns:
        +
        true if obj equals the stored value
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        Get the string value
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        Returns:
        +
        string value
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        Get the hash value
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        Returns:
        +
        has value
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html new file mode 100644 index 000000000..fe3f470ba --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html @@ -0,0 +1,556 @@ + + + + + + Title + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.object
+

Class Title

+
+
+ +
+
    +
  • +
    +
    +
    public class Title
    +extends java.lang.Object
    +
    Minecraft 1.8 Title
    +
    +
    Version:
    +
    1.0.3
    +
    Author:
    +
    Maxim Van de Wynckel
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      Title(java.lang.String title) + +
      Create a new 1.8 title
      +
      Title(java.lang.String title, + java.lang.String subtitle) + +
      Create a new 1.8 title
      +
      Title(java.lang.String title, + java.lang.String subtitle, + int fadeInTime, + int stayTime, + int fadeOutTime) + +
      Create a new 1.8 title
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidbroadcast() + +
      Broadcast the title to all players
      +
      voidclearTitle(org.bukkit.entity.Player player) + +
      Clear the title
      +
      voidresetTitle(org.bukkit.entity.Player player) + +
      Reset the title settings
      +
      voidsend(org.bukkit.entity.Player player) + +
      Send the title to a player
      +
      voidsetFadeInTime(int time) + +
      Set title fade in time
      +
      voidsetFadeOutTime(int time) + +
      Set title fade out time
      +
      voidsetStayTime(int time) + +
      Set title stay time
      +
      voidsetSubtitleColor(org.bukkit.ChatColor color) + +
      Set the subtitle color
      +
      voidsetTimingsToSeconds() + +
      Set timings to seconds
      +
      voidsetTimingsToTicks() + +
      Set timings to ticks
      +
      voidsetTitleColor(org.bukkit.ChatColor color) + +
      Set the title color
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Title

        +
        public Title(java.lang.String title)
        +
        Create a new 1.8 title
        +
        +
        Parameters:
        +
        title - Title
        +
        +
      • +
      + + + +
        +
      • +

        Title

        +
        public Title(java.lang.String title,
        +     java.lang.String subtitle)
        +
        Create a new 1.8 title
        +
        +
        Parameters:
        +
        title - Title text
        +
        subtitle - Subtitle text
        +
        +
      • +
      + + + +
        +
      • +

        Title

        +
        public Title(java.lang.String title,
        +     java.lang.String subtitle,
        +     int fadeInTime,
        +     int stayTime,
        +     int fadeOutTime)
        +
        Create a new 1.8 title
        +
        +
        Parameters:
        +
        title - Title text
        +
        subtitle - Subtitle text
        +
        fadeInTime - Fade in time
        +
        stayTime - Stay on screen time
        +
        fadeOutTime - Fade out time
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setTitleColor

        +
        public void setTitleColor(org.bukkit.ChatColor color)
        +
        Set the title color
        +
        +
        Parameters:
        +
        color - Chat color
        +
        +
      • +
      + + + +
        +
      • +

        setSubtitleColor

        +
        public void setSubtitleColor(org.bukkit.ChatColor color)
        +
        Set the subtitle color
        +
        +
        Parameters:
        +
        color - Chat color
        +
        +
      • +
      + + + +
        +
      • +

        setFadeInTime

        +
        public void setFadeInTime(int time)
        +
        Set title fade in time
        +
        +
        Parameters:
        +
        time - Time
        +
        +
      • +
      + + + +
        +
      • +

        setFadeOutTime

        +
        public void setFadeOutTime(int time)
        +
        Set title fade out time
        +
        +
        Parameters:
        +
        time - Time
        +
        +
      • +
      + + + +
        +
      • +

        setStayTime

        +
        public void setStayTime(int time)
        +
        Set title stay time
        +
        +
        Parameters:
        +
        time - Time
        +
        +
      • +
      + + + +
        +
      • +

        setTimingsToTicks

        +
        public void setTimingsToTicks()
        +
        Set timings to ticks
        +
      • +
      + + + +
        +
      • +

        setTimingsToSeconds

        +
        public void setTimingsToSeconds()
        +
        Set timings to seconds
        +
      • +
      + + + +
        +
      • +

        send

        +
        public void send(org.bukkit.entity.Player player)
        +
        Send the title to a player
        +
        +
        Parameters:
        +
        player - Player
        +
        +
      • +
      + + + +
        +
      • +

        broadcast

        +
        public void broadcast()
        +
        Broadcast the title to all players
        +
      • +
      + + + +
        +
      • +

        clearTitle

        +
        public void clearTitle(org.bukkit.entity.Player player)
        +
        Clear the title
        +
        +
        Parameters:
        +
        player - Player
        +
        +
      • +
      + + + +
        +
      • +

        resetTitle

        +
        public void resetTitle(org.bukkit.entity.Player player)
        +
        Reset the title settings
        +
        +
        Parameters:
        +
        player - Player
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html new file mode 100644 index 000000000..f52ac8ba2 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html @@ -0,0 +1,50 @@ + + + + + + com.intellectualcrafters.plot.object + + + + +

com.intellectualcrafters.plot.object +

+ +
+

Classes

+ +

Enums

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html new file mode 100644 index 000000000..df556725d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html @@ -0,0 +1,227 @@ + + + + + + com.intellectualcrafters.plot.object + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.object

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html new file mode 100644 index 000000000..cdef55b17 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html @@ -0,0 +1,200 @@ + + + + + + com.intellectualcrafters.plot.object Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.object

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html new file mode 100644 index 000000000..98461ca71 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html @@ -0,0 +1,21 @@ + + + + + + com.intellectualcrafters.plot + + + + +

com.intellectualcrafters.plot +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html new file mode 100644 index 000000000..ab3c4685f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html @@ -0,0 +1,137 @@ + + + + + + com.intellectualcrafters.plot + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html new file mode 100644 index 000000000..1779c5eb0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html @@ -0,0 +1,137 @@ + + + + + + com.intellectualcrafters.plot Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html new file mode 100644 index 000000000..fe51258d8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html @@ -0,0 +1,301 @@ + + + + + + ConsoleColors + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ConsoleColors

+
+
+ +
+
    +
  • +
    +
    +
    public class ConsoleColors
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ConsoleColors()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static + com.intellectualcrafters.plot.util.ConsoleColors.ConsoleColorchatColor(org.bukkit.ChatColor color)  +
      static java.lang.StringfromChatColor(org.bukkit.ChatColor color)  +
      static java.lang.StringfromString(java.lang.String input)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ConsoleColors

        +
        public ConsoleColors()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        fromString

        +
        public static java.lang.String fromString(java.lang.String input)
        +
      • +
      + + + +
        +
      • +

        fromChatColor

        +
        public static java.lang.String fromChatColor(org.bukkit.ChatColor color)
        +
      • +
      + + + +
        +
      • +

        chatColor

        +
        public static com.intellectualcrafters.plot.util.ConsoleColors.ConsoleColor chatColor(org.bukkit.ChatColor color)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html new file mode 100644 index 000000000..1c43d42a9 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html @@ -0,0 +1,312 @@ + + + + + + LSetCube.LCycler + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class LSetCube.LCycler

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    LSetCube
    +
    +
    +
    +
    protected class LSetCube.LCycler
    +extends java.lang.Object
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.LocationgetNext()  +
      booleanhasNext()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        LSetCube.LCycler

        +
        public LSetCube.LCycler(LSetCube cube)
        +
        +
        Parameters:
        +
        cube -
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        hasNext

        +
        public boolean hasNext()
        +
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getNext

        +
        public org.bukkit.Location getNext()
        +
        +
        Returns:
        +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html new file mode 100644 index 000000000..873804aec --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html @@ -0,0 +1,391 @@ + + + + + + LSetCube + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class LSetCube

+
+
+ +
+
    +
  • +
    +
    +
    public class LSetCube
    +extends java.lang.Object
    +
    Cube utilities
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      protected class LSetCube.LCycler  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      LSetCube(org.bukkit.Location l1, + int size) + +
      Secondary constructor
      +
      LSetCube(org.bukkit.Location l1, + org.bukkit.Location l2) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      LSetCube.LCycler + getCycler() + +
      Creates a LCycler for the cube.
      +
      org.bukkit.LocationmaxLoc() + +
      Returns the absolute max. of the cube
      +
      org.bukkit.LocationminLoc() + +
      Returns the absolute min. of the cube
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        LSetCube

        +
        public LSetCube(org.bukkit.Location l1,
        +        org.bukkit.Location l2)
        +
        Constructor
        +
        +
        Parameters:
        +
        l1 -
        +
        l2 -
        +
        +
      • +
      + + + +
        +
      • +

        LSetCube

        +
        public LSetCube(org.bukkit.Location l1,
        +        int size)
        +
        Secondary constructor
        +
        +
        Parameters:
        +
        l1 -
        +
        size -
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        minLoc

        +
        public org.bukkit.Location minLoc()
        +
        Returns the absolute min. of the cube
        +
        +
        Returns:
        +
        abs. min
        +
        +
      • +
      + + + +
        +
      • +

        maxLoc

        +
        public org.bukkit.Location maxLoc()
        +
        Returns the absolute max. of the cube
        +
        +
        Returns:
        +
        abs. max
        +
        +
      • +
      + + + +
        +
      • +

        getCycler

        +
        public LSetCube.LCycler getCycler()
        +
        Creates a LCycler for the cube.
        +
        +
        Returns:
        +
        new lcycler
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html new file mode 100644 index 000000000..472df75e8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html @@ -0,0 +1,478 @@ + + + + + + Lag + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class Lag

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Runnable
    +
    +
    +
    +
    public class Lag
    +extends java.lang.Object
    +implements java.lang.Runnable
    +
    TPS and Lag Checker.
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static longLT + +
      something :_:
      +
      static long[]T + +
      Ticks
      +
      static intTC + +
      Tick count
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Lag()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static longgetElapsed(int tI) + +
      Get number of ticks since
      +
      static doublegetFullPercentage() + +
      Get TPS percentage (of 20)
      +
      static doublegetPercentage() + +
      Get lag percentage
      +
      static doublegetTPS() + +
      Get the server TPS
      +
      static doublegetTPS(int ticks) + +
      Return the tick per second (measured in $ticks)
      +
      voidrun()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        TC

        +
        public static int TC
        +
        Tick count
        +
      • +
      + + + +
        +
      • +

        T

        +
        public static long[] T
        +
        Ticks
        +
      • +
      + + + +
        +
      • +

        LT

        +
        public static long LT
        +
        something :_:
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Lag

        +
        public Lag()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getTPS

        +
        public static double getTPS()
        +
        Get the server TPS
        +
        +
        Returns:
        +
        server tick per second
        +
        +
      • +
      + + + +
        +
      • +

        getTPS

        +
        public static double getTPS(int ticks)
        +
        Return the tick per second (measured in $ticks)
        +
        +
        Parameters:
        +
        ticks - Ticks
        +
        Returns:
        +
        ticks per second
        +
        +
      • +
      + + + +
        +
      • +

        getElapsed

        +
        public static long getElapsed(int tI)
        +
        Get number of ticks since
        +
        +
        Parameters:
        +
        tI - Ticks <
        +
        Returns:
        +
        number of ticks since $tI
        +
        +
      • +
      + + + +
        +
      • +

        getPercentage

        +
        public static double getPercentage()
        +
        Get lag percentage
        +
        +
        Returns:
        +
        lag percentage
        +
        +
      • +
      + + + +
        +
      • +

        getFullPercentage

        +
        public static double getFullPercentage()
        +
        Get TPS percentage (of 20)
        +
        +
        Returns:
        +
        TPS percentage
        +
        +
      • +
      + + + +
        +
      • +

        run

        +
        public void run()
        +
        +
        Specified by:
        +
        run in interface java.lang.Runnable
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html new file mode 100644 index 000000000..b235b8542 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html @@ -0,0 +1,413 @@ + + + + + + Logger.LogLevel + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Enum Logger.LogLevel

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<Logger.LogLevel>
    +
    +
    +
    Enclosing class:
    +
    Logger
    +
    +
    +
    +
    public static enum Logger.LogLevel
    +extends java.lang.Enum<Logger.LogLevel>
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      DANGER  +
      GENERAL  +
      WARNING  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString()  +
      static Logger.LogLevelvalueOf(java.lang.String name) + +
      Returns the enum constant of this type with the specified name.
      +
      static Logger.LogLevel[]values() + +
      Returns an array containing the constants of this enum type, in + the order they are declared. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Enum

        + clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, + valueOf
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static Logger.LogLevel[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (Logger.LogLevel c : Logger.LogLevel.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are + declared +
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static Logger.LogLevel valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant + with the specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Enum<Logger.LogLevel> +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html new file mode 100644 index 000000000..2b399850d --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html @@ -0,0 +1,340 @@ + + + + + + Logger + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class Logger

+
+
+ +
+
    +
  • +
    +
    +
    public class Logger
    +extends java.lang.Object
    +
    Logging of errors and debug messages.
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class Logger.LogLevel  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Logger()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidadd(Logger.LogLevel level, + java.lang.String string) 
      static voidsetup(java.io.File file)  +
      static voidwrite()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Logger

        +
        public Logger()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setup

        +
        public static void setup(java.io.File file)
        +
      • +
      + + + +
        +
      • +

        write

        +
        public static void write()
        +                  throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        add

        +
        public static void add(Logger.LogLevel level,
        +       java.lang.String string)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html new file mode 100644 index 000000000..b0951cd68 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html @@ -0,0 +1,389 @@ + + + + + + Metrics.Graph + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class Metrics.Graph

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    Metrics
    +
    +
    +
    +
    public static class Metrics.Graph
    +extends java.lang.Object
    +
    Represents a custom graph on the website
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidaddPlotter(Metrics.Plotter plotter) + +
      Add a plotter to the graph, which will be used to plot entries +
      +
      booleanequals(java.lang.Object object)  +
      java.lang.StringgetName() + +
      Gets the graph's name
      +
      java.util.Set<Metrics.Plotter> + getPlotters() + +
      Gets an unmodifiable set of the plotter objects in the + graph +
      +
      inthashCode()  +
      protected voidonOptOut() + +
      Called when the server owner decides to opt-out of BukkitMetrics + while the server is running. +
      +
      voidremovePlotter(Metrics.Plotter plotter) + +
      Remove a plotter from the graph
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait +
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
        Gets the graph's name
        +
        +
        Returns:
        +
        the Graph's name
        +
        +
      • +
      + + + +
        +
      • +

        addPlotter

        +
        public void addPlotter(Metrics.Plotter plotter)
        +
        Add a plotter to the graph, which will be used to plot entries
        +
        +
        Parameters:
        +
        plotter - the plotter to add to the graph
        +
        +
      • +
      + + + +
        +
      • +

        removePlotter

        +
        public void removePlotter(Metrics.Plotter plotter)
        +
        Remove a plotter from the graph
        +
        +
        Parameters:
        +
        plotter - the plotter to remove from the graph
        +
        +
      • +
      + + + +
        +
      • +

        getPlotters

        +
        public java.util.Set<Metrics.Plotter> getPlotters()
        +
        Gets an unmodifiable set of the plotter objects in the graph +
        +
        +
        Returns:
        +
        an unmodifiable Set of the plotter objects
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object object)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        onOptOut

        +
        protected void onOptOut()
        +
        Called when the server owner decides to opt-out of BukkitMetrics + while the server is running. +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html new file mode 100644 index 000000000..bff8e0fca --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html @@ -0,0 +1,393 @@ + + + + + + Metrics.Plotter + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class Metrics.Plotter

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    Metrics
    +
    +
    +
    +
    public abstract static class Metrics.Plotter
    +extends java.lang.Object
    +
    Interface used to collect custom data for a plugin
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      Metrics.Plotter() + +
      Construct a plotter with the default plot name
      +
      Metrics.Plotter(java.lang.String name) + +
      Construct a plotter with a specific plot name
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object object)  +
      java.lang.StringgetColumnName() + +
      Get the column name for the plotted point
      +
      abstract intgetValue() + +
      Get the current value for the plotted point.
      +
      inthashCode()  +
      voidreset() + +
      Called after the website graphs have been updated
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Metrics.Plotter

        +
        public Metrics.Plotter()
        +
        Construct a plotter with the default plot name
        +
      • +
      + + + +
        +
      • +

        Metrics.Plotter

        +
        public Metrics.Plotter(java.lang.String name)
        +
        Construct a plotter with a specific plot name
        +
        +
        Parameters:
        +
        name - the name of the plotter to use, which will show up on the + website +
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getValue

        +
        public abstract int getValue()
        +
        Get the current value for the plotted point. Since this function + defers to an external function it may or may not return immediately + thus cannot be guaranteed to be thread friendly or safe. This + function can be called from any thread so care should be taken when + accessing resources that need to be synchronized. +
        +
        +
        Returns:
        +
        the current value for the point to be plotted.
        +
        +
      • +
      + + + +
        +
      • +

        getColumnName

        +
        public java.lang.String getColumnName()
        +
        Get the column name for the plotted point
        +
        +
        Returns:
        +
        the plotted point's column name
        +
        +
      • +
      + + + +
        +
      • +

        reset

        +
        public void reset()
        +
        Called after the website graphs have been updated
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object object)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html new file mode 100644 index 000000000..2d644a2ba --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html @@ -0,0 +1,515 @@ + + + + + + Metrics + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class Metrics

+
+
+ +
+
    +
  • +
    +
    +
    public class Metrics
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Nested Class Summary

      + + + + + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class Metrics.Graph + +
      Represents a custom graph on the website
      +
      static class Metrics.Plotter + +
      Interface used to collect custom data for a plugin
      +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Metrics(org.bukkit.plugin.Plugin plugin)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidaddGraph(Metrics.Graph graph) + +
      Add a Graph object to BukkitMetrics that represents data for the + plugin + that should be sent to the backend +
      +
      Metrics.GraphcreateGraph(java.lang.String name) + +
      Construct and create a Graph that can be used to separate specific + plotters to their own graphs on the metrics website. +
      +
      voiddisable() + +
      Disables metrics for the server by setting "opt-out" to true in the + config file and canceling the metrics task. +
      +
      voidenable() + +
      Enables metrics for the server by setting "opt-out" to false in the + config file and starting the metrics task. +
      +
      java.io.FilegetConfigFile() + +
      Gets the File object of the config file that should be used to store + data + such as the GUID and opt-out status +
      +
      static byte[]gzip(java.lang.String input) + +
      GZip compress a string of bytes
      +
      booleanisOptOut() + +
      Has the server owner denied plugin metrics?
      +
      booleanstart() + +
      Start measuring statistics.
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        Metrics

        +
        public Metrics(org.bukkit.plugin.Plugin plugin)
        +        throws java.io.IOException
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        gzip

        +
        public static byte[] gzip(java.lang.String input)
        +
        GZip compress a string of bytes
        +
        +
        Parameters:
        +
        input -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        createGraph

        +
        public Metrics.Graph createGraph(java.lang.String name)
        +
        Construct and create a Graph that can be used to separate specific + plotters to their own graphs on the metrics website. Plotters can be + added to the graph object returned. +
        +
        +
        Parameters:
        +
        name - The name of the graph
        +
        Returns:
        +
        Graph object created. Will never return NULL under normal + circumstances unless bad parameters are given +
        +
        +
      • +
      + + + +
        +
      • +

        addGraph

        +
        public void addGraph(Metrics.Graph graph)
        +
        Add a Graph object to BukkitMetrics that represents data for the plugin + that should be sent to the backend +
        +
        +
        Parameters:
        +
        graph - The name of the graph
        +
        +
      • +
      + + + +
        +
      • +

        start

        +
        public boolean start()
        +
        Start measuring statistics. This will immediately create an async + repeating task as the plugin and send the initial data to the metrics + backend, and then after that it will post in increments of PING_INTERVAL + * 1200 ticks. +
        +
        +
        Returns:
        +
        True if statistics measuring is running, otherwise false.
        +
        +
      • +
      + + + +
        +
      • +

        isOptOut

        +
        public boolean isOptOut()
        +
        Has the server owner denied plugin metrics?
        +
        +
        Returns:
        +
        true if metrics should be opted out of it
        +
        +
      • +
      + + + +
        +
      • +

        enable

        +
        public void enable()
        +            throws java.io.IOException
        +
        Enables metrics for the server by setting "opt-out" to false in the + config file and starting the metrics task. +
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        disable

        +
        public void disable()
        +             throws java.io.IOException
        +
        Disables metrics for the server by setting "opt-out" to true in the + config file and canceling the metrics task. +
        +
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getConfigFile

        +
        public java.io.File getConfigFile()
        +
        Gets the File object of the config file that should be used to store data + such as the GUID and opt-out status +
        +
        +
        Returns:
        +
        the File object for the config file
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html new file mode 100644 index 000000000..7a0d59331 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html @@ -0,0 +1,336 @@ + + + + + + PWE + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class PWE

+
+
+ +
+
    +
  • +
    +
    +
    public class PWE
    +extends java.lang.Object
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PWE()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static booleannoMask(com.sk89q.worldedit.LocalSession s)  +
      static voidremoveMask(org.bukkit.entity.Player p)  +
      static voidremoveMask(org.bukkit.entity.Player p, + com.sk89q.worldedit.LocalSession s) 
      static voidsetMask(org.bukkit.entity.Player p, + org.bukkit.Location l) 
      static voidsetNoMask(org.bukkit.entity.Player p)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PWE

        +
        public PWE()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        setMask

        +
        public static void setMask(org.bukkit.entity.Player p,
        +           org.bukkit.Location l)
        +
      • +
      + + + +
        +
      • +

        noMask

        +
        public static boolean noMask(com.sk89q.worldedit.LocalSession s)
        +
      • +
      + + + +
        +
      • +

        setNoMask

        +
        public static void setNoMask(org.bukkit.entity.Player p)
        +
      • +
      + + + +
        +
      • +

        removeMask

        +
        public static void removeMask(org.bukkit.entity.Player p,
        +              com.sk89q.worldedit.LocalSession s)
        +
      • +
      + + + +
        +
      • +

        removeMask

        +
        public static void removeMask(org.bukkit.entity.Player p)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html new file mode 100644 index 000000000..3256b8fb0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html @@ -0,0 +1,707 @@ + + + + + + PlayerFunctions + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class PlayerFunctions

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerFunctions
    +extends java.lang.Object
    +
    Functions involving players, plots and locations.
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlayerFunctions()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static intgetAllowedPlots(org.bukkit.entity.Player p) + +
      Get the maximum number of plots a player is allowed
      +
      static PlotgetBottomPlot(org.bukkit.World world, + Plot plot)  +
      static PlotgetCurrentPlot(org.bukkit.entity.Player player) + +
      Returns the plot a player is currently in.
      +
      static java.util.ArrayList<PlotId>getMaxPlotSelectionIds(org.bukkit.World world, + PlotId pos1, + PlotId pos2)  +
      static intgetPlayerPlotCount(org.bukkit.World world, + org.bukkit.entity.Player plr) + +
      Get the number of plots for a player
      +
      static java.util.Set<Plot>getPlayerPlots(org.bukkit.World world, + org.bukkit.entity.Player plr) + +
      Get the plots for a player
      +
      static PlotIdgetPlot(org.bukkit.Location loc) + +
      Returns the plot id at a location (mega plots are considered)
      +
      static PlotIdgetPlotAbs(org.bukkit.Location loc) + +
      Returns the plot at a location (mega plots are not considered, all + plots + are treated as small plots) +
      +
      static java.util.Set<Plot>getPlots() + +
      Deprecated.  
      +
      static java.util.ArrayList<PlotId>getPlotSelectionIds(org.bukkit.World world, + PlotId pos1, + PlotId pos2)  +
      static PlotgetTopPlot(org.bukkit.World world, + Plot plot)  +
      static booleanhasExpired(Plot plot)  +
      static booleanisInPlot(org.bukkit.entity.Player player)  +
      static booleansendMessage(org.bukkit.entity.Player plr, + C c, + java.lang.String... args) + +
      Send a message to the player
      +
      static booleansendMessage(org.bukkit.entity.Player plr, + java.lang.String msg) + +
      Send a message to the player
      +
      static voidsendMessageWrapped(org.bukkit.entity.Player plr, + java.lang.String msg) + +
      \\previous\\
      +
      static voidset(Plot plot) + +
      Deprecated.  
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerFunctions

        +
        public PlayerFunctions()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        isInPlot

        +
        public static boolean isInPlot(org.bukkit.entity.Player player)
        +
        +
        Parameters:
        +
        player - player
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        hasExpired

        +
        public static boolean hasExpired(Plot plot)
        +
        +
        Parameters:
        +
        plot - plot
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlotSelectionIds

        +
        public static java.util.ArrayList<PlotId> getPlotSelectionIds(org.bukkit.World world,
        +                                              PlotId pos1,
        +                                              PlotId pos2)
        +
      • +
      + + + +
        +
      • +

        getMaxPlotSelectionIds

        +
        public static java.util.ArrayList<PlotId> getMaxPlotSelectionIds(org.bukkit.World world,
        +                                                 PlotId pos1,
        +                                                 PlotId pos2)
        +
      • +
      + + + +
        +
      • +

        getBottomPlot

        +
        public static Plot getBottomPlot(org.bukkit.World world,
        +                 Plot plot)
        +
      • +
      + + + +
        +
      • +

        getTopPlot

        +
        public static Plot getTopPlot(org.bukkit.World world,
        +              Plot plot)
        +
      • +
      + + + +
        +
      • +

        getPlotAbs

        +
        public static PlotId getPlotAbs(org.bukkit.Location loc)
        +
        Returns the plot at a location (mega plots are not considered, all plots + are treated as small plots) +
        +
        +
        Parameters:
        +
        loc -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public static PlotId getPlot(org.bukkit.Location loc)
        +
        Returns the plot id at a location (mega plots are considered)
        +
        +
        Parameters:
        +
        loc -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getCurrentPlot

        +
        public static Plot getCurrentPlot(org.bukkit.entity.Player player)
        +
        Returns the plot a player is currently in.
        +
        +
        Parameters:
        +
        player -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        set

        +
        @Deprecated
        +public static void set(Plot plot)
        +
        Deprecated. 
        +
        Updates a given plot with another instance
        +
        +
        Parameters:
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        getPlayerPlots

        +
        public static java.util.Set<Plot> getPlayerPlots(org.bukkit.World world,
        +                                 org.bukkit.entity.Player plr)
        +
        Get the plots for a player
        +
        +
        Parameters:
        +
        plr -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlayerPlotCount

        +
        public static int getPlayerPlotCount(org.bukkit.World world,
        +                     org.bukkit.entity.Player plr)
        +
        Get the number of plots for a player
        +
        +
        Parameters:
        +
        plr -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getAllowedPlots

        +
        public static int getAllowedPlots(org.bukkit.entity.Player p)
        +
        Get the maximum number of plots a player is allowed
        +
        +
        Parameters:
        +
        p -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlots

        +
        @Deprecated
        +public static java.util.Set<Plot> getPlots()
        +
        Deprecated. 
        +
        +
        Returns:
        +
        PlotMain.getPlots();
        +
        +
      • +
      + + + +
        +
      • +

        sendMessageWrapped

        +
        public static void sendMessageWrapped(org.bukkit.entity.Player plr,
        +                      java.lang.String msg)
        +
        \\previous\\
        +
        +
        Parameters:
        +
        plr -
        +
        msg - Was used to wrap the chat client length (Packets out--)
        +
        +
      • +
      + + + +
        +
      • +

        sendMessage

        +
        public static boolean sendMessage(org.bukkit.entity.Player plr,
        +                  java.lang.String msg)
        +
        Send a message to the player
        +
        +
        Parameters:
        +
        plr - Player to recieve message
        +
        msg - Message to send
        +
        Returns:
        +
        true + Can be used in things such as commands (return PlayerFunctions.sendMessage(...)) +
        +
        +
      • +
      + + + +
        +
      • +

        sendMessage

        +
        public static boolean sendMessage(org.bukkit.entity.Player plr,
        +                  C c,
        +                  java.lang.String... args)
        +
        Send a message to the player
        +
        +
        Parameters:
        +
        plr - Player to recieve message
        +
        c - Caption to send
        +
        Returns:
        +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html new file mode 100644 index 000000000..1a37515c9 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html @@ -0,0 +1,1294 @@ + + + + + + PlotHelper + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class PlotHelper

+
+
+ +
+
    +
  • +
    +
    +
    public class PlotHelper
    +extends java.lang.Object
    +
    plot functions
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static booleancanSetFast  +
      static java.util.HashMap<Plot,java.lang.Integer>runners  +
      static java.util.ArrayList<java.lang.String>runners_p  +
      +
    • +
    + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotHelper()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidadjustWall(org.bukkit.entity.Player player, + Plot plot, + PlotBlock block) + +
      Adjusts a plot wall
      +
      static voidadjustWallFilling(org.bukkit.entity.Player requester, + Plot plot, + PlotBlock block) 
      static voidautoMerge(org.bukkit.World world, + Plot plot, + org.bukkit.entity.Player player) 
      static voidclear(org.bukkit.entity.Player requester, + Plot plot) + +
      Clear a plot
      +
      static voidclear(org.bukkit.World world, + Plot plot) 
      static voidclearAllEntities(org.bukkit.World world, + Plot plot, + boolean tile) 
      static java.lang.StringcreateId(int x, + int z) 
      static booleancreatePlot(org.bukkit.entity.Player player, + Plot plot) 
      static short[]getBlock(java.lang.String block)  +
      static PlotgetCurrentPlot(org.bukkit.Location loc) + +
      Returns the plot at a given location
      +
      static intgetEntities(org.bukkit.World world)  +
      static intgetHeighestBlock(org.bukkit.World world, + int x, + int z) 
      static intgetLoadedChunks(org.bukkit.World world)  +
      static java.lang.StringgetPlayerName(java.util.UUID uuid)  +
      static PlotgetPlot(org.bukkit.World world, + PlotId id) + +
      Fetches the plot from the main class
      +
      static org.bukkit.LocationgetPlotBottomLoc(org.bukkit.World world, + PlotId id) + +
      Gets the bottom loc of a plot (if mega, returns bottom loc of that mega + plot) + - If you would like each plot treated as a small plot use + getPlotBottomLocAbs(...) +
      +
      static org.bukkit.LocationgetPlotBottomLocAbs(org.bukkit.World world, + PlotId id) + +
      Gets the bottom plot location of a plot (all plots are treated as small + plots) + - To get the top loc of a mega plot use getPlotBottomLoc(...) +
      +
      static org.bukkit.LocationgetPlotHome(org.bukkit.World w, + Plot plot) 
      static org.bukkit.LocationgetPlotHome(org.bukkit.World w, + PlotId plotid) 
      static PlotIdgetPlotIdRelative(PlotId id, + int direction) + +
      direction 0 = north, 1 = south, etc:
      +
      static org.bukkit.LocationgetPlotTopLoc(org.bukkit.World world, + PlotId id) + +
      Gets the top loc of a plot (if mega, returns top loc of that mega plot) + - If you would like each plot treated as a small plot use + getPlotTopLocAbs(...) +
      +
      static org.bukkit.LocationgetPlotTopLocAbs(org.bukkit.World world, + PlotId id) + +
      Gets the top plot location of a plot (all plots are treated as small + plots) + - To get the top loc of a mega plot use getPlotTopLoc(...) +
      +
      static intgetPlotWidth(org.bukkit.World world, + PlotId id) + +
      Obtains the width of a plot (x width)
      +
      static java.lang.StringgetStringSized(int max, + java.lang.String string) 
      static intgetTileEntities(org.bukkit.World world)  +
      static doublegetWorldFolderSize(org.bukkit.World world)  +
      static voidmergePlot(org.bukkit.World world, + Plot lesserPlot, + Plot greaterPlot) + +
      Merges 2 plots Removes the road inbetween
      + - Assumes the first plot parameter is lower
      + - Assumes neither are a Mega-plot
      + - Assumes plots are directly next to each other
      + - Saves to DB +
      +
      static booleanmergePlots(org.bukkit.entity.Player plr, + org.bukkit.World world, + java.util.ArrayList<PlotId> plotIds) + +
      Merges all plots in the arraylist (with cost)
      +
      static booleanmergePlots(org.bukkit.World world, + java.util.ArrayList<PlotId> plotIds) + +
      Completely merges a set of plots
      + (There are no checks to make sure you supply the correct + arguments)
      + - Misuse of this method can result in unusable plots
      + - the set of plots must belong to one owner and be rectangular
      + - the plot array must be sorted in ascending order
      + - Road will be removed where required
      + - changes will be saved to DB
      +
      static longnextLong()  +
      static intrandom(int n)  +
      static voidrefreshPlotChunks(org.bukkit.World world, + Plot plot) 
      static voidremoveSign(org.bukkit.World world, + Plot p) 
      static voidsetBiome(org.bukkit.World world, + Plot plot, + org.bukkit.block.Biome b) 
      static booleansetBlock(org.bukkit.block.Block block, + PlotBlock plotblock) + +
      Set a block quickly, attempts to use NMS if possible
      +
      static voidsetCuboid(org.bukkit.World world, + org.bukkit.Location pos1, + org.bukkit.Location pos2, + PlotBlock[] blocks) 
      static voidsetFloor(org.bukkit.entity.Player requester, + Plot plot, + PlotBlock[] blocks) 
      static voidsetSign(org.bukkit.entity.Player player, + Plot p) 
      static voidsetSign(org.bukkit.World world, + java.lang.String name, + Plot p) 
      static voidsetSimpleCuboid(org.bukkit.World world, + org.bukkit.Location pos1, + org.bukkit.Location pos2, + PlotBlock newblock) 
      static intsquare(int x)  +
      static longxorShift64(long a)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Field Detail

      + + + +
        +
      • +

        canSetFast

        +
        public static boolean canSetFast
        +
      • +
      + + + +
        +
      • +

        runners_p

        +
        public static java.util.ArrayList<java.lang.String> runners_p
        +
      • +
      + + + +
        +
      • +

        runners

        +
        public static java.util.HashMap<Plot,java.lang.Integer> runners
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotHelper

        +
        public PlotHelper()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getPlotIdRelative

        +
        public static PlotId getPlotIdRelative(PlotId id,
        +                       int direction)
        +
        direction 0 = north, 1 = south, etc:
        +
        +
        Parameters:
        +
        id -
        +
        direction -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        mergePlots

        +
        public static boolean mergePlots(org.bukkit.entity.Player plr,
        +                 org.bukkit.World world,
        +                 java.util.ArrayList<PlotId> plotIds)
        +
        Merges all plots in the arraylist (with cost)
        +
        +
        Parameters:
        +
        plr -
        +
        world -
        +
        plotIds -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        mergePlots

        +
        public static boolean mergePlots(org.bukkit.World world,
        +                 java.util.ArrayList<PlotId> plotIds)
        +
        Completely merges a set of plots
        + (There are no checks to make sure you supply the correct + arguments)
        + - Misuse of this method can result in unusable plots
        + - the set of plots must belong to one owner and be rectangular
        + - the plot array must be sorted in ascending order
        + - Road will be removed where required
        + - changes will be saved to DB
        +
        +
        Parameters:
        +
        world -
        +
        plotIds -
        +
        Returns:
        +
        boolean (success)
        +
        +
      • +
      + + + +
        +
      • +

        mergePlot

        +
        public static void mergePlot(org.bukkit.World world,
        +             Plot lesserPlot,
        +             Plot greaterPlot)
        +
        Merges 2 plots Removes the road inbetween
        + - Assumes the first plot parameter is lower
        + - Assumes neither are a Mega-plot
        + - Assumes plots are directly next to each other
        + - Saves to DB +
        +
        +
        Parameters:
        +
        world -
        +
        lesserPlot -
        +
        greaterPlot -
        +
        +
      • +
      + + + +
        +
      • +

        nextLong

        +
        public static long nextLong()
        +
      • +
      + + + +
        +
      • +

        xorShift64

        +
        public static long xorShift64(long a)
        +
      • +
      + + + +
        +
      • +

        random

        +
        public static int random(int n)
        +
      • +
      + + + +
        +
      • +

        removeSign

        +
        public static void removeSign(org.bukkit.World world,
        +              Plot p)
        +
      • +
      + + + +
        +
      • +

        setSign

        +
        public static void setSign(org.bukkit.entity.Player player,
        +           Plot p)
        +
      • +
      + + + +
        +
      • +

        setSign

        +
        public static void setSign(org.bukkit.World world,
        +           java.lang.String name,
        +           Plot p)
        +
      • +
      + + + +
        +
      • +

        getPlayerName

        +
        public static java.lang.String getPlayerName(java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        getStringSized

        +
        public static java.lang.String getStringSized(int max,
        +                              java.lang.String string)
        +
      • +
      + + + +
        +
      • +

        setBlock

        +
        public static boolean setBlock(org.bukkit.block.Block block,
        +               PlotBlock plotblock)
        +
        Set a block quickly, attempts to use NMS if possible
        +
        +
        Parameters:
        +
        block -
        +
        plotblock -
        +
        +
      • +
      + + + +
        +
      • +

        adjustWall

        +
        public static void adjustWall(org.bukkit.entity.Player player,
        +              Plot plot,
        +              PlotBlock block)
        +
        Adjusts a plot wall
        +
        +
        Parameters:
        +
        player -
        +
        plot -
        +
        block -
        +
        +
      • +
      + + + +
        +
      • +

        autoMerge

        +
        public static void autoMerge(org.bukkit.World world,
        +             Plot plot,
        +             org.bukkit.entity.Player player)
        +
      • +
      + + + +
        +
      • +

        createPlot

        +
        public static boolean createPlot(org.bukkit.entity.Player player,
        +                 Plot plot)
        +
      • +
      + + + +
        +
      • +

        getLoadedChunks

        +
        public static int getLoadedChunks(org.bukkit.World world)
        +
      • +
      + + + +
        +
      • +

        getEntities

        +
        public static int getEntities(org.bukkit.World world)
        +
      • +
      + + + +
        +
      • +

        getTileEntities

        +
        public static int getTileEntities(org.bukkit.World world)
        +
      • +
      + + + +
        +
      • +

        getWorldFolderSize

        +
        public static double getWorldFolderSize(org.bukkit.World world)
        +
      • +
      + + + +
        +
      • +

        createId

        +
        public static java.lang.String createId(int x,
        +                        int z)
        +
      • +
      + + + +
        +
      • +

        adjustWallFilling

        +
        public static void adjustWallFilling(org.bukkit.entity.Player requester,
        +                     Plot plot,
        +                     PlotBlock block)
        +
      • +
      + + + +
        +
      • +

        setFloor

        +
        public static void setFloor(org.bukkit.entity.Player requester,
        +            Plot plot,
        +            PlotBlock[] blocks)
        +
      • +
      + + + +
        +
      • +

        square

        +
        public static int square(int x)
        +
      • +
      + + + +
        +
      • +

        getBlock

        +
        public static short[] getBlock(java.lang.String block)
        +
      • +
      + + + +
        +
      • +

        clearAllEntities

        +
        public static void clearAllEntities(org.bukkit.World world,
        +                    Plot plot,
        +                    boolean tile)
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public static void clear(org.bukkit.World world,
        +         Plot plot)
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public static void clear(org.bukkit.entity.Player requester,
        +         Plot plot)
        +
        Clear a plot
        +
        +
        Parameters:
        +
        requester -
        +
        plot -
        +
        +
      • +
      + + + +
        +
      • +

        setCuboid

        +
        public static void setCuboid(org.bukkit.World world,
        +             org.bukkit.Location pos1,
        +             org.bukkit.Location pos2,
        +             PlotBlock[] blocks)
        +
      • +
      + + + +
        +
      • +

        setSimpleCuboid

        +
        public static void setSimpleCuboid(org.bukkit.World world,
        +                   org.bukkit.Location pos1,
        +                   org.bukkit.Location pos2,
        +                   PlotBlock newblock)
        +
      • +
      + + + +
        +
      • +

        setBiome

        +
        public static void setBiome(org.bukkit.World world,
        +            Plot plot,
        +            org.bukkit.block.Biome b)
        +
      • +
      + + + +
        +
      • +

        getHeighestBlock

        +
        public static int getHeighestBlock(org.bukkit.World world,
        +                   int x,
        +                   int z)
        +
      • +
      + + + +
        +
      • +

        getPlotHome

        +
        public static org.bukkit.Location getPlotHome(org.bukkit.World w,
        +                              PlotId plotid)
        +
      • +
      + + + +
        +
      • +

        getPlotHome

        +
        public static org.bukkit.Location getPlotHome(org.bukkit.World w,
        +                              Plot plot)
        +
      • +
      + + + +
        +
      • +

        refreshPlotChunks

        +
        public static void refreshPlotChunks(org.bukkit.World world,
        +                     Plot plot)
        +
      • +
      + + + +
        +
      • +

        getPlotTopLocAbs

        +
        public static org.bukkit.Location getPlotTopLocAbs(org.bukkit.World world,
        +                                   PlotId id)
        +
        Gets the top plot location of a plot (all plots are treated as small + plots) + - To get the top loc of a mega plot use getPlotTopLoc(...) +
        +
        +
        Parameters:
        +
        world -
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlotBottomLocAbs

        +
        public static org.bukkit.Location getPlotBottomLocAbs(org.bukkit.World world,
        +                                      PlotId id)
        +
        Gets the bottom plot location of a plot (all plots are treated as small + plots) + - To get the top loc of a mega plot use getPlotBottomLoc(...) +
        +
        +
        Parameters:
        +
        world -
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlotWidth

        +
        public static int getPlotWidth(org.bukkit.World world,
        +               PlotId id)
        +
        Obtains the width of a plot (x width)
        +
        +
        Parameters:
        +
        world -
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlotTopLoc

        +
        public static org.bukkit.Location getPlotTopLoc(org.bukkit.World world,
        +                                PlotId id)
        +
        Gets the top loc of a plot (if mega, returns top loc of that mega plot) + - If you would like each plot treated as a small plot use + getPlotTopLocAbs(...) +
        +
        +
        Parameters:
        +
        world -
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlotBottomLoc

        +
        public static org.bukkit.Location getPlotBottomLoc(org.bukkit.World world,
        +                                   PlotId id)
        +
        Gets the bottom loc of a plot (if mega, returns bottom loc of that mega + plot) + - If you would like each plot treated as a small plot use + getPlotBottomLocAbs(...) +
        +
        +
        Parameters:
        +
        world -
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getPlot

        +
        public static Plot getPlot(org.bukkit.World world,
        +           PlotId id)
        +
        Fetches the plot from the main class
        +
        +
        Parameters:
        +
        world -
        +
        id -
        +
        Returns:
        +
        +
        +
      • +
      + + + +
        +
      • +

        getCurrentPlot

        +
        public static Plot getCurrentPlot(org.bukkit.Location loc)
        +
        Returns the plot at a given location
        +
        +
        Parameters:
        +
        loc -
        +
        Returns:
        +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html new file mode 100644 index 000000000..2eb61bf4b --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html @@ -0,0 +1,415 @@ + + + + + + PlotSquaredException.PlotError + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Enum PlotSquaredException.PlotError

+
+
+ +
+ +
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetHeader()  +
      java.lang.StringtoString()  +
      static PlotSquaredException.PlotError + valueOf(java.lang.String name) + +
      Returns the enum constant of this type with the specified name.
      +
      static PlotSquaredException.PlotError[] + values() + +
      Returns an array containing the constants of this enum type, in + the order they are declared. +
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Enum

        + clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, + valueOf
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static PlotSquaredException.PlotError[] values()
        +
        Returns an array containing the constants of this enum type, in + the order they are declared. This method may be used to iterate + over the constants as follows: +
        +for (PlotSquaredException.PlotError c : PlotSquaredException.PlotError.values())
        +    System.out.println(c);
        +
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are + declared +
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static PlotSquaredException.PlotError valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. + The string must match exactly an identifier used to declare an + enum constant in this type. (Extraneous whitespace characters are + not permitted.) +
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant + with the specified name +
        +
        java.lang.NullPointerException - if the argument is null
        +
        +
      • +
      + + + +
        +
      • +

        getHeader

        +
        public java.lang.String getHeader()
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html new file mode 100644 index 000000000..8c88e647c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html @@ -0,0 +1,307 @@ + + + + + + PlotSquaredException + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class PlotSquaredException

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    +
    public class PlotSquaredException
    +extends java.lang.RuntimeException
    +
    Created 2014-09-29 for PlotSquared
    +
    +
    Author:
    +
    Citymonstret
    +
    See Also:
    +
    + Serialized + Form
    +
    +
  • +
+
+
+
    +
  • + + + + + +
      +
    • + + + +

      Method Summary

      +
        +
      • + + + +

        Methods inherited from class java.lang.Throwable

        + addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, + getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, + printStackTrace, setStackTrace, toString
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html new file mode 100644 index 000000000..716da03be --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html @@ -0,0 +1,405 @@ + + + + + + RUtils + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class RUtils

+
+
+ +
+
    +
  • +
    +
    +
    public class RUtils
    +extends java.lang.Object
    +
    Random utilities
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      RUtils()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleancompareDirections(org.bukkit.Location l1, + org.bukkit.Location l2) 
      voidforceTexture(org.bukkit.entity.Player p) + +
      Force textures on the client
      +
      static java.lang.StringformatTime(double sec) + +
      Get formatted time
      +
      com.intellectualcrafters.plot.util.RUtils.DirectiongetDirection(org.bukkit.Location l)  +
      static longgetFreeRam() + +
      Get the total free ram
      +
      static longgetRamPercentage() + +
      Percentage of used ram
      +
      static longgetTotalRam() + +
      Get the total allocated ram
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        RUtils

        +
        public RUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getTotalRam

        +
        public static long getTotalRam()
        +
        Get the total allocated ram
        +
        +
        Returns:
        +
        total ram
        +
        +
      • +
      + + + +
        +
      • +

        getFreeRam

        +
        public static long getFreeRam()
        +
        Get the total free ram
        +
        +
        Returns:
        +
        free ram
        +
        +
      • +
      + + + +
        +
      • +

        getRamPercentage

        +
        public static long getRamPercentage()
        +
        Percentage of used ram
        +
        +
        Returns:
        +
        percentage
        +
        +
      • +
      + + + +
        +
      • +

        formatTime

        +
        public static java.lang.String formatTime(double sec)
        +
        Get formatted time
        +
        +
        Parameters:
        +
        sec - seconds
        +
        Returns:
        +
        formatted time
        +
        +
      • +
      + + + +
        +
      • +

        forceTexture

        +
        public void forceTexture(org.bukkit.entity.Player p)
        +
        Force textures on the client
        +
        +
        Parameters:
        +
        p - texture to force
        +
        +
      • +
      + + + +
        +
      • +

        getDirection

        +
        public com.intellectualcrafters.plot.util.RUtils.Direction getDirection(org.bukkit.Location l)
        +
      • +
      + + + +
        +
      • +

        compareDirections

        +
        public boolean compareDirections(org.bukkit.Location l1,
        +                        org.bukkit.Location l2)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html new file mode 100644 index 000000000..ccd3f887a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html @@ -0,0 +1,592 @@ + + + + + + ReflectionUtils.RefClass + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ReflectionUtils.RefClass

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ReflectionUtils
    +
    +
    +
    +
    public static class ReflectionUtils.RefClass
    +extends java.lang.Object
    +
    RefClass - utility to simplify work with reflections.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getRealClass

        +
        public java.lang.Class<?> getRealClass()
        +
        get passed class
        +
        +
        Returns:
        +
        class
        +
        +
      • +
      + + + +
        +
      • +

        isInstance

        +
        public boolean isInstance(java.lang.Object object)
        +
        see Class.isInstance(Object)
        +
        +
        Parameters:
        +
        object - the object to check
        +
        Returns:
        +
        true if object is an instance of this class
        +
        +
      • +
      + + + +
        +
      • +

        getMethod

        +
        public ReflectionUtils.RefMethod getMethod(java.lang.String name,
        +                                  java.lang.Object... types)
        +                                    throws java.lang.NoSuchMethodException
        +
        get existing method by name and types
        +
        +
        Parameters:
        +
        name - name
        +
        types - method parameters. can be Class or RefClass
        +
        Returns:
        +
        RefMethod object
        +
        Throws:
        +
        java.lang.RuntimeException - if method not found
        +
        java.lang.NoSuchMethodException
        +
        +
      • +
      + + + +
        +
      • +

        getConstructor

        +
        public ReflectionUtils.RefConstructor getConstructor(java.lang.Object... types)
        +
        get existing constructor by types
        +
        +
        Parameters:
        +
        types - parameters. can be Class or RefClass
        +
        Returns:
        +
        RefMethod object
        +
        Throws:
        +
        java.lang.RuntimeException - if constructor not found
        +
        +
      • +
      + + + +
        +
      • +

        findMethod

        +
        public ReflectionUtils.RefMethod findMethod(java.lang.Object... types)
        +
        find method by type parameters
        +
        +
        Parameters:
        +
        types - parameters. can be Class or RefClass
        +
        Returns:
        +
        RefMethod object
        +
        Throws:
        +
        java.lang.RuntimeException - if method not found
        +
        +
      • +
      + + + +
        +
      • +

        findMethodByName

        +
        public ReflectionUtils.RefMethod findMethodByName(java.lang.String... names)
        +
        find method by name
        +
        +
        Parameters:
        +
        names - possible names of method
        +
        Returns:
        +
        RefMethod object
        +
        Throws:
        +
        java.lang.RuntimeException - if method not found
        +
        +
      • +
      + + + +
        +
      • +

        findMethodByReturnType

        +
        public ReflectionUtils.RefMethod findMethodByReturnType(ReflectionUtils.RefClass type)
        +
        find method by return value
        +
        +
        Parameters:
        +
        type - type of returned value
        +
        Returns:
        +
        RefMethod
        +
        Throws:
        +
        java.lang.RuntimeException - if method not found
        +
        +
      • +
      + + + +
        +
      • +

        findMethodByReturnType

        +
        public ReflectionUtils.RefMethod findMethodByReturnType(java.lang.Class type)
        +
        find method by return value
        +
        +
        Parameters:
        +
        type - type of returned value
        +
        Returns:
        +
        RefMethod
        +
        Throws:
        +
        java.lang.RuntimeException - if method not found
        +
        +
      • +
      + + + +
        +
      • +

        findConstructor

        +
        public ReflectionUtils.RefConstructor findConstructor(int number)
        +
        find constructor by number of arguments
        +
        +
        Parameters:
        +
        number - number of arguments
        +
        Returns:
        +
        RefConstructor
        +
        Throws:
        +
        java.lang.RuntimeException - if constructor not found
        +
        +
      • +
      + + + +
        +
      • +

        getField

        +
        public ReflectionUtils.RefField getField(java.lang.String name)
        +
        get field by name
        +
        +
        Parameters:
        +
        name - field name
        +
        Returns:
        +
        RefField
        +
        Throws:
        +
        java.lang.RuntimeException - if field not found
        +
        +
      • +
      + + + + + + + +
        +
      • +

        findField

        +
        public ReflectionUtils.RefField findField(java.lang.Class type)
        +
        find field by type
        +
        +
        Parameters:
        +
        type - field type
        +
        Returns:
        +
        RefField
        +
        Throws:
        +
        java.lang.RuntimeException - if field not found
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html new file mode 100644 index 000000000..9fbbaa4a3 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html @@ -0,0 +1,293 @@ + + + + + + ReflectionUtils.RefConstructor + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ReflectionUtils.RefConstructor

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ReflectionUtils
    +
    +
    +
    +
    public static class ReflectionUtils.RefConstructor
    +extends java.lang.Object
    +
    Constructor wrapper
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectcreate(java.lang.Object... params) + +
      create new instance with constructor
      +
      java.lang.reflect.ConstructorgetRealConstructor()  +
      ReflectionUtils.RefClass + getRefClass()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getRealConstructor

        +
        public java.lang.reflect.Constructor getRealConstructor()
        +
        +
        Returns:
        +
        passed constructor
        +
        +
      • +
      + + + + + + + +
        +
      • +

        create

        +
        public java.lang.Object create(java.lang.Object... params)
        +
        create new instance with constructor
        +
        +
        Parameters:
        +
        params - parameters for constructor
        +
        Returns:
        +
        new object
        +
        Throws:
        +
        java.lang.RuntimeException - if something went wrong
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html new file mode 100644 index 000000000..049d9331a --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html @@ -0,0 +1,308 @@ + + + + + + ReflectionUtils.RefField.RefExecutor + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ReflectionUtils.RefField.RefExecutor

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ReflectionUtils.RefField
    +
    +
    +
    +
    public class ReflectionUtils.RefField.RefExecutor
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectget() + +
      get field value for applied object
      +
      voidset(java.lang.Object param) + +
      set field value for applied object
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ReflectionUtils.RefField.RefExecutor

        +
        public ReflectionUtils.RefField.RefExecutor(java.lang.Object e)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        set

        +
        public void set(java.lang.Object param)
        +
        set field value for applied object
        +
        +
        Parameters:
        +
        param - value
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public java.lang.Object get()
        +
        get field value for applied object
        +
        +
        Returns:
        +
        value of field
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html new file mode 100644 index 000000000..d9482bfb8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html @@ -0,0 +1,343 @@ + + + + + + ReflectionUtils.RefField + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ReflectionUtils.RefField

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ReflectionUtils
    +
    +
    +
    +
    public static class ReflectionUtils.RefField
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getRealField

        +
        public java.lang.reflect.Field getRealField()
        +
        +
        Returns:
        +
        passed field
        +
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        of

        +
        public ReflectionUtils.RefField.RefExecutor of(java.lang.Object e)
        +
        apply fiend for object
        +
        +
        Parameters:
        +
        e - applied object
        +
        Returns:
        +
        RefExecutor with getter and setter
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html new file mode 100644 index 000000000..86858badc --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html @@ -0,0 +1,291 @@ + + + + + + ReflectionUtils.RefMethod.RefExecutor + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class + ReflectionUtils.RefMethod.RefExecutor

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ReflectionUtils.RefMethod
    +
    +
    +
    +
    public class ReflectionUtils.RefMethod.RefExecutor
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectcall(java.lang.Object... params) + +
      apply method for selected object
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ReflectionUtils.RefMethod.RefExecutor

        +
        public ReflectionUtils.RefMethod.RefExecutor(java.lang.Object e)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        call

        +
        public java.lang.Object call(java.lang.Object... params)
        +
        apply method for selected object
        +
        +
        Parameters:
        +
        params - sent parameters
        +
        Returns:
        +
        return value
        +
        Throws:
        +
        java.lang.RuntimeException - if something went wrong
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html new file mode 100644 index 000000000..d9fa4d42f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html @@ -0,0 +1,368 @@ + + + + + + ReflectionUtils.RefMethod + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ReflectionUtils.RefMethod

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ReflectionUtils
    +
    +
    +
    +
    public static class ReflectionUtils.RefMethod
    +extends java.lang.Object
    +
    Method wrapper
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getRealMethod

        +
        public java.lang.reflect.Method getRealMethod()
        +
        +
        Returns:
        +
        passed method
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getReturnRefClass

        +
        public ReflectionUtils.RefClass getReturnRefClass()
        +
        +
        Returns:
        +
        class of method return type
        +
        +
      • +
      + + + +
        +
      • +

        of

        +
        public ReflectionUtils.RefMethod.RefExecutor of(java.lang.Object e)
        +
        apply method to object
        +
        +
        Parameters:
        +
        e - object to which the method is applied
        +
        Returns:
        +
        RefExecutor with method call(...)
        +
        +
      • +
      + + + +
        +
      • +

        call

        +
        public java.lang.Object call(java.lang.Object... params)
        +
        call static method
        +
        +
        Parameters:
        +
        params - sent parameters
        +
        Returns:
        +
        return value
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html new file mode 100644 index 000000000..cc3548d50 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html @@ -0,0 +1,395 @@ + + + + + + ReflectionUtils + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class ReflectionUtils

+
+
+ +
+
    +
  • +
    +
    +
    public class ReflectionUtils
    +extends java.lang.Object
    +
    +
    Version:
    +
    1.0
    +
    Author:
    +
    DPOH-VAR
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        ReflectionUtils

        +
        public ReflectionUtils()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        isForge

        +
        public static boolean isForge()
        +
        +
        Returns:
        +
        true if server has forge classes
        +
        +
      • +
      + + + +
        +
      • +

        getRefClass

        +
        public static ReflectionUtils.RefClass getRefClass(java.lang.String... classes)
        +
        Get class for name. Replace {nms} to net.minecraft.server.V*. Replace + {cb} to org.bukkit.craftbukkit.V*. Replace {nm} to net.minecraft +
        +
        +
        Parameters:
        +
        classes - possible class paths
        +
        Returns:
        +
        RefClass object
        +
        Throws:
        +
        java.lang.RuntimeException - if no class found
        +
        +
      • +
      + + + +
        +
      • +

        getRefClass

        +
        public static ReflectionUtils.RefClass getRefClass(java.lang.Class clazz)
        +
        get RefClass object by real class
        +
        +
        Parameters:
        +
        clazz - class
        +
        Returns:
        +
        RefClass based on passed class
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html new file mode 100644 index 000000000..54ed50907 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html @@ -0,0 +1,298 @@ + + + + + + SchematicHandler.DataCollection + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class SchematicHandler.DataCollection

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    SchematicHandler
    +
    +
    +
    +
    public static class SchematicHandler.DataCollection
    +extends java.lang.Object
    +
    Schematic Data Collection
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      shortgetBlock()  +
      bytegetData()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SchematicHandler.DataCollection

        +
        public SchematicHandler.DataCollection(short block,
        +                               byte data)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getBlock

        +
        public short getBlock()
        +
      • +
      + + + +
        +
      • +

        getData

        +
        public byte getData()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html new file mode 100644 index 000000000..b0ee7be16 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html @@ -0,0 +1,315 @@ + + + + + + SchematicHandler.Dimension + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class SchematicHandler.Dimension

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    SchematicHandler
    +
    +
    +
    +
    public static class SchematicHandler.Dimension
    +extends java.lang.Object
    +
    Schematic Dimensions
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intgetX()  +
      intgetY()  +
      intgetZ()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SchematicHandler.Dimension

        +
        public SchematicHandler.Dimension(int x,
        +                          int y,
        +                          int z)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getX

        +
        public int getX()
        +
      • +
      + + + +
        +
      • +

        getY

        +
        public int getY()
        +
      • +
      + + + +
        +
      • +

        getZ

        +
        public int getZ()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html new file mode 100644 index 000000000..922b6b418 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html @@ -0,0 +1,331 @@ + + + + + + SchematicHandler.Schematic + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class SchematicHandler.Schematic

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    SchematicHandler
    +
    +
    +
    +
    public static class SchematicHandler.Schematic
    +extends java.lang.Object
    +
    Schematic Class
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html new file mode 100644 index 000000000..98b05d1d0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html @@ -0,0 +1,467 @@ + + + + + + SchematicHandler + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class SchematicHandler

+
+
+ +
+
    +
  • +
    +
    +
    public class SchematicHandler
    +extends java.lang.Object
    +
    Schematic Handler
    +
    +
    Author:
    +
    Citymonstret, Empire92
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SchematicHandler()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static CompoundTaggetCompoundTag(org.bukkit.World world, + PlotId id) + +
      Gets the schematic of a plot
      +
      static SchematicHandler.Schematic + getSchematic(java.lang.String name) + +
      Get a schematic
      +
      static booleanpaste(org.bukkit.Location location, + SchematicHandler.Schematic schematic, + Plot plot, + int x_offset, + int z_offset) + +
      Paste a schematic
      +
      static booleanpastePart(org.bukkit.World world, + SchematicHandler.DataCollection[] blocks, + org.bukkit.Location l1, + int x_offset, + int z_offset, + int i1, + int i2, + int WIDTH, + int LENGTH) 
      static booleansave(CompoundTag tag, + java.lang.String path) + +
      Saves a schematic to a file path
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SchematicHandler

        +
        public SchematicHandler()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        paste

        +
        public static boolean paste(org.bukkit.Location location,
        +            SchematicHandler.Schematic schematic,
        +            Plot plot,
        +            int x_offset,
        +            int z_offset)
        +
        Paste a schematic
        +
        +
        Parameters:
        +
        location - origin
        +
        schematic - schematic to paste
        +
        plot - plot to paste in
        +
        Returns:
        +
        true if succeeded
        +
        +
      • +
      + + + +
        +
      • +

        getSchematic

        +
        public static SchematicHandler.Schematic getSchematic(java.lang.String name)
        +
        Get a schematic
        +
        +
        Parameters:
        +
        name - to check
        +
        Returns:
        +
        schematic if found, else null
        +
        +
      • +
      + + + +
        +
      • +

        save

        +
        public static boolean save(CompoundTag tag,
        +           java.lang.String path)
        +
        Saves a schematic to a file path
        +
        +
        Parameters:
        +
        tag - to save
        +
        path - to save in
        +
        Returns:
        +
        true if succeeded
        +
        +
      • +
      + + + +
        +
      • +

        getCompoundTag

        +
        public static CompoundTag getCompoundTag(org.bukkit.World world,
        +                         PlotId id)
        +
        Gets the schematic of a plot
        +
        +
        Parameters:
        +
        world - to check
        +
        id - plot
        +
        Returns:
        +
        tag
        +
        +
      • +
      + + + +
        +
      • +

        pastePart

        +
        public static boolean pastePart(org.bukkit.World world,
        +                SchematicHandler.DataCollection[] blocks,
        +                org.bukkit.Location l1,
        +                int x_offset,
        +                int z_offset,
        +                int i1,
        +                int i2,
        +                int WIDTH,
        +                int LENGTH)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html new file mode 100644 index 000000000..b694a1906 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html @@ -0,0 +1,309 @@ + + + + + + SetBlockFast + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class SetBlockFast

+
+
+ +
+
    +
  • +
    +
    +
    public class SetBlockFast
    +extends java.lang.Object
    +
    SetBlockFast class
    + Used to do fast world editing +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      SetBlockFast()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static booleanset(org.bukkit.World world, + int x, + int y, + int z, + int blockId, + byte data) 
      static voidupdate(org.bukkit.entity.Player player)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        SetBlockFast

        +
        public SetBlockFast()
        +             throws java.lang.NoSuchMethodException
        +
        +
        Throws:
        +
        java.lang.NoSuchMethodException
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        set

        +
        public static boolean set(org.bukkit.World world,
        +          int x,
        +          int y,
        +          int z,
        +          int blockId,
        +          byte data)
        +                   throws java.lang.NoSuchMethodException
        +
        +
        Throws:
        +
        java.lang.NoSuchMethodException
        +
        +
      • +
      + + + +
        +
      • +

        update

        +
        public static void update(org.bukkit.entity.Player player)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html new file mode 100644 index 000000000..563f6cdf0 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html @@ -0,0 +1,413 @@ + + + + + + StringComparison + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class StringComparison

+
+
+ +
+
    +
  • +
    +
    +
    public class StringComparison
    +extends java.lang.Object
    +
    String comparison library
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      StringComparison(java.lang.String input, + java.lang.Object[] objects) + +
      Constructor
      +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static doublecompare(java.lang.String s1, + java.lang.String s2) + +
      Compare two strings
      +
      java.lang.StringgetBestMatch() + +
      Get the best match value
      +
      java.lang.Object[]getBestMatchAdvanced() + +
      Will return both the match number, and the actual match string
      +
      java.lang.ObjectgetMatchObject() + +
      Get the object
      +
      static java.lang.String[]sLetterPair(java.lang.String s) + +
      Get an array containing letter pairs
      +
      static java.util.ArrayListwLetterPair(java.lang.String s) + +
      Create an ArrayList containing pairs of letters
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        StringComparison

        +
        public StringComparison(java.lang.String input,
        +                java.lang.Object[] objects)
        +
        Constructor
        +
        +
        Parameters:
        +
        input - Input Base Value
        +
        objects - Objects to compare
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        compare

        +
        public static double compare(java.lang.String s1,
        +             java.lang.String s2)
        +
        Compare two strings
        +
        +
        Parameters:
        +
        s1 - String Base
        +
        s2 - Object
        +
        Returns:
        +
        match
        +
        +
      • +
      + + + +
        +
      • +

        wLetterPair

        +
        public static java.util.ArrayList wLetterPair(java.lang.String s)
        +
        Create an ArrayList containing pairs of letters
        +
        +
        Parameters:
        +
        s - string to split
        +
        Returns:
        +
        ArrayList
        +
        +
      • +
      + + + +
        +
      • +

        sLetterPair

        +
        public static java.lang.String[] sLetterPair(java.lang.String s)
        +
        Get an array containing letter pairs
        +
        +
        Parameters:
        +
        s - string to split
        +
        Returns:
        +
        Array
        +
        +
      • +
      + + + +
        +
      • +

        getMatchObject

        +
        public java.lang.Object getMatchObject()
        +
        Get the object
        +
        +
        Returns:
        +
        match object
        +
        +
      • +
      + + + +
        +
      • +

        getBestMatch

        +
        public java.lang.String getBestMatch()
        +
        Get the best match value
        +
        +
        Returns:
        +
        match value
        +
        +
      • +
      + + + +
        +
      • +

        getBestMatchAdvanced

        +
        public java.lang.Object[] getBestMatchAdvanced()
        +
        Will return both the match number, and the actual match string
        +
        +
        Returns:
        +
        object[] containing: double, String
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html new file mode 100644 index 000000000..75ef60bd8 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html @@ -0,0 +1,451 @@ + + + + + + UUIDHandler + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.util
+

Class UUIDHandler

+
+
+ +
+
    +
  • +
    +
    +
    public class UUIDHandler
    +extends java.lang.Object
    +
    This class can be used to efficiently translate UUIDs and names back and + forth. + It uses three primary methods of achieving this: + - Read From Cache + - Read from OfflinePlayer objects + - Read from (if onlinemode: mojang api) (else: playername hashing) + All UUIDs/Usernames will be stored in a map (cache) until the server is + restarted. +

    + You can use getUuidMap() to save the uuids/names to a file (SQLite db for + example). + Primary methods: getUUID(String name) & getName(UUID uuid) <-- You should + ONLY use these. + Call startFetch(JavaPlugin plugin) in your onEnable(). +

    + Originally created by: +

    +
    +
    Author:
    +
    Citymonstret, Empire92 + for PlotSquared. +
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      UUIDHandler()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidadd(StringWrapper name, + java.util.UUID uuid) + +
      Add a set to the cache
      +
      static java.lang.StringgetName(java.util.UUID uuid)  +
      static java.util.UUIDgetUUID(java.lang.String name)  +
      static com.google.common.collect.BiMap<StringWrapper,java.util.UUID> + getUuidMap() + +
      Get the map containing all names/uuids
      +
      static voidhandleSaving() + +
      Handle saving of uuids
      +
      static booleannameExists(StringWrapper name) + +
      Check if a name is cached
      +
      static booleanuuidExists(java.util.UUID uuid) + +
      Check if a uuid is cached
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        UUIDHandler

        +
        public UUIDHandler()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getUuidMap

        +
        public static com.google.common.collect.BiMap<StringWrapper,java.util.UUID> getUuidMap()
        +
        Get the map containing all names/uuids
        +
        +
        Returns:
        +
        map with names + uuids
        +
        +
      • +
      + + + +
        +
      • +

        uuidExists

        +
        public static boolean uuidExists(java.util.UUID uuid)
        +
        Check if a uuid is cached
        +
        +
        Parameters:
        +
        uuid - to check
        +
        Returns:
        +
        true of the uuid is cached
        +
        +
      • +
      + + + +
        +
      • +

        nameExists

        +
        public static boolean nameExists(StringWrapper name)
        +
        Check if a name is cached
        +
        +
        Parameters:
        +
        name - to check
        +
        Returns:
        +
        true of the name is cached
        +
        +
      • +
      + + + +
        +
      • +

        add

        +
        public static void add(StringWrapper name,
        +       java.util.UUID uuid)
        +
        Add a set to the cache
        +
        +
        Parameters:
        +
        name - to cache
        +
        uuid - to cache
        +
        +
      • +
      + + + +
        +
      • +

        getUUID

        +
        public static java.util.UUID getUUID(java.lang.String name)
        +
        +
        Parameters:
        +
        name - to use as key
        +
        Returns:
        +
        uuid
        +
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public static java.lang.String getName(java.util.UUID uuid)
        +
        +
        Parameters:
        +
        uuid - to use as key
        +
        Returns:
        +
        Name
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html new file mode 100644 index 000000000..b49c9d730 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html @@ -0,0 +1,76 @@ + + + + + + com.intellectualcrafters.plot.util + + + + +

com.intellectualcrafters.plot.util +

+ +
+

Classes

+ +

Enums

+ +

Exceptions

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html new file mode 100644 index 000000000..c623e5870 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html @@ -0,0 +1,337 @@ + + + + + + com.intellectualcrafters.plot.util + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.util

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html new file mode 100644 index 000000000..68dcdc88c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html @@ -0,0 +1,264 @@ + + + + + + com.intellectualcrafters.plot.util Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.util

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html new file mode 100644 index 000000000..bff48882f --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html @@ -0,0 +1,287 @@ + + + + + + NameFetcher + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.uuid
+

Class NameFetcher

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.util.concurrent.Callable<java.util.Map<java.util.UUID,java.lang.String>>
    +
    +
    +
    +
    public class NameFetcher
    +extends java.lang.Object
    +implements java.util.concurrent.Callable<java.util.Map<java.util.UUID,java.lang.String>>
    +
    Name Fetcher Class + From Bukkit +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      NameFetcher(java.util.List<java.util.UUID> uuids)  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.Map<java.util.UUID,java.lang.String> + call()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        NameFetcher

        +
        public NameFetcher(java.util.List<java.util.UUID> uuids)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        call

        +
        public java.util.Map<java.util.UUID,java.lang.String> call()
        +                                                    throws java.lang.Exception
        +
        +
        Specified by:
        +
        call in interface java.util.concurrent.Callable<java.util.Map<java.util.UUID,java.lang.String>> +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html new file mode 100644 index 000000000..f2269ed67 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html @@ -0,0 +1,453 @@ + + + + + + PlotUUIDSaver + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.uuid
+

Class PlotUUIDSaver

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    UUIDSaver
    +
    +
    +
    +
    public class PlotUUIDSaver
    +extends java.lang.Object
    +implements UUIDSaver
    +
    Plot UUID Saver/Fetcher
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PlotUUIDSaver()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      UUIDSetget(java.lang.String name)  +
      UUIDSetget(java.util.UUID uuid)  +
      voidglobalPopulate()  +
      voidglobalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> map)  +
      java.lang.StringmojangName(java.util.UUID uuid)  +
      java.util.UUIDmojangUUID(java.lang.String name)  +
      voidsave(UUIDSet set)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        PlotUUIDSaver

        +
        public PlotUUIDSaver()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        globalPopulate

        +
        public void globalPopulate()
        +
        +
        Specified by:
        +
        globalPopulate in + interface UUIDSaver +
        +
        +
      • +
      + + + +
        +
      • +

        globalSave

        +
        public void globalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> map)
        +
        +
        Specified by:
        +
        globalSave in + interface UUIDSaver +
        +
        +
      • +
      + + + +
        +
      • +

        save

        +
        public void save(UUIDSet set)
        +
        +
        Specified by:
        +
        save in + interface UUIDSaver +
        +
        +
      • +
      + + + +
        +
      • +

        mojangUUID

        +
        public java.util.UUID mojangUUID(java.lang.String name)
        +                          throws java.lang.Exception
        +
        +
        Specified by:
        +
        mojangUUID in + interface UUIDSaver +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      + + + +
        +
      • +

        mojangName

        +
        public java.lang.String mojangName(java.util.UUID uuid)
        +                            throws java.lang.Exception
        +
        +
        Specified by:
        +
        mojangName in + interface UUIDSaver +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public UUIDSet get(java.lang.String name)
        +
        +
        Specified by:
        +
        get in + interface UUIDSaver +
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public UUIDSet get(java.util.UUID uuid)
        +
        +
        Specified by:
        +
        get in + interface UUIDSaver +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html new file mode 100644 index 000000000..1f5f6a55c --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html @@ -0,0 +1,369 @@ + + + + + + UUIDFetcher + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.uuid
+

Class UUIDFetcher

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.util.concurrent.Callable<java.util.Map<java.lang.String,java.util.UUID>>
    +
    +
    +
    +
    public class UUIDFetcher
    +extends java.lang.Object
    +implements java.util.concurrent.Callable<java.util.Map<java.lang.String,java.util.UUID>>
    +
    UUID Fetcher + From Bukkit +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      UUIDFetcher(java.util.List<java.lang.String> names)  +
      UUIDFetcher(java.util.List<java.lang.String> names, + boolean rateLimiting) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.util.Map<java.lang.String,java.util.UUID> + call()  +
      static java.util.UUIDfromBytes(byte[] array)  +
      static java.util.UUIDgetUUID(java.lang.String id)  +
      static java.util.UUIDgetUUIDOf(java.lang.String name)  +
      static byte[]toBytes(java.util.UUID uuid)  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        UUIDFetcher

        +
        public UUIDFetcher(java.util.List<java.lang.String> names,
        +           boolean rateLimiting)
        +
      • +
      + + + +
        +
      • +

        UUIDFetcher

        +
        public UUIDFetcher(java.util.List<java.lang.String> names)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getUUID

        +
        public static java.util.UUID getUUID(java.lang.String id)
        +
      • +
      + + + +
        +
      • +

        toBytes

        +
        public static byte[] toBytes(java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        fromBytes

        +
        public static java.util.UUID fromBytes(byte[] array)
        +
      • +
      + + + +
        +
      • +

        getUUIDOf

        +
        public static java.util.UUID getUUIDOf(java.lang.String name)
        +                                throws java.lang.Exception
        +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      + + + +
        +
      • +

        call

        +
        public java.util.Map<java.lang.String,java.util.UUID> call()
        +                                                    throws java.lang.Exception
        +
        +
        Specified by:
        +
        call in interface java.util.concurrent.Callable<java.util.Map<java.lang.String,java.util.UUID>> +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html new file mode 100644 index 000000000..067bdb080 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html @@ -0,0 +1,338 @@ + + + + + + UUIDSaver + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.uuid
+

Interface UUIDSaver

+
+
+
+
    +
  • +
    +
    All Known Implementing Classes:
    +
    PlotUUIDSaver
    +
    +
    +
    +
    public interface UUIDSaver
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      UUIDSetget(java.lang.String name)  +
      UUIDSetget(java.util.UUID uuid)  +
      voidglobalPopulate()  +
      voidglobalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> biMap)  +
      java.lang.StringmojangName(java.util.UUID uuid)  +
      java.util.UUIDmojangUUID(java.lang.String name)  +
      voidsave(UUIDSet set)  +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        globalPopulate

        +
        void globalPopulate()
        +
      • +
      + + + +
        +
      • +

        globalSave

        +
        void globalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> biMap)
        +
      • +
      + + + +
        +
      • +

        save

        +
        void save(UUIDSet set)
        +
      • +
      + + + +
        +
      • +

        get

        +
        UUIDSet get(java.lang.String name)
        +
      • +
      + + + +
        +
      • +

        get

        +
        UUIDSet get(java.util.UUID uuid)
        +
      • +
      + + + +
        +
      • +

        mojangUUID

        +
        java.util.UUID mojangUUID(java.lang.String name)
        +                          throws java.lang.Exception
        +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      + + + +
        +
      • +

        mojangName

        +
        java.lang.String mojangName(java.util.UUID uuid)
        +                            throws java.lang.Exception
        +
        +
        Throws:
        +
        java.lang.Exception
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html new file mode 100644 index 000000000..3ee79dd72 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html @@ -0,0 +1,309 @@ + + + + + + UUIDSet + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualcrafters.plot.uuid
+

Class UUIDSet

+
+
+ +
+
    +
  • +
    +
    +
    public class UUIDSet
    +extends java.lang.Object
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      UUIDSet(java.lang.String name, + java.util.UUID uuid) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetName()  +
      java.util.UUIDgetUUID()  +
      java.lang.StringtoString()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        UUIDSet

        +
        public UUIDSet(java.lang.String name,
        +       java.util.UUID uuid)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        getUUID

        +
        public java.util.UUID getUUID()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html new file mode 100644 index 000000000..b6a0cc2b5 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html @@ -0,0 +1,33 @@ + + + + + + com.intellectualcrafters.plot.uuid + + + + +

com.intellectualcrafters.plot.uuid +

+ +
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html new file mode 100644 index 000000000..73a5144c6 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html @@ -0,0 +1,177 @@ + + + + + + com.intellectualcrafters.plot.uuid + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualcrafters.plot.uuid

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html new file mode 100644 index 000000000..880906b85 --- /dev/null +++ b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html @@ -0,0 +1,153 @@ + + + + + + com.intellectualcrafters.plot.uuid Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualcrafters.plot.uuid

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/Translation.html b/PlotSquared/doc/com/intellectualsites/translation/Translation.html new file mode 100644 index 000000000..14a8bb353 --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/Translation.html @@ -0,0 +1,235 @@ + + + + + + Translation + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Annotation Type Translation

+
+
+
+
    +
  • +
    +
    +
    @Retention(value=RUNTIME)
    +@Target(value=FIELD)
    +public @interface Translation
    +
    Translation annotation
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Optional Element Summary

      + + + + + + + + + + + + + + +
      Optional Elements 
      Modifier and TypeOptional Element and Description
      java.lang.StringcreationDescription  +
      java.lang.Stringdescription  +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Element Detail

      + + + +
        +
      • +

        description

        +
        public abstract java.lang.String description
        +
        +
        Default:
        +
        ""
        +
        +
      • +
      + + + +
        +
      • +

        creationDescription

        +
        public abstract java.lang.String creationDescription
        +
        +
        Default:
        +
        ""
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html new file mode 100644 index 000000000..0ccda8246 --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html @@ -0,0 +1,326 @@ + + + + + + TranslationAsset + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Class TranslationAsset

+
+
+ +
+
    +
  • +
    +
    +
    public class TranslationAsset
    +extends java.lang.Object
    +
    Asset
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html new file mode 100644 index 000000000..41034799b --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html @@ -0,0 +1,364 @@ + + + + + + TranslationFile + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Class TranslationFile

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    YamlTranslationFile
    +
    +
    +
    +
    public abstract class TranslationFile
    +extends java.lang.Object
    +
    Abstract TranslationFile
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TranslationFile()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      abstract voidadd(java.lang.String key, + java.lang.String value) + +
      Add a value
      +
      abstract TranslationLanguage + getLanguage() + +
      A method used to get the language of the file
      +
      abstract TranslationFile + read() + +
      Read from the file
      +
      abstract voidsaveFile() + +
      Save the file
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        TranslationFile

        +
        public TranslationFile()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getLanguage

        +
        public abstract TranslationLanguage getLanguage()
        +
        A method used to get the language of the file
        +
        +
        Returns:
        +
        language
        +
        +
      • +
      + + + +
        +
      • +

        saveFile

        +
        public abstract void saveFile()
        +
        Save the file
        +
      • +
      + + + +
        +
      • +

        read

        +
        public abstract TranslationFile read()
        +
        Read from the file
        +
        +
        Returns:
        +
        instance
        +
        +
      • +
      + + + +
        +
      • +

        add

        +
        public abstract void add(java.lang.String key,
        +       java.lang.String value)
        +
        Add a value
        +
        +
        Parameters:
        +
        key - name
        +
        value - value
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html new file mode 100644 index 000000000..08cd7432f --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html @@ -0,0 +1,450 @@ + + + + + + TranslationLanguage + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Class TranslationLanguage

+
+
+ +
+
    +
  • +
    +
    +
    public class TranslationLanguage
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        TranslationLanguage

        +
        public TranslationLanguage(java.lang.String friendlyName,
        +                   java.lang.String countryCode,
        +                   java.lang.String languageCode)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public java.lang.String getName()
        +
      • +
      + + + +
        +
      • +

        getCountryCode

        +
        public java.lang.String getCountryCode()
        +
      • +
      + + + +
        +
      • +

        getLanguageCode

        +
        public java.lang.String getLanguageCode()
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html new file mode 100644 index 000000000..c02a5ba6b --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html @@ -0,0 +1,685 @@ + + + + + + TranslationManager + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Class TranslationManager

+
+
+ +
+
    +
  • +
    +
    +
    public class TranslationManager
    +extends java.lang.Object
    +
    Translation Manager Main class
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html new file mode 100644 index 000000000..9a0dcc249 --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html @@ -0,0 +1,322 @@ + + + + + + TranslationObject + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Class TranslationObject

+
+
+ +
+
    +
  • +
    +
    +
    public class TranslationObject
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TranslationObject(java.lang.String key, + java.lang.String defaultValue, + java.lang.String description, + java.lang.String creationDescription) 
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetCreationDescription()  +
      java.lang.StringgetDefaultValue()  +
      java.lang.StringgetDescription()  +
      java.lang.StringgetKey()  +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        TranslationObject

        +
        public TranslationObject(java.lang.String key,
        +                 java.lang.String defaultValue,
        +                 java.lang.String description,
        +                 java.lang.String creationDescription)
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        getKey

        +
        public java.lang.String getKey()
        +
      • +
      + + + +
        +
      • +

        getDefaultValue

        +
        public java.lang.String getDefaultValue()
        +
      • +
      + + + +
        +
      • +

        getDescription

        +
        public java.lang.String getDescription()
        +
      • +
      + + + +
        +
      • +

        getCreationDescription

        +
        public java.lang.String getCreationDescription()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html b/PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html new file mode 100644 index 000000000..1124f409a --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html @@ -0,0 +1,514 @@ + + + + + + YamlTranslationFile + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation
+

Class YamlTranslationFile

+
+
+ +
+
    +
  • +
    +
    +
    public class YamlTranslationFile
    +extends TranslationFile
    +
    The YAML implementation of TranslationFile + Relies heavily on SnakeYAML +
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidadd(java.lang.String key, + java.lang.String value) + +
      Add a translation
      +
      YamlTranslationFile + fancyHeader(java.lang.String... header) + +
      Set a fancy header
      +
      TranslationLanguage + getLanguage() + +
      Get the translation language
      +
      org.yaml.snakeyaml.YamlgetYaml() + +
      Get the YAML object
      +
      YamlTranslationFile + header(java.lang.String... header) + +
      Set the header
      +
      YamlTranslationFile + read() + +
      Read the file
      +
      voidreload() + +
      Reload
      +
      voidsaveFile() + +
      Save the file
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, + wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        YamlTranslationFile

        +
        public YamlTranslationFile(java.io.File path,
        +                   TranslationLanguage language,
        +                   java.lang.String name,
        +                   TranslationManager manager)
        +
        Constructor
        +
        +
        Parameters:
        +
        path - save path
        +
        language - translation language
        +
        name - project name
        +
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        reload

        +
        public void reload()
        +
        Reload
        +
      • +
      + + + +
        +
      • +

        header

        +
        public YamlTranslationFile header(java.lang.String... header)
        +
        Set the header
        +
        +
        Parameters:
        +
        header - Comment header
        +
        Returns:
        +
        instance
        +
        +
      • +
      + + + +
        +
      • +

        fancyHeader

        +
        public YamlTranslationFile fancyHeader(java.lang.String... header)
        +
        Set a fancy header
        +
        +
        Parameters:
        +
        header - Comment header
        +
        Returns:
        +
        instance
        +
        +
      • +
      + + + +
        +
      • +

        add

        +
        public void add(java.lang.String key,
        +       java.lang.String value)
        +
        Add a translation
        +
        +
        Specified by:
        +
        add in + class TranslationFile +
        +
        Parameters:
        +
        key - translation name
        +
        value - translation value
        +
        +
      • +
      + + + + + + + +
        +
      • +

        saveFile

        +
        public void saveFile()
        +
        Save the file
        +
        +
        Specified by:
        +
        saveFile in + class TranslationFile +
        +
        +
      • +
      + + + +
        +
      • +

        getYaml

        +
        public org.yaml.snakeyaml.Yaml getYaml()
        +
        Get the YAML object
        +
        +
        Returns:
        +
        yaml object with correct settings
        +
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html new file mode 100644 index 000000000..fa17c4aeb --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html @@ -0,0 +1,364 @@ + + + + + + BukkitTranslation + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation.bukkit
+

Class BukkitTranslation

+
+
+ +
+
    +
  • +
    +
    +
    public class BukkitTranslation
    +extends java.lang.Object
    +
    +
    Author:
    +
    Citymonstret
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      BukkitTranslation()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidaddMaterials(TranslationManager manager) + +
      Add material names to the translation list + Will default to a somewhat friendly name +
      +
      static java.lang.Stringconvert(TranslationAsset asset) + +
      Get the converted string
      +
      TranslationLanguage + getDefaultLanguage() + +
      The default translation language
      +
      static java.io.FilegetParent(org.bukkit.plugin.java.JavaPlugin plugin) + +
      Get the universal parent based on the plugin data folder
      +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, + wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        BukkitTranslation

        +
        public BukkitTranslation()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        convert

        +
        public static java.lang.String convert(TranslationAsset asset)
        +
        Get the converted string
        +
        +
        Parameters:
        +
        asset - asset
        +
        Returns:
        +
        converted asset
        +
        +
      • +
      + + + +
        +
      • +

        getParent

        +
        public static java.io.File getParent(org.bukkit.plugin.java.JavaPlugin plugin)
        +
        Get the universal parent based on the plugin data folder
        +
        +
        Parameters:
        +
        plugin - to check
        +
        Returns:
        +
        parent folder
        +
        +
      • +
      + + + +
        +
      • +

        getDefaultLanguage

        +
        public TranslationLanguage getDefaultLanguage()
        +
        The default translation language
        +
        +
        Returns:
        +
        default translation language
        +
        +
      • +
      + + + +
        +
      • +

        addMaterials

        +
        public static void addMaterials(TranslationManager manager)
        +
        Add material names to the translation list + Will default to a somewhat friendly name +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html new file mode 100644 index 000000000..4ebbf3eee --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html @@ -0,0 +1,338 @@ + + + + + + TranslationPlugin + + + + + + + +
+ + + + + +
+ + + +
+
com.intellectualsites.translation.bukkit
+

Class TranslationPlugin

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter, + org.bukkit.command.TabExecutor, org.bukkit.plugin.Plugin +
    +
    +
    +
    +
    public class TranslationPlugin
    +extends org.bukkit.plugin.java.JavaPlugin
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      TranslationPlugin()  +
      +
    • +
    + +
      +
    • + + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidonDisable()  +
      voidonEnable()  +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.plugin.java.JavaPlugin

        + getClassLoader, getCommand, getConfig, getDatabase, getDatabaseClasses, + getDataFolder, getDefaultWorldGenerator, getDescription, getFile, getLogger, + getPlugin, getPluginLoader, getProvidingPlugin, getResource, getServer, + getTextResource, initialize, installDDL, isEnabled, isInitialized, isNaggable, + onCommand, onLoad, onTabComplete, reloadConfig, removeDDL, saveConfig, + saveDefaultConfig, saveResource, setEnabled, setNaggable, toString
      • +
      +
        +
      • + + + +

        Methods inherited from class org.bukkit.plugin.PluginBase

        + equals, getName, hashCode
      • +
      +
        +
      • + + + +

        Methods inherited from class java.lang.Object

        + clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + + +

      Constructor Detail

      + + + +
        +
      • +

        TranslationPlugin

        +
        public TranslationPlugin()
        +
      • +
      +
    • +
    + +
      +
    • + + + +

      Method Detail

      + + + +
        +
      • +

        onEnable

        +
        public void onEnable()
        +
        +
        Specified by:
        +
        onEnable in + interface org.bukkit.plugin.Plugin
        +
        Overrides:
        +
        onEnable in + class org.bukkit.plugin.java.JavaPlugin
        +
        +
      • +
      + + + +
        +
      • +

        onDisable

        +
        public void onDisable()
        +
        +
        Specified by:
        +
        onDisable in + interface org.bukkit.plugin.Plugin
        +
        Overrides:
        +
        onDisable in class org.bukkit.plugin.java.JavaPlugin +
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html new file mode 100644 index 000000000..a82c2fced --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html @@ -0,0 +1,24 @@ + + + + + + com.intellectualsites.translation.bukkit + + + + +

com.intellectualsites.translation.bukkit +

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html new file mode 100644 index 000000000..29a5558b4 --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html @@ -0,0 +1,142 @@ + + + + + + com.intellectualsites.translation.bukkit + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualsites.translation.bukkit

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html new file mode 100644 index 000000000..045ffdee4 --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html @@ -0,0 +1,143 @@ + + + + + + com.intellectualsites.translation.bukkit Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualsites.translation.bukkit

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/package-frame.html b/PlotSquared/doc/com/intellectualsites/translation/package-frame.html new file mode 100644 index 000000000..109e14b12 --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/package-frame.html @@ -0,0 +1,37 @@ + + + + + + com.intellectualsites.translation + + + + +

com.intellectualsites.translation +

+ +
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/PlotSquared/doc/com/intellectualsites/translation/package-summary.html b/PlotSquared/doc/com/intellectualsites/translation/package-summary.html new file mode 100644 index 000000000..9546186df --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/package-summary.html @@ -0,0 +1,193 @@ + + + + + + com.intellectualsites.translation + + + + + + + +
+ + + + + +
+ + +
+

Package com.intellectualsites.translation

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/com/intellectualsites/translation/package-tree.html b/PlotSquared/doc/com/intellectualsites/translation/package-tree.html new file mode 100644 index 000000000..d2028a64f --- /dev/null +++ b/PlotSquared/doc/com/intellectualsites/translation/package-tree.html @@ -0,0 +1,162 @@ + + + + + + com.intellectualsites.translation Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package com.intellectualsites.translation

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/constant-values.html b/PlotSquared/doc/constant-values.html new file mode 100644 index 000000000..05ac4a72a --- /dev/null +++ b/PlotSquared/doc/constant-values.html @@ -0,0 +1,343 @@ + + + + + + Constant Field Values + + + + + + + +
+ + + + + +
+ + +
+

Constant Field Values

+ +

Contents

+ +
+
+ + + +

com.intellectualcrafters.*

+ + + + + +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/deprecated-list.html b/PlotSquared/doc/deprecated-list.html new file mode 100644 index 000000000..1c5827523 --- /dev/null +++ b/PlotSquared/doc/deprecated-list.html @@ -0,0 +1,177 @@ + + + + + + Deprecated List + + + + + + + +
+ + + + + +
+ + +
+

Deprecated API

+ +

Contents

+ +
+
+ + + + + + + +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/help-doc.html b/PlotSquared/doc/help-doc.html new file mode 100644 index 000000000..9082fec79 --- /dev/null +++ b/PlotSquared/doc/help-doc.html @@ -0,0 +1,250 @@ + + + + + + API Help + + + + + + + +
+ + + + + +
+ + +
+

How This API Document Is Organized

+ +
This API (Application Programming Interface) document has pages corresponding to the items in + the navigation bar, described as follows. +
+
+
+ + This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-1.html b/PlotSquared/doc/index-files/index-1.html new file mode 100644 index 000000000..cf2dd025d --- /dev/null +++ b/PlotSquared/doc/index-files/index-1.html @@ -0,0 +1,525 @@ + + + + + + A-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

A

+
+
AbstractDB - + Interface in com.intellectualcrafters.plot.database +
+
 
+
AbstractFlag - Class + in + com.intellectualcrafters.plot.flag +
+
+
Created 2014-09-23 for PlotSquared
+
+
AbstractFlag(String) + - Constructor for class com.intellectualcrafters.plot.flag.AbstractFlag
+
 
+
AbstractFlag(String, + FlagValue<?>) - Constructor for class com.intellectualcrafters.plot.flag.AbstractFlag
+
+
AbstractFlag is a parameter used in creating a new Flag
+
+
accumulate(String, + Object) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Accumulate values under a key.
+
+
add(Tag) + - Method in class com.intellectualcrafters.jnbt.ListTagBuilder
+
+
Add the given tag.
+
+
add(Logger.LogLevel, + String) - Static method in class com.intellectualcrafters.plot.util.Logger
+
 
+
add(StringWrapper, + UUID) - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
+
Add a set to the cache
+
+
add(String, + String) - Method in class com.intellectualsites.translation.TranslationFile
+
+
Add a value
+
+
add(String, + String) - Method in class com.intellectualsites.translation.YamlTranslationFile
+
+
Add a translation
+
+
addAll(Collection<? + extends Tag>) - Method in class com.intellectualcrafters.jnbt.ListTagBuilder
+
+
Add all the tags in the given list.
+
+
addComment(PlotComment) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
addDenied(UUID) + - Method in class com.intellectualcrafters.plot.object.Plot
+
+
Deny someone (use DBFunc.addDenied() as well)
+
+
addEntity(Entity, + Plot) - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
addFlag(AbstractFlag) + - Method in class com.intellectualcrafters.plot.api.PlotAPI
+
+
Register a flag for use in plots
+
+
addFlag(AbstractFlag) + - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
+
Register an AbstractFlag with PlotSquared
+
+
addFlag(Player, + World, Plot, String, String) - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
addFlag(Flag) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
addGraph(Metrics.Graph) + - Method in class com.intellectualcrafters.plot.util.Metrics
+
+
Add a Graph object to BukkitMetrics that represents data for the plugin + that should be sent to the backend +
+
+
addHelper(UUID) + - Method in class com.intellectualcrafters.plot.object.Plot
+
+
Add someone as a helper (use DBFunc as well)
+
+
addMaterials(TranslationManager) + - Static method in class com.intellectualsites.translation.bukkit.BukkitTranslation
+
+
Add material names to the translation list + Will default to a somewhat friendly name +
+
+
addPlotter(Metrics.Plotter) + - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
+
+
Add a plotter to the graph, which will be used to plot entries
+
+
addPlotWorld(String, + PlotWorld, PlotManager) - Method in class com.intellectualcrafters.plot.api.PlotAPI
+
+
Add a plot world
+
+
addPlotWorld(String, + PlotWorld, PlotManager) - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
addTranslation(TranslationObject, + TranslationAsset) - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
addTranslation(String, + TranslationAsset) - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
addTranslationObject(TranslationObject) + - Method in class com.intellectualsites.translation.TranslationManager
+
+
Add an object
+
+
addTrusted(UUID) + - Method in class com.intellectualcrafters.plot.object.Plot
+
+
Add someone as a trusted user (use DBFunc as well)
+
+
adjustWall(Player, + Plot, PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Adjusts a plot wall
+
+
adjustWallFilling(Player, + Plot, PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
ADMIN_PERMISSION + - Static variable in class com.intellectualcrafters.plot.api.PlotAPI
+
+
Permission that allows for admin access, + this permission node will allow the player + to use any part of the plugin, without limitations. +
+
+
ADMIN_PERMISSION + - Static variable in class com.intellectualcrafters.plot.PlotMain
+
 
+
alias - Variable in + class com.intellectualcrafters.plot.commands.SubCommand
+
+
Alias
+
+
aliases - Static variable + in class com.intellectualcrafters.plot.commands.Merge
+
 
+
aliases + - Static variable in class com.intellectualcrafters.plot.commands.Set
+
 
+
amount + - Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
+
 
+
AMP - Static + variable in class com.intellectualcrafters.json.XML +
+
+
The Character '&'.
+
+
API_URL - Static + variable in class com.intellectualcrafters.plot.config.Settings
+
+
API Location
+
+
APOS - Static + variable in class com.intellectualcrafters.json.XML +
+
+
The Character '''.
+
+
append(String, + Object) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Append values to the array under a key.
+
+
array() - + Method in class com.intellectualcrafters.json.JSONWriter +
+
+
Begin appending a new array.
+
+
asDouble(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a double named with the given key, even if it's another + type of number. +
+
+
asDouble(int) + - Method in class com.intellectualcrafters.jnbt.ListTag +
+
+
Get a double named with the given index, even if it's another + type of number. +
+
+
asInt(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get an int named with the given key, even if it's another + type of number. +
+
+
asInt(int) - Method in class + com.intellectualcrafters.jnbt.ListTag
+
+
Get an int named with the given index, even if it's another + type of number. +
+
+
asLong(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a long named with the given key, even if it's another + type of number. +
+
+
asLong(int) - Method in + class com.intellectualcrafters.jnbt.ListTag
+
+
Get a long named with the given index, even if it's another + type of number. +
+
+
Auto - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Auto() + - Constructor for class com.intellectualcrafters.plot.commands.Auto
+
 
+
AUTO_CLEAR - Static + variable in class com.intellectualcrafters.plot.config.Settings
+
+
Auto clear enabled
+
+
AUTO_CLEAR_DAYS + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Days until a plot gets cleared
+
+
AUTO_MERGE - + Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
AUTO_MERGE_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
autoMerge(World, + Plot, Player) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-10.html b/PlotSquared/doc/index-files/index-10.html new file mode 100644 index 000000000..1c098e0a3 --- /dev/null +++ b/PlotSquared/doc/index-files/index-10.html @@ -0,0 +1,359 @@ + + + + + + J-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

J

+
+
join(String) + - Method in class com.intellectualcrafters.json.JSONArray +
+
+
Make a string from the contents of this JSONArray.
+
+
JSONArray - Class in com.intellectualcrafters.json
+
+
A JSONArray is an ordered sequence of values.
+
+
JSONArray() - Constructor + for class com.intellectualcrafters.json.JSONArray
+
+
Construct an empty JSONArray.
+
+
JSONArray(JSONTokener) + - Constructor for class com.intellectualcrafters.json.JSONArray
+
+
Construct a JSONArray from a JSONTokener.
+
+
JSONArray(String) + - Constructor for class com.intellectualcrafters.json.JSONArray
+
+
Construct a JSONArray from a source JSON text.
+
+
JSONArray(Collection<Object>) + - Constructor for class com.intellectualcrafters.json.JSONArray
+
+
Construct a JSONArray from a Collection.
+
+
JSONArray(Object) + - Constructor for class com.intellectualcrafters.json.JSONArray
+
+
Construct a JSONArray from an array
+
+
JSONException - Exception + in com.intellectualcrafters.json
+
+
The JSONException is thrown by the JSON.org classes when things are amiss.
+
+
JSONException(String) + - Constructor for exception com.intellectualcrafters.json.JSONException
+
+
Constructs a JSONException with an explanatory message.
+
+
JSONException(Throwable) + - Constructor for exception com.intellectualcrafters.json.JSONException
+
+
Constructs a new JSONException with the specified cause.
+
+
JSONML - Class in com.intellectualcrafters.json
+
+
This provides static methods to convert an XML text into a JSONArray or + JSONObject, and to covert a JSONArray or JSONObject into an XML text using + the JsonML transform. +
+
+
JSONML() - + Constructor for class com.intellectualcrafters.json.JSONML +
+
 
+
JSONObject - Class in com.intellectualcrafters.json
+
+
A JSONObject is an unordered collection of name/value pairs.
+
+
JSONObject() - + Constructor for class com.intellectualcrafters.json.JSONObject
+
+
Construct an empty JSONObject.
+
+
JSONObject(JSONObject, + String[]) - Constructor for class com.intellectualcrafters.json.JSONObject +
+
+
Construct a JSONObject from a subset of another JSONObject.
+
+
JSONObject(JSONTokener) + - Constructor for class com.intellectualcrafters.json.JSONObject
+
+
Construct a JSONObject from a JSONTokener.
+
+
JSONObject(Map<String, + Object>) - Constructor for class com.intellectualcrafters.json.JSONObject +
+
+
Construct a JSONObject from a Map.
+
+
JSONObject(Object) + - Constructor for class com.intellectualcrafters.json.JSONObject
+
+
Construct a JSONObject from an Object using bean getters.
+
+
JSONObject(Object, + String[]) - Constructor for class com.intellectualcrafters.json.JSONObject +
+
+
Construct a JSONObject from an Object, using reflection to find the + public members. +
+
+
JSONObject(String) + - Constructor for class com.intellectualcrafters.json.JSONObject
+
+
Construct a JSONObject from a source JSON text string.
+
+
JSONObject(String, + Locale) - Constructor for class com.intellectualcrafters.json.JSONObject +
+
+
Construct a JSONObject from a ResourceBundle.
+
+
JSONString - Interface + in com.intellectualcrafters.json
+
+
The JSONString interface allows a toJSONString() + method so that a class can change the behavior of + JSONObject.toString(), JSONArray.toString(), + and JSONWriter.value(Object). +
+
+
JSONStringer - Class in com.intellectualcrafters.json
+
+
JSONStringer provides a quick and convenient way of producing JSON text.
+
+
JSONStringer() + - Constructor for class com.intellectualcrafters.json.JSONStringer
+
+
Make a fresh JSONStringer.
+
+
JSONTokener - Class in com.intellectualcrafters.json
+
+
A JSONTokener takes a source string and extracts characters and tokens from + it. +
+
+
JSONTokener(Reader) + - Constructor for class com.intellectualcrafters.json.JSONTokener
+
+
Construct a JSONTokener from a Reader.
+
+
JSONTokener(InputStream) + - Constructor for class com.intellectualcrafters.json.JSONTokener
+
+
Construct a JSONTokener from an InputStream.
+
+
JSONTokener(String) + - Constructor for class com.intellectualcrafters.json.JSONTokener
+
+
Construct a JSONTokener from a string.
+
+
JSONWriter - Class in com.intellectualcrafters.json
+
+
JSONWriter provides a quick and convenient way of producing JSON text.
+
+
JSONWriter(Writer) + - Constructor for class com.intellectualcrafters.json.JSONWriter
+
+
Make a fresh JSONWriter.
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-11.html b/PlotSquared/doc/index-files/index-11.html new file mode 100644 index 000000000..ad54b40f4 --- /dev/null +++ b/PlotSquared/doc/index-files/index-11.html @@ -0,0 +1,222 @@ + + + + + + K-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

K

+
+
key(String) + - Method in class com.intellectualcrafters.json.JSONWriter +
+
+
Append a key.
+
+
keys() - + Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an enumeration of the keys of the JSONObject.
+
+
keySet() + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get a set of keys of the JSONObject.
+
+
Kick - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Kick() + - Constructor for class com.intellectualcrafters.plot.commands.Kick
+
 
+
KILL_ROAD_MOBS + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Kill road mobs?
+
+
KILL_ROAD_MOBS_DEFAULT + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Default kill road mobs: true
+
+
killAllEntities() + - Static method in class com.intellectualcrafters.plot.PlotMain
+
+
Kill all entities on roads
+
+
Kim - Class in com.intellectualcrafters.json
+
+
Kim makes immutable eight bit Unicode strings.
+
+
Kim(byte[], + int, int) - Constructor for class com.intellectualcrafters.json.Kim +
+
+
Make a kim from a portion of a byte array.
+
+
Kim(byte[], + int) - Constructor for class com.intellectualcrafters.json.Kim +
+
+
Make a kim from a byte array.
+
+
Kim(Kim, + int, int) - Constructor for class com.intellectualcrafters.json.Kim +
+
+
Make a new kim from a substring of an existing kim.
+
+
Kim(String) - + Constructor for class com.intellectualcrafters.json.Kim +
+
+
Make a kim from a string.
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-12.html b/PlotSquared/doc/index-files/index-12.html new file mode 100644 index 000000000..b88bc101c --- /dev/null +++ b/PlotSquared/doc/index-files/index-12.html @@ -0,0 +1,342 @@ + + + + + + L-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

L

+
+
Lag - Class in com.intellectualcrafters.plot.util +
+
+
TPS and Lag Checker.
+
+
Lag() - + Constructor for class com.intellectualcrafters.plot.util.Lag
+
 
+
lastPlot - Static + variable in class com.intellectualcrafters.plot.commands.Auto
+
 
+
leftPlot(Location, + Location) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
length() + - Method in class com.intellectualcrafters.json.JSONArray +
+
+
Get the number of elements in the JSONArray, included nulls.
+
+
length() + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the number of keys stored in the JSONObject.
+
+
length - Variable + in class com.intellectualcrafters.json.Kim
+
+
The number of bytes in the kim.
+
+
list - Class in + com.intellectualcrafters.plot.commands +
+
 
+
list() + - Constructor for class com.intellectualcrafters.plot.commands.list
+
 
+
ListTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_List tag.
+
+
ListTag(Class<? + extends Tag>, List<? extends Tag>) - Constructor for class + com.intellectualcrafters.jnbt.ListTag
+
+
Creates the tag with an empty name.
+
+
ListTag(String, + Class<? extends Tag>, List<? extends Tag>) - Constructor for class + com.intellectualcrafters.jnbt.ListTag
+
+
Creates the tag.
+
+
ListTagBuilder - Class in + com.intellectualcrafters.jnbt
+
+
Helps create list tags.
+
+
loadConfiguration(ConfigurationSection) + - Method in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
This method is called when a world loads.
+
+
loadConfiguration(ConfigurationSection) + - Method in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
loadDefaultConfiguration(ConfigurationSection) + - Method in class com.intellectualcrafters.plot.object.PlotWorld
+
+
When a world is created, the following method will be called for each
+
+
loadWorld(String, + ChunkGenerator) - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
loadWorld(World) + - Static method in class com.intellectualcrafters.plot.PlotMain
+
+
Adds an external world as a recognized PlotSquared world - The PlotWorld + class created is based off the configuration in the settings.yml - Do not + use this method unless the required world is preconfigured in the + settings.yml +
+
+
Logger - Class in com.intellectualcrafters.plot.util +
+
+
Logging of errors and debug messages.
+
+
Logger() - Constructor for + class com.intellectualcrafters.plot.util.Logger +
+
 
+
Logger.LogLevel - Enum + in + com.intellectualcrafters.plot.util +
+
 
+
LongTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Long tag.
+
+
LongTag(long) + - Constructor for class com.intellectualcrafters.jnbt.LongTag +
+
+
Creates the tag with an empty name.
+
+
LongTag(String, + long) - Constructor for class com.intellectualcrafters.jnbt.LongTag +
+
+
Creates the tag.
+
+
LSetCube - Class in + com.intellectualcrafters.plot.util +
+
+
Cube utilities
+
+
LSetCube(Location, + Location) - Constructor for class com.intellectualcrafters.plot.util.LSetCube
+
+
Constructor
+
+
LSetCube(Location, + int) - Constructor for class com.intellectualcrafters.plot.util.LSetCube
+
+
Secondary constructor
+
+
LSetCube.LCycler - + Class in com.intellectualcrafters.plot.util +
+
 
+
LSetCube.LCycler(LSetCube) + - Constructor for class com.intellectualcrafters.plot.util.LSetCube.LCycler
+
 
+
LT - Static variable + in class com.intellectualcrafters.json.XML
+
+
The Character '<'.
+
+
LT - Static + variable in class com.intellectualcrafters.plot.util.Lag
+
+
something :_:
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-13.html b/PlotSquared/doc/index-files/index-13.html new file mode 100644 index 000000000..1f536a50a --- /dev/null +++ b/PlotSquared/doc/index-files/index-13.html @@ -0,0 +1,416 @@ + + + + + + M-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

M

+
+
MAIN_BLOCK + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Plot main block
+
+
MAIN_BLOCK_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default main block: 1
+
+
MAIN_PERMISSION + - Static variable in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
MainCommand - + Class in com.intellectualcrafters.plot.commands +
+
+
PlotMain command class
+
+
MainCommand() + - Constructor for class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
max - + Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
+
 
+
MAX_PLOTS + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Max allowed plots
+
+
maxLoc() - Method in + class com.intellectualcrafters.plot.util.LSetCube +
+
+
Returns the absolute max. of the cube
+
+
Merge - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Merge() - Constructor for + class com.intellectualcrafters.plot.commands.Merge +
+
 
+
MERGE_PRICE + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
MERGE_PRICE_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
mergePlot(World, + Plot, Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Merges 2 plots Removes the road inbetween
+ - Assumes the first plot parameter is lower
+ - Assumes neither are a Mega-plot
+ - Assumes plots are directly next to each other
+ - Saves to DB +
+
+
mergePlots(Player, + World, ArrayList<PlotId>) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Merges all plots in the arraylist (with cost)
+
+
mergePlots(World, + ArrayList<PlotId>) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Completely merges a set of plots
+ (There are no checks to make sure you supply the correct + arguments)
+ - Misuse of this method can result in unusable plots
+ - the set of plots must belong to one owner and be rectangular
+ - the plot array must be sorted in ascending order
+ - Road will be removed where required
+ - changes will be saved to DB
+
+
metaList + - Static variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
+
 
+
METRICS - Static + variable in class com.intellectualcrafters.plot.config.Settings
+
+
metrics
+
+
Metrics - Class in com.intellectualcrafters.plot.util +
+
 
+
Metrics(Plugin) + - Constructor for class com.intellectualcrafters.plot.util.Metrics
+
 
+
Metrics.Graph - Class + in + com.intellectualcrafters.plot.util +
+
+
Represents a custom graph on the website
+
+
Metrics.Plotter - + Class in com.intellectualcrafters.plot.util +
+
+
Interface used to collect custom data for a plugin
+
+
Metrics.Plotter() + - Constructor for class com.intellectualcrafters.plot.util.Metrics.Plotter
+
+
Construct a plotter with the default plot name
+
+
Metrics.Plotter(String) + - Constructor for class com.intellectualcrafters.plot.util.Metrics.Plotter
+
+
Construct a plotter with a specific plot name
+
+
minLoc() - Method in + class com.intellectualcrafters.plot.util.LSetCube +
+
+
Returns the absolute min. of the cube
+
+
MOB_CAP - Static + variable in class com.intellectualcrafters.plot.config.Settings
+
 
+
MOB_CAP_ENABLED + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
 
+
MOB_PATHFINDING + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
mob pathfinding?
+
+
MOB_PATHFINDING_DEFAULT + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Default mob pathfinding: true
+
+
MOB_SPAWNING + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
MOB_SPAWNING_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
MobSpawn(CreatureSpawnEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
mode - + Variable in class com.intellectualcrafters.json.JSONWriter +
+
+
The current mode.
+
+
mojangName(UUID) + - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
mojangName(UUID) + - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
+
 
+
mojangUUID(String) + - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
mojangUUID(String) + - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
+
 
+
more() - + Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Determine if the source string still contains characters that next() + can consume. +
+
+
MusicSubcommand - + Class in com.intellectualcrafters.plot.commands +
+
 
+
MusicSubcommand() + - Constructor for class com.intellectualcrafters.plot.commands.MusicSubcommand
+
 
+
MySQL - Class in + com.intellectualcrafters.plot.database +
+
+
Connects to and uses a MySQL database
+
+
MySQL(Plugin, + String, String, String, String, String) - Constructor for class + com.intellectualcrafters.plot.database.MySQL +
+
+
Creates a new MySQL instance
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-14.html b/PlotSquared/doc/index-files/index-14.html new file mode 100644 index 000000000..be2cccb4d --- /dev/null +++ b/PlotSquared/doc/index-files/index-14.html @@ -0,0 +1,377 @@ + + + + + + N-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

N

+
+
nameExists(StringWrapper) + - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
+
Check if a name is cached
+
+
NameFetcher - Class + in + com.intellectualcrafters.plot.uuid +
+
+
Name Fetcher Class + From Bukkit +
+
+
NameFetcher(List<UUID>) + - Constructor for class com.intellectualcrafters.plot.uuid.NameFetcher
+
 
+
names() - + Method in class com.intellectualcrafters.json.JSONObject +
+
+
Produce a JSONArray containing the names of the elements of this + JSONObject. +
+
+
NBTConstants - Class in com.intellectualcrafters.jnbt
+
+
A class which holds constant values.
+
+
NBTInputStream - Class in + com.intellectualcrafters.jnbt
+
+
This class reads NBT, or Named Binary Tag + streams, and produces an object graph of subclasses of the Tag + object. +
+
+
NBTInputStream(InputStream) + - Constructor for class com.intellectualcrafters.jnbt.NBTInputStream
+
+
Creates a new NBTInputStream, which will source its data + from the specified input stream. +
+
+
NBTOutputStream - Class in + com.intellectualcrafters.jnbt
+
+
+ This class writes NBT, or Named Binary Tag + Tag objects to an underlying OutputStream. +
+
+
NBTOutputStream(OutputStream) + - Constructor for class com.intellectualcrafters.jnbt.NBTOutputStream
+
+
Creates a new NBTOutputStream, which will write data to the + specified underlying output stream. +
+
+
NBTUtils - Class in com.intellectualcrafters.jnbt
+
+
A class which contains NBT-related utility methods.
+
+
next() - + Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Get the next character in the source string.
+
+
next(char) - Method in + class com.intellectualcrafters.json.JSONTokener
+
+
Consume the next character, and check that it matches a specified + character. +
+
+
next(int) - Method in + class com.intellectualcrafters.json.JSONTokener
+
+
Get the next n characters.
+
+
nextCDATA() + - Method in class com.intellectualcrafters.json.XMLTokener +
+
+
Get the text in the CDATA block.
+
+
nextClean() + - Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Get the next char in the string, skipping whitespace.
+
+
nextContent() - Method + in class com.intellectualcrafters.json.XMLTokener
+
+
Get the next XML outer token, trimming whitespace.
+
+
nextEntity(char) + - Method in class com.intellectualcrafters.json.XMLTokener +
+
+
Return the next entity.
+
+
nextLong() + - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
 
+
nextLong() + - Method in class com.intellectualcrafters.plot.generator.XPopulator
+
 
+
nextLong() - Static + method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
nextMeta() - Method in + class com.intellectualcrafters.json.XMLTokener
+
+
Returns the next XML meta token.
+
+
nextString(char) + - Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Return the characters up to the next close quote character.
+
+
nextTest() - Method in class Test1
+
 
+
nextTo(char) - Method + in class com.intellectualcrafters.json.JSONTokener +
+
+
Get the text up but not including the specified character or the + end of line, whichever comes first. +
+
+
nextTo(String) + - Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Get the text up but not including one of the specified delimiter + characters or the end of line, whichever comes first. +
+
+
nextToken() + - Method in class com.intellectualcrafters.json.HTTPTokener +
+
+
Get the next token or string.
+
+
nextToken() + - Method in class com.intellectualcrafters.json.XMLTokener +
+
+
Get the next XML Token.
+
+
nextValue() + - Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Get the next value.
+
+
no_permission(Player, + String) - Static method in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
noMask(LocalSession) + - Static method in class com.intellectualcrafters.plot.util.PWE
+
 
+
noSpace(String) + - Static method in class com.intellectualcrafters.json.XML +
+
+
Throw an exception if the string contains whitespace.
+
+
NULL - + Static variable in class com.intellectualcrafters.json.JSONObject
+
+
It is sometimes more convenient and less ambiguous to have a + NULL object than to use Java's null value. +
+
+
numberToString(Number) + - Static method in class com.intellectualcrafters.json.JSONObject
+
+
Produce a string from a Number.
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-15.html b/PlotSquared/doc/index-files/index-15.html new file mode 100644 index 000000000..403d62256 --- /dev/null +++ b/PlotSquared/doc/index-files/index-15.html @@ -0,0 +1,759 @@ + + + + + + O-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

O

+
+
object() - + Method in class com.intellectualcrafters.json.JSONWriter
+
+
Begin appending a new object.
+
+
of(Object) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
+
+
apply fiend for object
+
+
of(Object) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
+
+
apply method to object
+
+
onBD(BlockDamageEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBF(BlockFormEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBigBoom(EntityExplodeEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBlockIgnite(BlockIgniteEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBlockPistonExtend(BlockPistonExtendEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBlockPistonRetract(BlockPistonRetractEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBS(BlockSpreadEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBucketEmpty(PlayerBucketEmptyEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onBucketFill(PlayerBucketFillEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onChange(BlockFromToEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onChangeWorld(PlayerChangedWorldEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onChat(AsyncPlayerChatEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onChunkDespawn(ChunkUnloadEvent) + - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
onChunkLoad(ChunkLoadEvent) + - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
onCommand(CommandSender, + Command, String, String[]) - Method in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
onCreatureSpawn(CreatureSpawnEvent) + - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
onDamage(EntityDamageEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onDelete(PlotDeleteEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onDisable() - + Method in class com.intellectualcrafters.plot.PlotMain
+
+
On unload
+
+
onDisable() + - Method in class com.intellectualsites.translation.bukkit.TranslationPlugin
+
 
+
onEnable() - + Method in class com.intellectualcrafters.plot.PlotMain
+
+
On Load.
+
+
onEnable() + - Method in class com.intellectualsites.translation.bukkit.TranslationPlugin
+
 
+
onEntityBlockForm(EntityBlockFormEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onEntityDamageByEntityEvent(EntityDamageByEntityEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onEntityDeath(EntityDeathEvent) + - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
onFade(BlockFadeEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onGrow(BlockGrowEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onHangingBreakByEntity(HangingBreakByEntityEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onHangingPlace(HangingPlaceEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onInteract(PlayerInteractEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onInteract(BlockDamageEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onInteract(PlayerInteractEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onInventoryAction(InventoryInteractEvent) + - Method in class com.intellectualcrafters.plot.listeners.InventoryListener
+
 
+
onInventoryClick(InventoryClickEvent) + - Method in class com.intellectualcrafters.plot.listeners.InventoryListener
+
 
+
onInventoryClick(InventoryClickEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onInventoryClick(InventoryClickEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onItemDrop(PlayerDropItemEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onItemPickup(PlayerPickupItemEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onJoin(PlayerJoinEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onLeave(PlayerQuitEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onMerge(PlotMergeEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
onOptOut() - Method in + class com.intellectualcrafters.plot.util.Metrics.Graph +
+
+
Called when the server owner decides to opt-out of BukkitMetrics + while the server is running. +
+
+
onPeskyMobsChangeTheWorldLikeWTFEvent(EntityChangeBlockEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onPlayerCommand(PlayerCommandPreprocessEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onPlayerEggThrow(PlayerEggThrowEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onPlayerInteract(PlayerInteractEvent) + - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
onPlayerInteractEntity(PlayerInteractEntityEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onPlayerJoin(PlayerJoinEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onPlayerMove(PlayerMoveEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onPlayerQuit(PlayerQuitEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onPlotClaim(PlayerClaimPlotEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
onPlotDelete(PlotDeleteEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
onPlotEnter(PlayerEnterPlotEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onPlotEntry(PlayerMoveEvent) + - Method in class com.intellectualcrafters.plot.listeners.ForceFieldListener
+
 
+
onPlotLeave(PlayerLeavePlotEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
onPortal(PlayerPortalEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onStructureGrow(StructureGrowEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onTabComplete(CommandSender, + Command, String, String[]) - Method in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
onTeleport(PlayerTeleportEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
onTeleport(PlayerTeleportEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
onUnlink(PlotUnlinkEvent) + - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
onWorldLoad(WorldLoadEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
OP - Class in com.intellectualcrafters.plot.commands +
+
+
Created 2014-11-09 for PlotSquared
+
+
OP() - Constructor + for class com.intellectualcrafters.plot.commands.OP +
+
 
+
openConnection() + - Method in class com.intellectualcrafters.plot.database.Database
+
+
Opens a connection with the database
+
+
openConnection() + - Method in class com.intellectualcrafters.plot.database.MySQL
+
 
+
openConnection() + - Method in class com.intellectualcrafters.plot.database.SQLite
+
 
+
opt(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional object value associated with an index.
+
+
opt(String) - Method in + class com.intellectualcrafters.json.JSONObject
+
+
Get an optional value associated with a key.
+
+
optBoolean(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Get the optional boolean value associated with an index.
+
+
optBoolean(int, + boolean) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional boolean value associated with an index.
+
+
optBoolean(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional boolean associated with a key.
+
+
optBoolean(String, + boolean) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional boolean associated with a key.
+
+
optDouble(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Get the optional double value associated with an index.
+
+
optDouble(int, + double) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional double value associated with an index.
+
+
optDouble(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional double associated with a key, or NaN if there is no such + key or if its value is not a number. +
+
+
optDouble(String, + double) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional double associated with a key, or the defaultValue if + there is no such key or if its value is not a number. +
+
+
optInt(int) - + Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional int value associated with an index.
+
+
optInt(int, + int) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional int value associated with an index.
+
+
optInt(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional int value associated with a key, or zero if there is no + such key or if the value is not a number. +
+
+
optInt(String, + int) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional int value associated with a key, or the default if there + is no such key or if the value is not a number. +
+
+
optJSONArray(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional JSONArray associated with an index.
+
+
optJSONArray(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional JSONArray associated with a key.
+
+
optJSONObject(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional JSONObject associated with an index.
+
+
optJSONObject(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional JSONObject associated with a key.
+
+
optLong(int) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional long value associated with an index.
+
+
optLong(int, + long) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional long value associated with an index.
+
+
optLong(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional long value associated with a key, or zero if there is no + such key or if the value is not a number. +
+
+
optLong(String, + long) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional long value associated with a key, or the default if there + is no such key or if the value is not a number. +
+
+
optString(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Get the optional string value associated with an index.
+
+
optString(int, + String) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the optional string associated with an index.
+
+
optString(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional string associated with a key.
+
+
optString(String, + String) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an optional string associated with a key.
+
+
owner - Variable + in class com.intellectualcrafters.plot.object.Plot
+
+
plot owner
+
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-16.html b/PlotSquared/doc/index-files/index-16.html new file mode 100644 index 000000000..e2e10d288 --- /dev/null +++ b/PlotSquared/doc/index-files/index-16.html @@ -0,0 +1,1189 @@ + + + + + + P-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

P

+
+
parse(String) + - Method in class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
+
 
+
parse(String) + - Method in class com.intellectualcrafters.plot.flag.FlagValue +
+
 
+
parse(String) + - Method in class com.intellectualcrafters.plot.flag.FlagValue.StringValue
+
 
+
parseFlags(List<String>) + - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
 
+
parseObject(Object) + - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
+
 
+
parseString(String) + - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
+
 
+
parseValue(String) + - Method in class com.intellectualcrafters.plot.flag.AbstractFlag
+
 
+
PASSWORD + - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL Password
+
+
Paste - Class in com.intellectualcrafters.plot.commands +
+
 
+
Paste() - + Constructor for class com.intellectualcrafters.plot.commands.Paste
+
 
+
paste(World, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotSelection
+
 
+
paste(Location, + SchematicHandler.Schematic, Plot, int, int) - Static method in class + com.intellectualcrafters.plot.util.SchematicHandler
+
+
Paste a schematic
+
+
pastePart(World, + SchematicHandler.DataCollection[], Location, int, int, int, int, int, int) - Static method in class + com.intellectualcrafters.plot.util.SchematicHandler
+
 
+
permission + - Variable in class com.intellectualcrafters.plot.commands.CommandPermission
+
 
+
permission - Variable in + class com.intellectualcrafters.plot.commands.SubCommand +
+
+
Permission node
+
+
PlayerClaimPlotEvent - + Class in com.intellectualcrafters.plot.events +
+
 
+
PlayerClaimPlotEvent(Player, + Plot, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
+
PlayerClaimPlotEvent: Called when a plot is claimed
+
+
PlayerEnterPlotEvent - + Class in com.intellectualcrafters.plot.events +
+
 
+
PlayerEnterPlotEvent(Player, + Plot) - Constructor for class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
+
+
PlayerEnterPlotEvent: Called when a player leaves a plot
+
+
PlayerEvents - Class in + com.intellectualcrafters.plot.listeners +
+
+
Player Events involving plots
+
+
PlayerEvents() + - Constructor for class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
PlayerFunctions - Class in com.intellectualcrafters.plot.util
+
+
Functions involving players, plots and locations.
+
+
PlayerFunctions() + - Constructor for class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
PlayerLeavePlotEvent - + Class in com.intellectualcrafters.plot.events +
+
 
+
PlayerLeavePlotEvent(Player, + Plot) - Constructor for class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
+
+
PlayerLeavePlotEvent: Called when a player leaves a plot
+
+
PlayerMove(PlayerMoveEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
PlayerPlotDeniedEvent - + Class in com.intellectualcrafters.plot.events +
+
 
+
PlayerPlotDeniedEvent(Player, + Plot, UUID, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
+
PlayerPlotDeniedEvent: Called when the denied UUID list is modified for a + plot +
+
+
PlayerPlotHelperEvent - + Class in com.intellectualcrafters.plot.events +
+
 
+
PlayerPlotHelperEvent(Player, + Plot, UUID, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
+
PlayerPlotHelperEvent: Called when a plot helper is added/removed
+
+
PlayerPlotTrustedEvent - + Class in com.intellectualcrafters.plot.events +
+
 
+
PlayerPlotTrustedEvent(Player, + Plot, UUID, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
+
PlayerPlotTrustedEvent: Called when a plot trusted user is added/removed
+
+
PlayerTeleportToPlotEvent - + Class in com.intellectualcrafters.plot.events +
+
+
Called when a player teleports to a plot
+
+
PlayerTeleportToPlotEvent(Player, + Location, Plot) - Constructor for class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
+
PlayerTeleportToPlotEvent: Called when a player teleports to a plot
+
+
Plot - Class in com.intellectualcrafters.plot.object +
+
+
The plot class
+
+
Plot(PlotId, + UUID, Biome, ArrayList<UUID>, ArrayList<UUID>, String) - Constructor for class + com.intellectualcrafters.plot.object.Plot
+
+
Deprecated. 
+
+
Plot(PlotId, + UUID, ArrayList<UUID>, ArrayList<UUID>, String) - Constructor for class + com.intellectualcrafters.plot.object.Plot
+
+
Primary constructor
+
+
Plot(PlotId, + UUID, Biome, ArrayList<UUID>, ArrayList<UUID>, ArrayList<UUID>, String, PlotHomePosition, Flag[], + String, boolean[]) - Constructor for class com.intellectualcrafters.plot.object.Plot +
+
+
Deprecated. 
+
+
Plot(PlotId, + UUID, ArrayList<UUID>, ArrayList<UUID>, ArrayList<UUID>, String, PlotHomePosition, Flag[], String, + boolean[]) - Constructor for class com.intellectualcrafters.plot.object.Plot +
+
+
Constructor for saved plots
+
+
PLOT_BIOME - Variable in + class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
PLOT_BIOME_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
PLOT_CHAT + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
PLOT_CHAT_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
PLOT_HEIGHT + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
plot height
+
+
PLOT_HEIGHT_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default plot height: 64
+
+
PLOT_PRICE - Variable in + class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
PLOT_PRICE_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
PLOT_SPECIFIC_RESOURCE_PACK + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
plot specific resource pack
+
+
PLOT_WIDTH + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
plot width
+
+
PLOT_WIDTH_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default plot width: 32
+
+
PlotAPI - Class in com.intellectualcrafters.plot.api
+
+
PlotSquared API
+
+
PlotAPI(JavaPlugin) + - Constructor for class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Constructor.
+
+
PlotBlock - Class in com.intellectualcrafters.plot.object +
+
 
+
PlotBlock(short, + byte) - Constructor for class com.intellectualcrafters.plot.object.PlotBlock
+
 
+
PlotClearEvent - Class in + com.intellectualcrafters.plot.events
+
+
Called when a plot is cleared
+
+
PlotClearEvent(String, + PlotId) - Constructor for class com.intellectualcrafters.plot.events.PlotClearEvent
+
+
PlotDeleteEvent: Called when a plot is cleared
+
+
PlotComment - Class in com.intellectualcrafters.plot.object +
+
 
+
PlotComment(String, + String, int) - Constructor for class com.intellectualcrafters.plot.object.PlotComment
+
 
+
PlotDeleteEvent - Class in + com.intellectualcrafters.plot.events
+
+
Called when a plot is deleted
+
+
PlotDeleteEvent(String, + PlotId) - Constructor for class com.intellectualcrafters.plot.events.PlotDeleteEvent
+
+
PlotDeleteEvent: Called when a plot is deleted
+
+
plotEntry(Player, + Plot) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
plotExit(Player, + Plot) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
PlotFlagAddEvent - Class in + com.intellectualcrafters.plot.events
+
+
Called when a Flag is added to a plot
+
+
PlotFlagAddEvent(Flag, + Plot) - Constructor for class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
+
PlotFlagAddEvent: Called when a Flag is added to a plot
+
+
PlotFlagRemoveEvent - Class + in com.intellectualcrafters.plot.events +
+
+
Called when a flag is removed from a plot
+
+
PlotFlagRemoveEvent(Flag, + Plot) - Constructor for class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
+
PlotFlagRemoveEvent: Called when a flag is removed from a plot
+
+
PlotGenerator - Class in com.intellectualcrafters.plot.object +
+
 
+
PlotGenerator(String) + - Constructor for class com.intellectualcrafters.plot.object.PlotGenerator
+
 
+
PlotHelper - Class in com.intellectualcrafters.plot.util
+
+
plot functions
+
+
PlotHelper() - Constructor + for class com.intellectualcrafters.plot.util.PlotHelper +
+
 
+
PlotHomePosition - Enum in + com.intellectualcrafters.plot.object
+
 
+
PlotId - Class in com.intellectualcrafters.plot.object +
+
 
+
PlotId(int, + int) - Constructor for class com.intellectualcrafters.plot.object.PlotId
+
+
PlotId class (PlotId x,y values do not correspond to Block locations)
+
+
PlotListener - Class in + com.intellectualcrafters.plot.listeners +
+
 
+
PlotListener() + - Constructor for class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
PlotMain - Class in com.intellectualcrafters.plot +
+
+
PlotMain class.
+
+
PlotMain() - + Constructor for class com.intellectualcrafters.plot.PlotMain +
+
 
+
PlotManager - Class in com.intellectualcrafters.plot.object +
+
 
+
PlotManager() - + Constructor for class com.intellectualcrafters.plot.object.PlotManager
+
 
+
PlotMeConverter - Class + in + com.intellectualcrafters.plot.database +
+
+
Created 2014-08-17 for PlotSquared
+
+
PlotMeConverter(PlotMain) + - Constructor for class com.intellectualcrafters.plot.database.PlotMeConverter
+
+
Constructor
+
+
PlotMergeEvent - Class in + com.intellectualcrafters.plot.events
+
 
+
PlotMergeEvent(World, + Plot, ArrayList<PlotId>) - Constructor for class com.intellectualcrafters.plot.events.PlotMergeEvent
+
+
PlotMergeEvent: Called when plots are merged
+
+
PlotPlusListener - Class + in + com.intellectualcrafters.plot.listeners +
+
+
Created 2014-10-30 for PlotSquared
+
+
PlotPlusListener() + - Constructor for class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
PlotPlusListener.Interval - Class in com.intellectualcrafters.plot.listeners +
+
 
+
PlotPlusListener.Interval(int, + int, int) - Constructor for class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
+
 
+
PlotPlusListener.RecordMeta + - Class in com.intellectualcrafters.plot.listeners +
+
+
Record Meta Class
+
+
PlotPlusListener.RecordMeta(String, + Material) - Constructor for class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
+
 
+
PlotSelection - Class in com.intellectualcrafters.plot.object +
+
+
Created 2014-10-12 for PlotSquared
+
+
PlotSelection(int, + World, Plot) - Constructor for class com.intellectualcrafters.plot.object.PlotSelection
+
 
+
PlotSettings - Class in com.intellectualcrafters.plot.object +
+
+
plot settings
+
+
PlotSettings(Plot) + - Constructor for class com.intellectualcrafters.plot.object.PlotSettings
+
+
Constructor
+
+
PlotSquaredException - + Exception in com.intellectualcrafters.plot.util +
+
+
Created 2014-09-29 for PlotSquared
+
+
PlotSquaredException(PlotSquaredException.PlotError, + String) - Constructor for exception com.intellectualcrafters.plot.util.PlotSquaredException
+
 
+
PlotSquaredException.PlotError + - Enum in com.intellectualcrafters.plot.util +
+
 
+
PlotTable - + Class in com.intellectualcrafters.plot.database.sqlobjects +
+
+
Created by Citymonstret on 2014-10-28.
+
+
PlotTable() + - Constructor for class com.intellectualcrafters.plot.database.sqlobjects.PlotTable
+
 
+
PlotUnlinkEvent - Class in + com.intellectualcrafters.plot.events
+
 
+
PlotUnlinkEvent(World, + ArrayList<PlotId>) - Constructor for class com.intellectualcrafters.plot.events.PlotUnlinkEvent
+
+
Called when a mega-plot is unlinked.
+
+
PlotUUIDSaver - Class in com.intellectualcrafters.plot.uuid
+
+
Plot UUID Saver/Fetcher
+
+
PlotUUIDSaver() + - Constructor for class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
PlotWorld - Class in com.intellectualcrafters.plot.object +
+
 
+
PlotWorld(String) + - Constructor for class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
plugin - Class in com.intellectualcrafters.plot.commands +
+
 
+
plugin() - + Constructor for class com.intellectualcrafters.plot.commands.plugin
+
 
+
plugin - + Variable in class com.intellectualcrafters.plot.database.Database
+
+
Plugin instance, use for plugin.getDataFolder()
+
+
populate(World, + Random, Chunk) - Method in class com.intellectualcrafters.plot.generator.XPopulator
+
 
+
PORT - + Static variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL Port
+
+
PREFIX - + Static variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL Prefix
+
+
Property - Class in com.intellectualcrafters.json +
+
+
Converts a Property file data into JSONObject and back.
+
+
Property() - + Constructor for class com.intellectualcrafters.json.Property +
+
 
+
Purge - Class in com.intellectualcrafters.plot.commands +
+
 
+
Purge() - + Constructor for class com.intellectualcrafters.plot.commands.Purge
+
 
+
purge(String, + PlotId) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Purgle a plot
+
+
purge(String) + - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Purge a whole world
+
+
purge(String, + PlotId) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
purge(String) + - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
purge(String, + PlotId) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
purge(String) + - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
put(String, + Tag) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and tag into the compound tag.
+
+
put(boolean) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Append a boolean value.
+
+
put(Collection<Object>) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put a value in the JSONArray, where the value will be a JSONArray which + is produced from a Collection. +
+
+
put(double) - + Method in class com.intellectualcrafters.json.JSONArray
+
+
Append a double value.
+
+
put(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Append an int value.
+
+
put(long) - + Method in class com.intellectualcrafters.json.JSONArray
+
+
Append an long value.
+
+
put(Map<String, + Object>) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put a value in the JSONArray, where the value will be a JSONObject which + is produced from a Map. +
+
+
put(Object) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Append an object value.
+
+
put(int, + boolean) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put or replace a boolean value in the JSONArray.
+
+
put(int, + Collection<Object>) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put a value in the JSONArray, where the value will be a JSONArray which + is produced from a Collection. +
+
+
put(int, + double) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put or replace a double value.
+
+
put(int, + int) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put or replace an int value.
+
+
put(int, + long) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put or replace a long value.
+
+
put(int, + Map<String, Object>) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put a value in the JSONArray, where the value will be a JSONObject that + is produced from a Map. +
+
+
put(int, + Object) - Method in class com.intellectualcrafters.json.JSONArray
+
+
Put or replace an object value in the JSONArray.
+
+
put(String, + boolean) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/boolean pair in the JSONObject.
+
+
put(String, + Collection<Object>) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/value pair in the JSONObject, where the value will be a + JSONArray which is produced from a Collection. +
+
+
put(String, + double) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/double pair in the JSONObject.
+
+
put(String, + int) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/int pair in the JSONObject.
+
+
put(String, + long) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/long pair in the JSONObject.
+
+
put(String, Map<String, + Object>) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/value pair in the JSONObject, where the value will be a + JSONObject which is produced from a Map. +
+
+
put(String, + Object) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/value pair in the JSONObject.
+
+
putAll(Map<String, + ? extends Tag>) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put all the entries from the given map into this map.
+
+
putByte(String, + byte) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a ByteTag.
+
+
putByteArray(String, + byte[]) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a + ByteArrayTag. +
+
+
putDouble(String, + double) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a DoubleTag.
+
+
putFloat(String, + float) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a FloatTag.
+
+
putInt(String, + int) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as an IntTag.
+
+
putIntArray(String, + int[]) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a + IntArrayTag. +
+
+
putLong(String, + long) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a LongTag.
+
+
putOnce(String, + Object) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/value pair in the JSONObject, but only if the key and the value + are both non-null, and only if there is not already a member with that + name. +
+
+
putOpt(String, + Object) - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Put a key/value pair in the JSONObject, but only if the key and the value + are both non-null. +
+
+
putShort(String, + short) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a ShortTag.
+
+
putString(String, + String) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder +
+
+
Put the given key and value into the compound tag as a StringTag.
+
+
PVE - Variable + in class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
PVE_DEFAULT - Static + variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
PVP - Variable + in class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
PVP_DEFAULT - Static + variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
PWE - Class in com.intellectualcrafters.plot.util +
+
 
+
PWE() - Constructor + for class com.intellectualcrafters.plot.util.PWE
+
 
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-17.html b/PlotSquared/doc/index-files/index-17.html new file mode 100644 index 000000000..0db6d3bf3 --- /dev/null +++ b/PlotSquared/doc/index-files/index-17.html @@ -0,0 +1,185 @@ + + + + + + Q-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

Q

+
+
querySQL(String) + - Method in class com.intellectualcrafters.plot.database.Database
+
+
Executes a SQL Query
+ If the connection is closed, it will be opened +
+
+
querySQL(String) + - Method in class com.intellectualcrafters.plot.database.MySQL
+
 
+
querySQL(String) + - Method in class com.intellectualcrafters.plot.database.SQLite
+
 
+
QUEST - Static + variable in class com.intellectualcrafters.json.XML +
+
+
The Character '?'.
+
+
QUOT - Static + variable in class com.intellectualcrafters.json.XML +
+
+
The Character '"'.
+
+
quote(String) + - Static method in class com.intellectualcrafters.json.JSONObject
+
+
Produce a string in double quotes with backslash sequences in all the + right places. +
+
+
quote(String, + Writer) - Static method in class com.intellectualcrafters.json.JSONObject +
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-18.html b/PlotSquared/doc/index-files/index-18.html new file mode 100644 index 000000000..7a798007d --- /dev/null +++ b/PlotSquared/doc/index-files/index-18.html @@ -0,0 +1,654 @@ + + + + + + R-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

R

+
+
random(int) + - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
 
+
random(int) - Method in + class com.intellectualcrafters.plot.generator.XPopulator +
+
 
+
random(int) - Static method + in class com.intellectualcrafters.plot.util.PlotHelper +
+
 
+
Rate - Class in com.intellectualcrafters.plot.commands +
+
 
+
Rate() - + Constructor for class com.intellectualcrafters.plot.commands.Rate
+
 
+
read() - + Method in class com.intellectualsites.translation.TranslationFile
+
+
Read from the file
+
+
read() - Method in class + com.intellectualsites.translation.YamlTranslationFile
+
+
Read the file
+
+
readTag() - + Method in class com.intellectualcrafters.jnbt.NBTInputStream +
+
+
Reads an NBT tag from the stream.
+
+
ReflectionUtils - Class in com.intellectualcrafters.plot.util
+
 
+
ReflectionUtils() + - Constructor for class com.intellectualcrafters.plot.util.ReflectionUtils
+
 
+
ReflectionUtils.RefClass - + Class in com.intellectualcrafters.plot.util +
+
+
RefClass - utility to simplify work with reflections.
+
+
ReflectionUtils.RefConstructor - Class in com.intellectualcrafters.plot.util
+
+
Constructor wrapper
+
+
ReflectionUtils.RefField - + Class in com.intellectualcrafters.plot.util +
+
 
+
ReflectionUtils.RefField.RefExecutor - Class in com.intellectualcrafters.plot.util
+
 
+
ReflectionUtils.RefField.RefExecutor(Object) + - Constructor for class com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
+
 
+
ReflectionUtils.RefMethod - + Class in com.intellectualcrafters.plot.util +
+
+
Method wrapper
+
+
ReflectionUtils.RefMethod.RefExecutor - Class in com.intellectualcrafters.plot.util
+
 
+
ReflectionUtils.RefMethod.RefExecutor(Object) + - Constructor for class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod.RefExecutor
+
 
+
refreshPlotChunks(World, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
registerCommand(SubCommand) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Register a subcommand
+
+
Reload - Class in com.intellectualcrafters.plot.commands +
+
 
+
Reload() - + Constructor for class com.intellectualcrafters.plot.commands.Reload
+
 
+
reload() - Method in + class com.intellectualsites.translation.YamlTranslationFile +
+
+
Reload
+
+
reloadTranslations() + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
remove(int) - + Method in class com.intellectualcrafters.json.JSONArray
+
+
Remove an index and close the hole.
+
+
remove(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Remove a name and its value, if present.
+
+
removeComment(String, + Plot, PlotComment) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Remove a plot comment
+
+
removeComment(String, + Plot, PlotComment) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
removeComment(String, + Plot, PlotComment) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
removeComment(PlotComment) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
removeComments(ArrayList<PlotComment>) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
removeDenied(String, + Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
removeDenied(String, + Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
removeDenied(String, + Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
removeDenied(UUID) + - Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Remove a denied player (use DBFunc as well)
+
+
removeFlag(Flag[], + String) - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
 
+
removeFlag(Set<Flag>, + String) - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
 
+
removeFlag(AbstractFlag) + - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
+
Remove a registered AbstractFlag
+
+
removeFlag(Player, + World, Plot, String) - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
removeHelper(String, + Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
removeHelper(String, + Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
removeHelper(String, + Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
removeHelper(UUID) + - Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Remove a helper (use DBFunc as well)
+
+
removeMask(Player, + LocalSession) - Static method in class com.intellectualcrafters.plot.util.PWE
+
 
+
removeMask(Player) + - Static method in class com.intellectualcrafters.plot.util.PWE +
+
 
+
removePlot(String, + PlotId, boolean) - Static method in class com.intellectualcrafters.plot.PlotMain
+
 
+
removePlotter(Metrics.Plotter) + - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
+
+
Remove a plotter from the graph
+
+
removePlotWorld(String) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
removeRoadEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
removeRoadEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
removeRoadSouth(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
removeRoadSouth(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
removeRoadSouthEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
removeRoadSouthEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
removeSign(World, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
removeTranslationObject(TranslationObject) + - Method in class com.intellectualsites.translation.TranslationManager
+
+
Remove an object
+
+
removeTrusted(String, + Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
removeTrusted(String, + Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
removeTrusted(String, + Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
removeTrusted(UUID) + - Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Remove a trusted user (use DBFunc as well)
+
+
reset() + - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
+
+
Called after the website graphs have been updated
+
+
resetTitle(Player) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Reset the title settings
+
+
restrictedcmds + - Variable in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
ROAD_BLOCK + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Road block
+
+
ROAD_BLOCK_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default road block: 155
+
+
ROAD_HEIGHT + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Road Height
+
+
ROAD_HEIGHT_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default Road Height: 64
+
+
ROAD_STRIPES + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Road stripes
+
+
ROAD_STRIPES_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default road stripes: 35
+
+
ROAD_STRIPES_ENABLED + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
enable road stripes
+
+
ROAD_STRIPES_ENABLED_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
 
+
ROAD_WIDTH + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Road width
+
+
ROAD_WIDTH_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default road width: 7
+
+
rowToJSONArray(JSONTokener) + - Static method in class com.intellectualcrafters.json.CDL +
+
+
Produce a JSONArray of strings from a row of comma delimited values.
+
+
rowToJSONObject(JSONArray, + JSONTokener) - Static method in class com.intellectualcrafters.json.CDL
+
+
Produce a JSONObject from a row of comma delimited text, using a + parallel JSONArray of strings to provides the names of the elements. +
+
+
rowToString(JSONArray) + - Static method in class com.intellectualcrafters.json.CDL +
+
+
Produce a comma delimited text row from a JSONArray.
+
+
run() - Method in + class com.intellectualcrafters.plot.util.Lag
+
 
+
runAsync() - Method + in class com.intellectualcrafters.plot.database.PlotMeConverter
+
 
+
runners - + Static variable in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
runners_p + - Static variable in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
russianRussian + - Static variable in class com.intellectualsites.translation.TranslationLanguage
+
 
+
RUtils - Class in com.intellectualcrafters.plot.util
+
+
Random utilities
+
+
RUtils() - + Constructor for class com.intellectualcrafters.plot.util.RUtils +
+
 
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-19.html b/PlotSquared/doc/index-files/index-19.html new file mode 100644 index 000000000..20bb216bb --- /dev/null +++ b/PlotSquared/doc/index-files/index-19.html @@ -0,0 +1,1402 @@ + + + + + + S-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

S

+
+
s() - Method in enum + com.intellectualcrafters.plot.config.C
+
+
Get translated if exists
+
+
save(CompoundTag, + String) - Static method in class com.intellectualcrafters.plot.util.SchematicHandler
+
+
Saves a schematic to a file path
+
+
save(UUIDSet) + - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
save(UUIDSet) + - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
+
 
+
saveAll(TranslationFile) + - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
saveConfiguration(ConfigurationSection) + - Method in class com.intellectualcrafters.plot.object.PlotWorld
+
+
Saving core plotworld settings
+
+
saveFile() - Method in + class com.intellectualsites.translation.TranslationFile +
+
+
Save the file
+
+
saveFile(TranslationFile) + - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
saveFile() - Method + in class com.intellectualsites.translation.YamlTranslationFile +
+
+
Save the file
+
+
saveTranslations() - Static + method in enum com.intellectualcrafters.plot.config.C +
+
 
+
scan(Class, + TranslationManager) - Static method in class com.intellectualsites.translation.TranslationManager
+
 
+
Schematic - Class in com.intellectualcrafters.plot.commands +
+
 
+
Schematic() + - Constructor for class com.intellectualcrafters.plot.commands.Schematic
+
 
+
SCHEMATIC_CLAIM_SPECIFY + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SCHEMATIC_CLAIM_SPECIFY_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SCHEMATIC_FILE - + Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SCHEMATIC_FILE_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SCHEMATIC_ON_CLAIM + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SCHEMATIC_ON_CLAIM_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SCHEMATIC_SAVE_PATH + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Schematic Save Path
+
+
SchematicHandler - Class in + com.intellectualcrafters.plot.util
+
+
Schematic Handler
+
+
SchematicHandler() + - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler
+
 
+
SchematicHandler.DataCollection - Class in com.intellectualcrafters.plot.util
+
+
Schematic Data Collection
+
+
SchematicHandler.DataCollection(short, + byte) - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
+
 
+
SchematicHandler.Dimension - + Class in com.intellectualcrafters.plot.util +
+
+
Schematic Dimensions
+
+
SchematicHandler.Dimension(int, + int, int) - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
+
 
+
SchematicHandler.Schematic - + Class in com.intellectualcrafters.plot.util +
+
+
Schematic Class
+
+
SchematicHandler.Schematic(SchematicHandler.DataCollection[], + SchematicHandler.Dimension, File) - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
+
 
+
SCHEMATICS - Variable in + class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
SCHEMATICS_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SELL_PRICE - Variable in + class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
SELL_PRICE_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
send(Player) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Send the title to a player
+
+
sendConsoleMessage(String) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Send a message to the console. - Supports color codes
+
+
sendConsoleMessage(C) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Send a message to the console
+
+
sendConsoleSenderMessage(String) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Send a message to the console.
+
+
sendConsoleSenderMessage(C) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Send a message to the console
+
+
senderName - Variable in + class com.intellectualcrafters.plot.object.PlotComment +
+
 
+
sendMessage(Player, + C) - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Send a message to a player.
+
+
sendMessage(Player, + String) - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Send a message to a player. - Supports color codes
+
+
sendMessage(Player, + C, String...) - Method in class com.intellectualcrafters.plot.commands.SubCommand
+
+
Send a message
+
+
sendMessage(Player, + String) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Send a message to the player
+
+
sendMessage(Player, + C, String...) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Send a message to the player
+
+
sendMessageWrapped(Player, + String) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
\\previous\\
+
+
Set - Class in com.intellectualcrafters.plot.commands +
+
 
+
Set() - + Constructor for class com.intellectualcrafters.plot.commands.Set
+
 
+
set(Plot) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Deprecated. 
+
+
set(Object) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
+
+
set field value for applied object
+
+
set(World, + int, int, int, int, byte) - Static method in class com.intellectualcrafters.plot.util.SetBlockFast
+
 
+
SET_OWNER - Variable in + class com.intellectualcrafters.plot.database.SQLManager +
+
 
+
setAlias(String, + Plot, String) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Set the plot alias
+
+
setAlias(String, + Plot, String) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setAlias(String, + Plot, String) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setAlias(String) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
+
Set the plot alias
+
+
setAllPlotsRaw(HashMap<String, + HashMap<PlotId, Plot>>) - Static method in class com.intellectualcrafters.plot.PlotMain
+
 
+
setAllPlotsRaw(LinkedHashMap<String, + HashMap<PlotId, Plot>>) - Static method in class com.intellectualcrafters.plot.PlotMain
+
 
+
setBiome(World, + Plot, Biome) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Set a plot biome
+
+
setBiome(World, + Plot, Biome) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
setBiome(World, + Plot, Biome) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
setBlock(Block, + PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Set a block quickly, attempts to use NMS if possible
+
+
SetBlockFast - Class in com.intellectualcrafters.plot.util
+
+
SetBlockFast class
+ Used to do fast world editing +
+
+
SetBlockFast() - + Constructor for class com.intellectualcrafters.plot.util.SetBlockFast
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
+
 
+
setCancelled(boolean) + - Method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
+
 
+
setComment(String, + Plot, PlotComment) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Set a plot comment
+
+
setComment(String, + Plot, PlotComment) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setComment(String, + Plot, PlotComment) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setComments(ArrayList<PlotComment>) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
setCuboid(World, + Location, Location, PlotBlock[]) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
setCuboidRegion(int, + int, int, int, int, int, PlotBlock) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Cuboid based plot generation is quick, as it requires no calculations + inside the loop - You don't have to use this this method, but you may + find it useful. +
+
+
setCuboidRegion(int, + int, int, int, int, int, PlotBlock, World) - Method in class com.intellectualcrafters.plot.generator.XPopulator
+
 
+
setDenied(String, + Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
setDenied(String, + Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setDenied(String, + Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setFadeInTime(int) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Set title fade in time
+
+
setFadeOutTime(int) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Set title fade out time
+
+
setFlags(String, + Plot, Flag[]) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Set plot flags
+
+
setFlags(String, + Plot, Flag[]) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setFlags(String, + Plot, Flag[]) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setFlags(int, + Flag[]) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setFlags(Flag[]) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
+
Set multiple flags
+
+
setFloor(World, + PlotWorld, PlotId, PlotBlock[]) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
setFloor(World, + PlotWorld, PlotId, PlotBlock[]) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
setFloor(Player, + Plot, PlotBlock[]) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
setHelper(String, + Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
setHelper(String, + Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setHelper(String, + Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setMask(Player, + Location) - Static method in class com.intellectualcrafters.plot.util.PWE
+
 
+
setMerged(String, + Plot, boolean[]) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Set the merged status for a plot
+
+
setMerged(String, + Plot, boolean[]) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setMerged(String, + Plot, boolean[]) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setMerged(boolean[]) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
setMerged(int, + boolean) - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
setNBT(World, + short, byte, int, int, int, CompoundTag) - Static method in class com.intellectualcrafters.jnbt.WorldEditUtils +
+
 
+
setNoMask(Player) + - Static method in class com.intellectualcrafters.plot.util.PWE +
+
 
+
SetOwner - Class in com.intellectualcrafters.plot.commands +
+
 
+
SetOwner() - Constructor + for class com.intellectualcrafters.plot.commands.SetOwner +
+
 
+
setOwner(Plot, + UUID) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Set Plot owner
+
+
setOwner(Plot, + UUID) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setOwner(Plot, + UUID) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
+
Set Plot owner
+
+
setOwner(Player) + - Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Set the owner
+
+
setPosition(String, + Plot, String) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Set Plot Home Position
+
+
setPosition(String, + Plot, String) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setPosition(String, + Plot, String) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setPosition(PlotHomePosition) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
setSign(Player, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
setSign(World, + String, Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
setSimpleCuboid(World, + Location, Location, PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
setStayTime(int) - Method + in class com.intellectualcrafters.plot.object.Title +
+
+
Set title stay time
+
+
setSubtitleColor(ChatColor) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Set the subtitle color
+
+
setTimingsToSeconds() + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Set timings to seconds
+
+
setTimingsToTicks() + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Set timings to ticks
+
+
Settings - Class in com.intellectualcrafters.plot.config +
+
+
Updater and DB settings
+
+
Settings() - Constructor for + class com.intellectualcrafters.plot.config.Settings +
+
 
+
settings - + Variable in class com.intellectualcrafters.plot.object.Plot +
+
+
External settings class
+
+
Settings.DB - Class in com.intellectualcrafters.plot.config +
+
+
Database settings
+
+
Settings.DB() - + Constructor for class com.intellectualcrafters.plot.config.Settings.DB
+
 
+
setTitleColor(ChatColor) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Set the title color
+
+
setTrusted(String, + Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
setTrusted(String, + Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
setTrusted(String, + Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
setup(JavaPlugin) + - Static method in class com.intellectualcrafters.plot.commands.plugin
+
 
+
Setup - Class in com.intellectualcrafters.plot.commands +
+
+
Created 2014-09-26 for PlotSquared
+
+
Setup() - + Constructor for class com.intellectualcrafters.plot.commands.Setup
+
 
+
setup(File) + - Static method in class com.intellectualcrafters.plot.util.Logger
+
 
+
setupMap - + Static variable in class com.intellectualcrafters.plot.commands.Setup
+
 
+
setupTranslations() + - Static method in enum com.intellectualcrafters.plot.config.C
+
 
+
setUUIDSaver(UUIDSaver) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Set the uuid saver
+
+
setValue(Map<String, + Tag>) - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Return a new compound tag with the given values.
+
+
setValue(List<Tag>) + - Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Create a new list tag with this tag's name and type.
+
+
setValue(String) + - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
+
 
+
setWall(World, + PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
setWall(World, + PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
setWallFilling(World, + PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
setWallFilling(World, + PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
ShortTag - Class in com.intellectualcrafters.jnbt +
+
+
The TAG_Short tag.
+
+
ShortTag(short) - Constructor + for class com.intellectualcrafters.jnbt.ShortTag
+
+
Creates the tag with an empty name.
+
+
ShortTag(String, + short) - Constructor for class com.intellectualcrafters.jnbt.ShortTag
+
+
Creates the tag.
+
+
similar(Object) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Determine if two JSONArrays are similar.
+
+
similar(Object) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Determine if two JSONObjects are similar.
+
+
skipPast(String) + - Method in class com.intellectualcrafters.json.XMLTokener +
+
+
Skip characters until past the requested string.
+
+
skipTo(char) - Method in class + com.intellectualcrafters.json.JSONTokener
+
+
Skip characters until the next character is the requested character.
+
+
SLASH - Static variable in + class com.intellectualcrafters.json.XML
+
+
The Character '/'.
+
+
sLetterPair(String) + - Static method in class com.intellectualcrafters.plot.util.StringComparison
+
+
Get an array containing letter pairs
+
+
SPAWN_BREEDING - + Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SPAWN_BREEDING_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SPAWN_CUSTOM + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SPAWN_CUSTOM_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SPAWN_EGGS - Variable in + class com.intellectualcrafters.plot.object.PlotWorld +
+
 
+
SPAWN_EGGS_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
SQLField - + Class in com.intellectualcrafters.plot.database.sqlobjects +
+
+
Created by Citymonstret on 2014-10-28.
+
+
SQLField(SQLType, + Object) - Constructor for class com.intellectualcrafters.plot.database.sqlobjects.SQLField
+
 
+
SQLite - Class in com.intellectualcrafters.plot.database +
+
+
Connects to and uses a SQLite database
+
+
SQLite(Plugin, + String) - Constructor for class com.intellectualcrafters.plot.database.SQLite
+
+
Creates a new SQLite instance
+
+
SQLITE_DB - Static variable + in class com.intellectualcrafters.plot.config.Settings.DB +
+
+
SQLite Database name
+
+
SQLManager - Class in com.intellectualcrafters.plot.database +
+
 
+
SQLManager(Connection, + String) - Constructor for class com.intellectualcrafters.plot.database.SQLManager
+
+
Constructor
+
+
SQLTable - + Class in com.intellectualcrafters.plot.database.sqlobjects +
+
+
Created by Citymonstret on 2014-10-28.
+
+
SQLTable(String, + String, SQLField...) - Constructor for class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
+
 
+
SQLType - Enum + in com.intellectualcrafters.plot.database.sqlobjects +
+
+
Created by Citymonstret on 2014-10-28.
+
+
square(int) - Static method + in class com.intellectualcrafters.plot.util.PlotHelper +
+
 
+
start() - + Method in class com.intellectualcrafters.plot.util.Metrics +
+
+
Start measuring statistics.
+
+
startPlotMerge(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
startPlotMerge(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
startPlotUnlink(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
startPlotUnlink(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
startRunnable(JavaPlugin) + - Static method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
+
 
+
storage - Static + variable in class com.intellectualcrafters.plot.PlotMain
+
+
Contains storage options
+
+
storage_ver - + Static variable in class com.intellectualcrafters.plot.PlotMain +
+
+
Storage version
+
+
storageFile - + Static variable in class com.intellectualcrafters.plot.PlotMain +
+
+
storage.properties
+
+
str_flags + - Variable in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
STRING - + Static variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
StringComparison - Class in + com.intellectualcrafters.plot.util
+
+
String comparison library
+
+
StringComparison(String, + Object[]) - Constructor for class com.intellectualcrafters.plot.util.StringComparison
+
+
Constructor
+
+
STRINGLIST + - Static variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
StringTag - Class in com.intellectualcrafters.jnbt +
+
+
The TAG_String tag.
+
+
StringTag(String) + - Constructor for class com.intellectualcrafters.jnbt.StringTag +
+
+
Creates the tag with an empty name.
+
+
StringTag(String, + String) - Constructor for class com.intellectualcrafters.jnbt.StringTag
+
+
Creates the tag.
+
+
stringToValue(String) + - Static method in class com.intellectualcrafters.json.JSONObject +
+
+
Try to convert a string into a number, boolean, or null.
+
+
stringToValue(String) + - Static method in class com.intellectualcrafters.json.XML +
+
+
Try to convert a string into a number, boolean, or null.
+
+
StringWrapper - Class in com.intellectualcrafters.plot.object +
+
 
+
StringWrapper(String) + - Constructor for class com.intellectualcrafters.plot.object.StringWrapper
+
+
Constructor
+
+
SubCommand - Class in com.intellectualcrafters.plot.commands +
+
+
SubCommand class
+
+
SubCommand(String, + String, String, String, String, SubCommand.CommandCategory, boolean) - Constructor for class + com.intellectualcrafters.plot.commands.SubCommand +
+
 
+
SubCommand(Command, + String, String, SubCommand.CommandCategory, boolean) - Constructor for class + com.intellectualcrafters.plot.commands.SubCommand +
+
 
+
SubCommand.CommandCategory + - Enum in com.intellectualcrafters.plot.commands +
+
 
+
subCommands - Static + variable in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
Swap - Class in com.intellectualcrafters.plot.commands +
+
+
Created by Citymonstret on 2014-08-01.
+
+
Swap() - + Constructor for class com.intellectualcrafters.plot.commands.Swap
+
 
+
swap(World, + PlotId, PlotId) - Static method in class com.intellectualcrafters.plot.object.PlotSelection
+
 
+
swedishSwedish + - Static variable in class com.intellectualsites.translation.TranslationLanguage
+
 
+
syntaxError(String) + - Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Make a JSONException to signal a syntax error.
+
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-2.html b/PlotSquared/doc/index-files/index-2.html new file mode 100644 index 000000000..72649e235 --- /dev/null +++ b/PlotSquared/doc/index-files/index-2.html @@ -0,0 +1,373 @@ + + + + + + B-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

B

+
+
back() - + Method in class com.intellectualcrafters.json.JSONTokener +
+
+
Back up one character.
+
+
Ban - Class in com.intellectualcrafters.plot.commands +
+
+
Created 2014-11-09 for PlotSquared
+
+
Ban() - + Constructor for class com.intellectualcrafters.plot.commands.Ban
+
 
+
BANG - Static + variable in class com.intellectualcrafters.json.XML +
+
+
The Character '!'.
+
+
barAPI - + Static variable in class com.intellectualcrafters.plot.PlotMain
+
+
BarAPI object
+
+
BIOME - Static + variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
BLOCK - Static + variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
blockChange(Block, + Cancellable) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
BlockCreate(BlockPlaceEvent) + - Method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
BlockDestroy(BlockBreakEvent) + - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
+
 
+
blockedcmds + - Variable in class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
BLOCKLIST + - Static variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
BLOCKS - Static variable + in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
BlockWrapper - + Class in com.intellectualcrafters.plot.object +
+
+
Wrapper class for blocks, using + pure data rather than the object. +
+
+
BlockWrapper(int, + int, int, short, byte) - Constructor for class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Constructor
+
+
BlockWrapper(Block) + - Constructor for class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Alternative Constructor + Uses block data, rather than typed data +
+
+
BOOLEAN - Static + variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
booleanFlag(Plot, + String) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
booleanFlags + - Static variable in class com.intellectualcrafters.plot.PlotMain
+
+
Boolean Flags (material)
+
+
broadcast() - Method in + class com.intellectualcrafters.plot.object.Title +
+
+
Broadcast the title to all players
+
+
Broadcast(C) + - Static method in class com.intellectualcrafters.plot.PlotMain
+
+
Broadcast publicly
+
+
BroadcastWithPerms(C) + - Static method in class com.intellectualcrafters.plot.PlotMain
+
+
Broadcast a message to all admins
+
+
build() + - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder
+
+
Build an unnamed compound tag with this builder's entries.
+
+
build(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder
+
+
Build a new compound tag with this builder's entries.
+
+
build() - Method in class + com.intellectualcrafters.jnbt.ListTagBuilder
+
+
Build an unnamed list tag with this builder's entries.
+
+
build(String) + - Method in class com.intellectualcrafters.jnbt.ListTagBuilder
+
+
Build a new list tag with this builder's entries.
+
+
build() - Method in + class com.intellectualcrafters.plot.object.InfoInventory
+
 
+
BukkitTranslation - Class in com.intellectualsites.translation.bukkit +
+
 
+
BukkitTranslation() + - Constructor for class com.intellectualsites.translation.bukkit.BukkitTranslation
+
 
+
ByteArrayTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Byte_Array tag.
+
+
ByteArrayTag(byte[]) + - Constructor for class com.intellectualcrafters.jnbt.ByteArrayTag
+
+
Creates the tag with an empty name.
+
+
ByteArrayTag(String, + byte[]) - Constructor for class com.intellectualcrafters.jnbt.ByteArrayTag
+
+
Creates the tag.
+
+
ByteTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Byte tag.
+
+
ByteTag(byte) + - Constructor for class com.intellectualcrafters.jnbt.ByteTag +
+
+
Creates the tag with an empty name.
+
+
ByteTag(String, + byte) - Constructor for class com.intellectualcrafters.jnbt.ByteTag +
+
+
Creates the tag.
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-20.html b/PlotSquared/doc/index-files/index-20.html new file mode 100644 index 000000000..ae2faf84c --- /dev/null +++ b/PlotSquared/doc/index-files/index-20.html @@ -0,0 +1,877 @@ + + + + + + T-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

T

+
+
T - Static variable in + class com.intellectualcrafters.plot.util.Lag
+
+
Ticks
+
+
t1() - Method in class Test1 +
+
 
+
t2() - Method in class Test1 +
+
 
+
t3() - Method in class Test1 +
+
 
+
t4() - Method in class Test1 +
+
 
+
t5() - Method in class Test1 +
+
 
+
t6() - Method in class Test1 +
+
 
+
t7() - Method in class Test1 +
+
 
+
t8() - Method in class Test1 +
+
 
+
t9() - Method in class Test1 +
+
 
+
Tag - Class in com.intellectualcrafters.jnbt +
+
+
Represents a NBT tag.
+
+
TC - Static variable in + class com.intellectualcrafters.plot.util.Lag
+
+
Tick count
+
+
teleportPlayer(Player, + Location, Plot) - Static method in class com.intellectualcrafters.plot.PlotMain
+
+
..
+
+
Test1 - Class in <Unnamed>
+
 
+
Test1() - Constructor for class Test1
+
 
+
test1_Square() - Method in class Test1
+
 
+
test2_InitMain() - Method in class Test1
+
 
+
test3_InitPlotId() - Method in class Test1
+
 
+
test4_InitPlot() - Method in class Test1
+
 
+
test5_InitDBFunc() - Method in class Test1
+
 
+
test6_Plots() - Method in class Test1
+
 
+
test7_OnEnable() - Method in class Test1
+
 
+
test8_AddPlotWorld() - Method in class + Test1
+
 
+
test9_CanSetFast() - Method in class Test1
+
 
+
testValidity(Object) + - Static method in class com.intellectualcrafters.json.JSONObject +
+
+
Throw an exception if the object is a NaN or infinite number.
+
+
textures(Player) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
tier - + Variable in class com.intellectualcrafters.plot.object.PlotComment
+
 
+
Title - Class in com.intellectualcrafters.plot.object +
+
+
Minecraft 1.8 Title
+
+
Title(String) + - Constructor for class com.intellectualcrafters.plot.object.Title
+
+
Create a new 1.8 title
+
+
Title(String, + String) - Constructor for class com.intellectualcrafters.plot.object.Title +
+
+
Create a new 1.8 title
+
+
Title(String, + String, int, int, int) - Constructor for class com.intellectualcrafters.plot.object.Title +
+
+
Create a new 1.8 title
+
+
TITLES - + Static variable in class com.intellectualcrafters.plot.config.Settings
+
 
+
toBlock(World) + - Method in class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Get a block based on the block wrapper
+
+
toBytes(UUID) + - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
+
 
+
toJSONArray(String) + - Static method in class com.intellectualcrafters.json.CDL +
+
+
Produce a JSONArray of JSONObjects from a comma delimited text string, + using the first row as a source of names. +
+
+
toJSONArray(JSONTokener) + - Static method in class com.intellectualcrafters.json.CDL +
+
+
Produce a JSONArray of JSONObjects from a comma delimited text string, + using the first row as a source of names. +
+
+
toJSONArray(JSONArray, + String) - Static method in class com.intellectualcrafters.json.CDL
+
+
Produce a JSONArray of JSONObjects from a comma delimited text string + using a supplied JSONArray as the source of element names. +
+
+
toJSONArray(JSONArray, + JSONTokener) - Static method in class com.intellectualcrafters.json.CDL
+
+
Produce a JSONArray of JSONObjects from a comma delimited text string + using a supplied JSONArray as the source of element names. +
+
+
toJSONArray(String) + - Static method in class com.intellectualcrafters.json.JSONML +
+
+
Convert a well-formed (but not necessarily valid) XML string into a + JSONArray using the JsonML transform. +
+
+
toJSONArray(XMLTokener) + - Static method in class com.intellectualcrafters.json.JSONML +
+
+
Convert a well-formed (but not necessarily valid) XML string into a + JSONArray using the JsonML transform. +
+
+
toJSONArray(JSONArray) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Produce a JSONArray containing the values of the members of this + JSONObject. +
+
+
toJSONObject(String) + - Static method in class com.intellectualcrafters.json.Cookie +
+
+
Convert a cookie specification string into a JSONObject.
+
+
toJSONObject(String) + - Static method in class com.intellectualcrafters.json.CookieList +
+
+
Convert a cookie list into a JSONObject.
+
+
toJSONObject(String) + - Static method in class com.intellectualcrafters.json.HTTP +
+
+
Convert an HTTP header string into a JSONObject.
+
+
toJSONObject(JSONArray) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Produce a JSONObject by combining a JSONArray of names with the values of + this JSONArray. +
+
+
toJSONObject(XMLTokener) + - Static method in class com.intellectualcrafters.json.JSONML +
+
+
Convert a well-formed (but not necessarily valid) XML string into a + JSONObject using the JsonML transform. +
+
+
toJSONObject(String) + - Static method in class com.intellectualcrafters.json.JSONML +
+
+
Convert a well-formed (but not necessarily valid) XML string into a + JSONObject using the JsonML transform. +
+
+
toJSONObject(Properties) + - Static method in class com.intellectualcrafters.json.Property +
+
+
Converts a property file object into a JSONObject.
+
+
toJSONObject(String) + - Static method in class com.intellectualcrafters.json.XML +
+
+
Convert a well-formed (but not necessarily valid) XML string into a + JSONObject. +
+
+
toJSONString() - Method in + interface com.intellectualcrafters.json.JSONString
+
+
The toJSONString method allows a class to produce its own + JSON + serialization. +
+
+
TOP_BLOCK - + Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Top blocks
+
+
TOP_BLOCK_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default top blocks: {"2"}
+
+
toProperties(JSONObject) + - Static method in class com.intellectualcrafters.json.Property +
+
+
Converts the JSONObject into a property file object.
+
+
toString() - + Method in class com.intellectualcrafters.jnbt.ByteArrayTag +
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.ByteTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.CompoundTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.DoubleTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.EndTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.FloatTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.IntArrayTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.IntTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.ListTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.LongTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.ShortTag
+
 
+
toString() - + Method in class com.intellectualcrafters.jnbt.StringTag
+
 
+
toString(JSONArray) + - Static method in class com.intellectualcrafters.json.CDL +
+
+
Produce a comma delimited text from a JSONArray of JSONObjects.
+
+
toString(JSONArray, + JSONArray) - Static method in class com.intellectualcrafters.json.CDL
+
+
Produce a comma delimited text from a JSONArray of JSONObjects using + a provided list of names. +
+
+
toString(JSONObject) + - Static method in class com.intellectualcrafters.json.Cookie +
+
+
Convert a JSONObject into a cookie specification string.
+
+
toString(JSONObject) + - Static method in class com.intellectualcrafters.json.CookieList +
+
+
Convert a JSONObject into a cookie list.
+
+
toString(JSONObject) + - Static method in class com.intellectualcrafters.json.HTTP +
+
+
Convert a JSONObject into an HTTP header.
+
+
toString() - + Method in class com.intellectualcrafters.json.JSONArray
+
+
Make a JSON text of this JSONArray.
+
+
toString(int) - Method in class + com.intellectualcrafters.json.JSONArray
+
+
Make a prettyprinted JSON text of this JSONArray.
+
+
toString(JSONArray) + - Static method in class com.intellectualcrafters.json.JSONML +
+
+
Reverse the JSONML transformation, making an XML text from a JSONArray.
+
+
toString(JSONObject) + - Static method in class com.intellectualcrafters.json.JSONML +
+
+
Reverse the JSONML transformation, making an XML text from a JSONObject.
+
+
toString() - + Method in class com.intellectualcrafters.json.JSONObject
+
+
Make a JSON text of this JSONObject.
+
+
toString(int) - Method in class + com.intellectualcrafters.json.JSONObject
+
+
Make a prettyprinted JSON text of this JSONObject.
+
+
toString() - + Method in class com.intellectualcrafters.json.JSONStringer +
+
+
Return the JSON text.
+
+
toString() - + Method in class com.intellectualcrafters.json.JSONTokener
+
+
Make a printable string of this JSONTokener.
+
+
toString() - Method + in class com.intellectualcrafters.json.Kim
+
+
Produce a UTF-16 String from this kim.
+
+
toString(Object) - Static + method in class com.intellectualcrafters.json.XML
+
+
Convert a JSONObject into a well-formed, element-normal XML string.
+
+
toString(Object, + String) - Static method in class com.intellectualcrafters.json.XML
+
+
Convert a JSONObject into a well-formed, element-normal XML string.
+
+
toString() + - Method in enum com.intellectualcrafters.plot.commands.SubCommand.CommandCategory
+
 
+
toString() + - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
+
 
+
toString() + - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
+
 
+
toString() - Method in + class com.intellectualcrafters.plot.flag.AbstractFlag +
+
 
+
toString() - + Method in class com.intellectualcrafters.plot.flag.Flag +
+
 
+
toString() + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
+
 
+
toString() + - Method in class com.intellectualcrafters.plot.object.PlotId +
+
 
+
toString() + - Method in class com.intellectualcrafters.plot.object.StringWrapper
+
+
Get the string value
+
+
toString() + - Method in enum com.intellectualcrafters.plot.util.Logger.LogLevel
+
 
+
toString() + - Method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
+
 
+
toString() - + Method in class com.intellectualcrafters.plot.uuid.UUIDSet +
+
 
+
toString() - Method + in class com.intellectualsites.translation.TranslationLanguage +
+
 
+
TP - Class in com.intellectualcrafters.plot.commands +
+
 
+
TP() - Constructor + for class com.intellectualcrafters.plot.commands.TP +
+
 
+
transformEnum(Object[]) + - Static method in class com.intellectualsites.translation.TranslationManager
+
 
+
translated() - + Method in enum com.intellectualcrafters.plot.config.C +
+
 
+
Translation - Annotation + Type in com.intellectualsites.translation +
+
+
Translation annotation
+
+
TranslationAsset - Class in com.intellectualsites.translation
+
+
Asset
+
+
TranslationAsset(TranslationObject, + String, TranslationLanguage) - Constructor for class com.intellectualsites.translation.TranslationAsset
+
 
+
TranslationFile - Class in com.intellectualsites.translation
+
+
Abstract TranslationFile
+
+
TranslationFile() + - Constructor for class com.intellectualsites.translation.TranslationFile
+
 
+
TranslationLanguage - Class in + com.intellectualsites.translation
+
 
+
TranslationLanguage(String, + String, String) - Constructor for class com.intellectualsites.translation.TranslationLanguage
+
 
+
TranslationManager - Class in + com.intellectualsites.translation
+
+
Translation Manager Main class
+
+
TranslationManager() + - Constructor for class com.intellectualsites.translation.TranslationManager
+
+
Constructor
+
+
TranslationManager(TranslationObject[]) + - Constructor for class com.intellectualsites.translation.TranslationManager
+
+
Constructor
+
+
TranslationObject - Class in + com.intellectualsites.translation
+
 
+
TranslationObject(String, + String, String, String) - Constructor for class com.intellectualsites.translation.TranslationObject
+
 
+
TranslationPlugin - + Class in com.intellectualsites.translation.bukkit +
+
 
+
TranslationPlugin() + - Constructor for class com.intellectualsites.translation.bukkit.TranslationPlugin
+
 
+
translations() + - Method in class com.intellectualsites.translation.TranslationManager
+
+
Get the translation objects
+
+
Trusted - Class in com.intellectualcrafters.plot.commands +
+
 
+
Trusted() + - Constructor for class com.intellectualcrafters.plot.commands.Trusted
+
 
+
trusted - + Variable in class com.intellectualcrafters.plot.object.Plot +
+
+
List of trusted users (with plot permissions)
+
+
TYPE_BYTE - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_BYTE_ARRAY - Static + variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_COMPOUND - Static + variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_DOUBLE + - Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_END - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_FLOAT - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_INT - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_INT_ARRAY + - Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_LIST - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_LONG - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_SHORT - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
TYPE_STRING + - Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-21.html b/PlotSquared/doc/index-files/index-21.html new file mode 100644 index 000000000..9797d7091 --- /dev/null +++ b/PlotSquared/doc/index-files/index-21.html @@ -0,0 +1,322 @@ + + + + + + U-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

U

+
+
Unban - Class in + com.intellectualcrafters.plot.commands +
+
+
Created 2014-11-09 for PlotSquared
+
+
Unban() - Constructor for + class com.intellectualcrafters.plot.commands.Unban +
+
 
+
unescape(String) + - Static method in class com.intellectualcrafters.json.Cookie +
+
+
Convert %hh sequences to single characters, and + convert plus to space. +
+
+
Unlink - Class in + com.intellectualcrafters.plot.commands +
+
+
Created 2014-08-01 for PlotSquared
+
+
Unlink() - Constructor + for class com.intellectualcrafters.plot.commands.Unlink
+
 
+
update(Player) + - Static method in class com.intellectualcrafters.plot.util.SetBlockFast
+
 
+
updatePlot(Plot) + - Static method in class com.intellectualcrafters.plot.PlotMain
+
+
Replace the plot object with an updated version
+
+
updateSQL(String) + - Method in class com.intellectualcrafters.plot.database.Database
+
+
Executes an Update SQL Query
+ See Statement.executeUpdate(String)
+ If the connection is closed, it will be opened +
+
+
updateSQL(String) + - Method in class com.intellectualcrafters.plot.database.MySQL
+
 
+
updateSQL(String) + - Method in class com.intellectualcrafters.plot.database.SQLite
+
 
+
usage - Variable in + class com.intellectualcrafters.plot.commands.SubCommand
+
+
Command usage
+
+
USE_ECONOMY + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
USE_ECONOMY_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
USE_MONGO - Static + variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MongoDB enabled?
+
+
USE_MYSQL - Static + variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL Enabled?
+
+
USE_SQLITE + - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
SQLite enabled?
+
+
useEconomy - Static variable + in class com.intellectualcrafters.plot.PlotMain
+
+
Use Economy?
+
+
USER + - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL User
+
+
uuidExists(UUID) + - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
+
Check if a uuid is cached
+
+
UUIDFetcher - Class + in + com.intellectualcrafters.plot.uuid +
+
+
UUID Fetcher + From Bukkit +
+
+
UUIDFetcher(List<String>, + boolean) - Constructor for class com.intellectualcrafters.plot.uuid.UUIDFetcher
+
 
+
UUIDFetcher(List<String>) + - Constructor for class com.intellectualcrafters.plot.uuid.UUIDFetcher
+
 
+
UUIDHandler - Class + in + com.intellectualcrafters.plot.util +
+
+
This class can be used to efficiently translate UUIDs and names back and + forth. +
+
+
UUIDHandler() + - Constructor for class com.intellectualcrafters.plot.util.UUIDHandler
+
 
+
UUIDSaver - + Interface in com.intellectualcrafters.plot.uuid +
+
 
+
UUIDSet - Class in com.intellectualcrafters.plot.uuid +
+
 
+
UUIDSet(String, + UUID) - Constructor for class com.intellectualcrafters.plot.uuid.UUIDSet
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-22.html b/PlotSquared/doc/index-files/index-22.html new file mode 100644 index 000000000..c2140c378 --- /dev/null +++ b/PlotSquared/doc/index-files/index-22.html @@ -0,0 +1,343 @@ + + + + + + V-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

V

+
+
validateValue(String) + - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
+
 
+
validValue(Object) + - Method in class com.intellectualcrafters.plot.flag.FlagValue
+
 
+
value(boolean) + - Method in class com.intellectualcrafters.json.JSONWriter +
+
+
Append either the value true or the value false + . +
+
+
value(double) - Method + in class com.intellectualcrafters.json.JSONWriter
+
+
Append a double value.
+
+
value(long) + - Method in class com.intellectualcrafters.json.JSONWriter +
+
+
Append a long value.
+
+
value(Object) + - Method in class com.intellectualcrafters.json.JSONWriter +
+
+
Append an object value.
+
+
value - Variable in + class com.intellectualcrafters.plot.object.StringWrapper
+
 
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.commands.Command
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.commands.SubCommand.CommandCategory
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.config.C
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.object.PlotHomePosition
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.util.Logger.LogLevel
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) + - Static method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
+
+
Returns the enum constant of this type with the specified name.
+
+
values() + - Static method in enum com.intellectualcrafters.plot.commands.Command
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values + - Static variable in class com.intellectualcrafters.plot.commands.Merge
+
 
+
values - + Static variable in class com.intellectualcrafters.plot.commands.Set
+
 
+
values() + - Static method in enum com.intellectualcrafters.plot.commands.SubCommand.CommandCategory
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values() - + Static method in enum com.intellectualcrafters.plot.config.C
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values() + - Static method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values() + - Static method in enum com.intellectualcrafters.plot.object.PlotHomePosition
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values() - Static + method in enum com.intellectualcrafters.plot.util.Logger.LogLevel
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values() + - Static method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
+
+
Returns an array containing the constants of this enum type, in + the order they are declared. +
+
+
values() + - Static method in class com.intellectualsites.translation.TranslationLanguage
+
 
+
valueToString(Object) + - Static method in class com.intellectualcrafters.json.JSONObject
+
+
Make a JSON text of an Object value.
+
+
version - Static + variable in class com.intellectualcrafters.plot.commands.plugin
+
 
+
Visit - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Visit() - Constructor for + class com.intellectualcrafters.plot.commands.Visit +
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-23.html b/PlotSquared/doc/index-files/index-23.html new file mode 100644 index 000000000..c6ec8db4c --- /dev/null +++ b/PlotSquared/doc/index-files/index-23.html @@ -0,0 +1,348 @@ + + + + + + W-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

W

+
+
WALL_BLOCK + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Wall block
+
+
WALL_BLOCK_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default wall block: 44
+
+
WALL_FILLING + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Wall filling
+
+
WALL_FILLING_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default wall filling: 1
+
+
WALL_HEIGHT + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Wall height
+
+
WALL_HEIGHT_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
Default Wall Height: 64
+
+
wasAdded() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
+
If a user was added
+
+
wasAdded() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
+
If a player was added
+
+
wasAdded() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
+
If a player was added
+
+
wasAuto() + - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
 
+
wLetterPair(String) + - Static method in class com.intellectualcrafters.plot.util.StringComparison
+
+
Create an ArrayList containing pairs of letters
+
+
world - + Variable in class com.intellectualcrafters.plot.object.Plot
+
+
plot world
+
+
worldEdit + - Static variable in class com.intellectualcrafters.plot.PlotMain
+
+
WorldEdit object
+
+
WorldEditListener - Class in com.intellectualcrafters.plot.listeners +
+
 
+
WorldEditListener() + - Constructor for class com.intellectualcrafters.plot.listeners.WorldEditListener
+
 
+
WorldEditUtils - Class in + com.intellectualcrafters.jnbt
+
 
+
WorldEditUtils() + - Constructor for class com.intellectualcrafters.jnbt.WorldEditUtils
+
 
+
WorldGenerator - + Class in com.intellectualcrafters.plot.generator +
+
 
+
WorldGenerator(String) + - Constructor for class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Initialize variables, and create plotworld object used in calculations
+
+
WORLDGUARD - Static + variable in class com.intellectualcrafters.plot.config.Settings
+
+
WorldGuard region on claimed plots
+
+
worldGuard - Static variable + in class com.intellectualcrafters.plot.PlotMain
+
+
World Guard Object
+
+
WorldGuardListener - Class in com.intellectualcrafters.plot.listeners +
+
+
Created 2014-09-24 for PlotSquared
+
+
WorldGuardListener(PlotMain) + - Constructor for class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
worldGuardListener + - Static variable in class com.intellectualcrafters.plot.PlotMain
+
+
World Guard Listener
+
+
worldname - Variable + in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
wrap(Object) + - Static method in class com.intellectualcrafters.json.JSONObject
+
+
Wrap an object, if necessary.
+
+
write(Writer) + - Method in class com.intellectualcrafters.json.JSONArray +
+
+
Write the contents of the JSONArray as JSON text to a writer.
+
+
write(Writer) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Write the contents of the JSONObject as JSON text to a writer.
+
+
write() + - Static method in class com.intellectualcrafters.plot.util.Logger
+
 
+
writer - + Variable in class com.intellectualcrafters.json.JSONWriter +
+
+
The writer that will receive the output.
+
+
writeTag(Tag) + - Method in class com.intellectualcrafters.jnbt.NBTOutputStream
+
+
Writes a tag.
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-24.html b/PlotSquared/doc/index-files/index-24.html new file mode 100644 index 000000000..83e565517 --- /dev/null +++ b/PlotSquared/doc/index-files/index-24.html @@ -0,0 +1,204 @@ + + + + + + X-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

X

+
+
x - + Variable in class com.intellectualcrafters.plot.object.BlockWrapper
+
+
X Coordinate
+
+
x - Variable + in class com.intellectualcrafters.plot.object.PlotId +
+
+
x value
+
+
XML - Class in com.intellectualcrafters.json
+
+
This provides static methods to convert an XML text into a JSONObject, + and to covert a JSONObject into an XML text. +
+
+
XML() - + Constructor for class com.intellectualcrafters.json.XML +
+
 
+
XMLTokener - Class in com.intellectualcrafters.json
+
+
The XMLTokener extends the JSONTokener to provide additional methods + for the parsing of XML texts. +
+
+
XMLTokener(String) + - Constructor for class com.intellectualcrafters.json.XMLTokener
+
+
Construct an XMLTokener from a string.
+
+
xorShift64(long) + - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
 
+
xorShift64(long) + - Method in class com.intellectualcrafters.plot.generator.XPopulator
+
 
+
xorShift64(long) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
XPopulator - + Class in com.intellectualcrafters.plot.generator +
+
 
+
XPopulator(PlotWorld) + - Constructor for class com.intellectualcrafters.plot.generator.XPopulator
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-25.html b/PlotSquared/doc/index-files/index-25.html new file mode 100644 index 000000000..06ac1f362 --- /dev/null +++ b/PlotSquared/doc/index-files/index-25.html @@ -0,0 +1,166 @@ + + + + + + Y-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

Y

+
+
y - + Variable in class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Y Coordinate
+
+
y - Variable + in class com.intellectualcrafters.plot.object.PlotId +
+
+
y value
+
+
YamlTranslationFile - + Class in com.intellectualsites.translation +
+
+
The YAML implementation of TranslationFile + Relies heavily on SnakeYAML +
+
+
YamlTranslationFile(File, + TranslationLanguage, String, TranslationManager) - Constructor for class + com.intellectualsites.translation.YamlTranslationFile +
+
+
Constructor
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-26.html b/PlotSquared/doc/index-files/index-26.html new file mode 100644 index 000000000..4ebd31440 --- /dev/null +++ b/PlotSquared/doc/index-files/index-26.html @@ -0,0 +1,141 @@ + + + + + + Z-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

Z

+
+
z - + Variable in class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Z Coordinate
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-3.html b/PlotSquared/doc/index-files/index-3.html new file mode 100644 index 000000000..b43125d3e --- /dev/null +++ b/PlotSquared/doc/index-files/index-3.html @@ -0,0 +1,975 @@ + + + + + + C-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

C

+
+
C - Enum in com.intellectualcrafters.plot.config +
+
+
Captions class.
+
+
calculateVelocity(Player, + Player) - Method in class com.intellectualcrafters.plot.listeners.ForceFieldListener
+
 
+
call(Object...) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
+
+
call static method
+
+
call(Object...) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod.RefExecutor
+
+
apply method for selected object
+
+
call() - + Method in class com.intellectualcrafters.plot.uuid.NameFetcher +
+
 
+
call() - + Method in class com.intellectualcrafters.plot.uuid.UUIDFetcher +
+
 
+
canSetFast - Static variable + in class com.intellectualcrafters.plot.util.PlotHelper +
+
 
+
canSpawn(World, + int, int) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Allow spawning everywhere
+
+
category - Variable in + class com.intellectualcrafters.plot.commands.SubCommand +
+
 
+
CDL - Class in com.intellectualcrafters.json +
+
+
This provides static methods to convert comma delimited text into a + JSONArray, and to covert a JSONArray into comma delimited text. +
+
+
CDL() - Constructor for + class com.intellectualcrafters.json.CDL
+
 
+
changeOwner(Player, + UUID, World, Plot) - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
characterAt(int) - Method in class + com.intellectualcrafters.json.Kim
+
+
Returns the character at the specified index.
+
+
characterSize(int) - Static + method in class com.intellectualcrafters.json.Kim
+
+
Returns the number of bytes needed to contain the character in Kim + format. +
+
+
CHARSET - + Static variable in class com.intellectualcrafters.jnbt.NBTConstants +
+
 
+
chatColor(ChatColor) + - Static method in class com.intellectualcrafters.plot.util.ConsoleColors
+
 
+
checkConnection() + - Method in class com.intellectualcrafters.plot.database.Database
+
+
Checks if a connection is open with the database
+
+
checkConnection() + - Method in class com.intellectualcrafters.plot.database.MySQL
+
 
+
checkConnection() + - Method in class com.intellectualcrafters.plot.database.SQLite
+
 
+
checkForExpiredPlots() + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Check for expired plots
+
+
Claim - Class in com.intellectualcrafters.plot.commands +
+
 
+
Claim() - + Constructor for class com.intellectualcrafters.plot.commands.Claim
+
 
+
CLAIMED_WALL_BLOCK + - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
 
+
CLAIMED_WALL_BLOCK_DEFAULT + - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
 
+
claimPlot(Player, + Plot, boolean, boolean) - Static method in class com.intellectualcrafters.plot.commands.Claim
+
 
+
claimPlot(Player, + Plot, boolean, String, boolean) - Static method in class com.intellectualcrafters.plot.commands.Claim
+
 
+
claimPlot(Player, + Plot, boolean) - Static method in class com.intellectualcrafters.plot.commands.DebugClaimTest
+
 
+
claimPlot(Player, + Plot, boolean, String) - Static method in class com.intellectualcrafters.plot.commands.DebugClaimTest
+
 
+
Clear - Class in com.intellectualcrafters.plot.commands +
+
 
+
Clear() - + Constructor for class com.intellectualcrafters.plot.commands.Clear
+
 
+
clear(Player) + - Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Clear a plot
+
+
clear(World, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
clear(Player, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Clear a plot
+
+
clearAllEntities(World, + Plot, boolean) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
clearPlot(World, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Clearing the plot needs to only consider removing the blocks - This + implementation has used the SetCuboid function, as it is fast, and uses + NMS code - It also makes use of the fact that deleting chunks is a lot + faster than block updates This code is very messy, but you don't need to + do something quite as complex unless you happen to have 512x512 sized + plots +
+
+
clearPlot(World, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
clearTitle(Player) + - Method in class com.intellectualcrafters.plot.object.Title +
+
+
Clear the title
+
+
Clipboard - Class in com.intellectualcrafters.plot.commands +
+
 
+
Clipboard() + - Constructor for class com.intellectualcrafters.plot.commands.Clipboard
+
 
+
clone() - Method + in class com.intellectualcrafters.plot.object.Plot
+
+
Get a clone of the plot
+
+
close() - + Method in class com.intellectualcrafters.jnbt.NBTInputStream +
+
 
+
close() - + Method in class com.intellectualcrafters.jnbt.NBTOutputStream +
+
 
+
closeConnection() + - Method in class com.intellectualcrafters.plot.database.Database
+
+
Closes the connection with the database
+
+
closeConnection() + - Method in class com.intellectualcrafters.plot.database.MySQL
+
 
+
closeConnection() + - Method in class com.intellectualcrafters.plot.database.SQLite
+
 
+
cmd - + Variable in class com.intellectualcrafters.plot.commands.SubCommand
+
+
Command
+
+
com.intellectualcrafters.jnbt - package + com.intellectualcrafters.jnbt +
+
 
+
com.intellectualcrafters.json - package + com.intellectualcrafters.json +
+
 
+
com.intellectualcrafters.plot - package + com.intellectualcrafters.plot +
+
 
+
com.intellectualcrafters.plot.api - package + com.intellectualcrafters.plot.api +
+
 
+
com.intellectualcrafters.plot.commands + - package com.intellectualcrafters.plot.commands +
+
 
+
com.intellectualcrafters.plot.config - + package com.intellectualcrafters.plot.config +
+
 
+
com.intellectualcrafters.plot.database + - package com.intellectualcrafters.plot.database +
+
 
+
com.intellectualcrafters.plot.database.sqlobjects + - package com.intellectualcrafters.plot.database.sqlobjects +
+
 
+
com.intellectualcrafters.plot.events - + package com.intellectualcrafters.plot.events +
+
 
+
com.intellectualcrafters.plot.flag - + package com.intellectualcrafters.plot.flag +
+
 
+
+ com.intellectualcrafters.plot.generator + - package com.intellectualcrafters.plot.generator +
+
 
+
+ com.intellectualcrafters.plot.listeners + - package com.intellectualcrafters.plot.listeners +
+
 
+
com.intellectualcrafters.plot.object - + package com.intellectualcrafters.plot.object +
+
 
+
com.intellectualcrafters.plot.util - + package com.intellectualcrafters.plot.util +
+
 
+
com.intellectualcrafters.plot.uuid - + package com.intellectualcrafters.plot.uuid +
+
 
+
com.intellectualsites.translation - package + com.intellectualsites.translation +
+
 
+
+ com.intellectualsites.translation.bukkit + - package com.intellectualsites.translation.bukkit +
+
 
+
Command - Enum in com.intellectualcrafters.plot.commands +
+
+
Created by Citymonstret on 2014-08-03.
+
+
CommandPermission - Class + in + com.intellectualcrafters.plot.commands +
+
+
Created by Citymonstret on 2014-08-03.
+
+
CommandPermission(String) + - Constructor for class com.intellectualcrafters.plot.commands.CommandPermission
+
 
+
Comment - Class in com.intellectualcrafters.plot.commands +
+
 
+
Comment() + - Constructor for class com.intellectualcrafters.plot.commands.Comment
+
 
+
comment - + Variable in class com.intellectualcrafters.plot.object.PlotComment
+
 
+
compare(String, + String) - Static method in class com.intellectualcrafters.plot.util.StringComparison
+
+
Compare two strings
+
+
compareDirections(Location, + Location) - Method in class com.intellectualcrafters.plot.util.RUtils +
+
 
+
CompoundTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Compound tag.
+
+
CompoundTag(Map<String, + Tag>) - Constructor for class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Creates the tag with an empty name.
+
+
CompoundTag(String, + Map<String, Tag>) - Constructor for class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Creates the tag.
+
+
CompoundTagBuilder - Class in com.intellectualcrafters.jnbt
+
+
Helps create compound tags.
+
+
config - Static + variable in class com.intellectualcrafters.plot.PlotMain
+
+
The main configuration file
+
+
configFile - + Static variable in class com.intellectualcrafters.plot.PlotMain +
+
+
settings.properties
+
+
configs() - + Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Load configuration files
+
+
Configuration - Class in com.intellectualcrafters.plot.config +
+
+
Main Configuration Utility
+
+
Configuration() + - Constructor for class com.intellectualcrafters.plot.config.Configuration
+
 
+
Configuration.SettingValue + - Class in com.intellectualcrafters.plot.config +
+
+
Create your own SettingValue object to make the management of plotworld + configuration easier +
+
+
Configuration.SettingValue(String) + - Constructor for class com.intellectualcrafters.plot.config.Configuration.SettingValue
+
 
+
ConfigurationNode - Class + in com.intellectualcrafters.plot.config +
+
 
+
ConfigurationNode(String, + Object, String, Configuration.SettingValue, boolean) - Constructor for class + com.intellectualcrafters.plot.config.ConfigurationNode +
+
 
+
connection - + Static variable in class com.intellectualcrafters.plot.PlotMain +
+
+
MySQL Connection
+
+
ConsoleColors - Class in com.intellectualcrafters.plot.util
+
 
+
ConsoleColors() + - Constructor for class com.intellectualcrafters.plot.util.ConsoleColors
+
 
+
containsKey(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Returns whether this compound tag contains the given key.
+
+
convert(TranslationAsset) + - Static method in class com.intellectualsites.translation.bukkit.BukkitTranslation
+
+
Get the converted string
+
+
Cookie - Class in com.intellectualcrafters.json +
+
+
Convert a web browser cookie specification to a JSONObject and back.
+
+
Cookie() - + Constructor for class com.intellectualcrafters.json.Cookie +
+
 
+
CookieList - Class in com.intellectualcrafters.json +
+
+
Convert a web browser cookie list string to a JSONObject and back.
+
+
CookieList() + - Constructor for class com.intellectualcrafters.json.CookieList +
+
 
+
copy(byte[], + int) - Method in class com.intellectualcrafters.json.Kim +
+
+
Copy the contents of this kim to a byte array.
+
+
Copy - Class in com.intellectualcrafters.plot.commands +
+
 
+
Copy() - + Constructor for class com.intellectualcrafters.plot.commands.Copy
+
 
+
count - + Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
+
 
+
countsTowardsMax - Variable + in class com.intellectualcrafters.plot.object.Plot
+
 
+
create() + - Static method in class com.intellectualcrafters.jnbt.CompoundTagBuilder
+
+
Create a new builder instance.
+
+
create(Class<? + extends Tag>) - Static method in class com.intellectualcrafters.jnbt.ListTagBuilder +
+
+
Create a new builder instance.
+
+
create() - Method + in class com.intellectualcrafters.plot.database.sqlobjects.PlotTable
+
 
+
create() - Method + in class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
+
 
+
create(Object...) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
+
+
create new instance with constructor
+
+
CREATE_HELPERS + - Variable in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
CREATE_PLOT + - Variable in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
CREATE_PLOTS - Variable + in class com.intellectualcrafters.plot.database.SQLManager +
+
 
+
CREATE_SETTINGS + - Variable in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
createAllSettingsAndHelpers(ArrayList<Plot>) + - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Create all settings, and create default helpers, trusted + denied lists
+
+
createAllSettingsAndHelpers(ArrayList<Plot>) + - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
createAllSettingsAndHelpers(ArrayList<Plot>) + - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
createBuilder() + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Create a compound tag builder.
+
+
createConfiguration(PlotWorld) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
createGraph(String) + - Method in class com.intellectualcrafters.plot.util.Metrics +
+
+
Construct and create a Graph that can be used to separate specific + plotters to their own graphs on the metrics website. +
+
+
createId(int, + int) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
createPlot(Plot) + - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Create a plot
+
+
createPlot(Plot) + - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
+
Create a plot
+
+
createPlot(Plot) + - Method in class com.intellectualcrafters.plot.database.SQLManager
+
+
Create a plot
+
+
createPlot(Player, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
createPlots(ArrayList<Plot>) + - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Create a plot
+
+
createPlots(ArrayList<Plot>) + - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
createPlots(ArrayList<Plot>) + - Method in class com.intellectualcrafters.plot.database.SQLManager
+
+
Create a plot
+
+
createPlotSettings(int, + Plot) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Create plot settings
+
+
createPlotSettings(int, + Plot) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
+
Create plot settings
+
+
createPlotSettings(int, + Plot) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
+
Create plot settings
+
+
createRoadEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
PLOT MERGING
+
+
createRoadEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
createRoadSouth(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
createRoadSouth(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
createRoadSouthEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
createRoadSouthEast(PlotWorld, + Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
createTables(String, + boolean) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Create tables
+
+
createTables(String, + boolean) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
+
Create tables
+
+
createTables(String, + boolean) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
+
Create tables
+
+
createWith(T...) + - Static method in class com.intellectualcrafters.jnbt.ListTagBuilder +
+
+
Create a new builder instance.
+
+
CRLF - Static variable in + class com.intellectualcrafters.json.HTTP
+
+
Carriage return/line feed.
+
+
currentSelection + - Static variable in class com.intellectualcrafters.plot.object.PlotSelection
+
 
+
CUSTOM_API - Static variable + in class com.intellectualcrafters.plot.config.Settings +
+
+
Use the custom API
+
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-4.html b/PlotSquared/doc/index-files/index-4.html new file mode 100644 index 000000000..0a94bb364 --- /dev/null +++ b/PlotSquared/doc/index-files/index-4.html @@ -0,0 +1,462 @@ + + + + + + D-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

D

+
+
d() - Method in + enum com.intellectualcrafters.plot.config.C
+
+
Get the default string
+
+
data - Variable in + class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Block Data Value
+
+
data - + Variable in class com.intellectualcrafters.plot.object.PlotBlock
+
 
+
Database - Class + in com.intellectualcrafters.plot.commands +
+
+
Created 2014-11-15 for PlotSquared
+
+
Database() - + Constructor for class com.intellectualcrafters.plot.commands.Database
+
 
+
DATABASE - Static + variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL DB
+
+
Database - Class + in com.intellectualcrafters.plot.database +
+
+
Abstract Database class, serves as a base for any connection method (MySQL, + SQLite, etc.) +
+
+
Database(Plugin) + - Constructor for class com.intellectualcrafters.plot.database.Database
+
+
Creates a new Database
+
+
DBFunc - Class in + com.intellectualcrafters.plot.database +
+
 
+
DBFunc() - Constructor + for class com.intellectualcrafters.plot.database.DBFunc
+
 
+
dbManager + - Static variable in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
Debug - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Debug() - Constructor for + class com.intellectualcrafters.plot.commands.Debug +
+
 
+
DEBUG + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Verbose?
+
+
debug(PrintStream) + - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
DebugClaimTest - + Class in com.intellectualcrafters.plot.commands +
+
 
+
DebugClaimTest() + - Constructor for class com.intellectualcrafters.plot.commands.DebugClaimTest
+
 
+
DebugLoadTest - + Class in com.intellectualcrafters.plot.commands +
+
 
+
DebugLoadTest() + - Constructor for class com.intellectualcrafters.plot.commands.DebugLoadTest
+
 
+
DebugSaveTest - + Class in com.intellectualcrafters.plot.commands +
+
 
+
DebugSaveTest() + - Constructor for class com.intellectualcrafters.plot.commands.DebugSaveTest
+
 
+
DEFAULT_FLAGS + - Variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
DEFAULT_FLAGS_DEFAULT + - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
+
 
+
DefaultPlotManager - Class in com.intellectualcrafters.plot.generator +
+
 
+
DefaultPlotManager() + - Constructor for class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
DefaultPlotWorld + - Class in com.intellectualcrafters.plot.generator +
+
 
+
DefaultPlotWorld(String) + - Constructor for class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
 
+
dehexchar(char) + - Static method in class com.intellectualcrafters.json.JSONTokener
+
+
Get the hex value of a character (base16).
+
+
Delete - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Delete() - Constructor + for class com.intellectualcrafters.plot.commands.Delete
+
 
+
delete(String, + Plot) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Delete a plot
+
+
delete(String, + Plot) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
+
Delete a plot
+
+
delete(String, + Plot) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
+
Delete a plot
+
+
delete - + Variable in class com.intellectualcrafters.plot.object.Plot
+
+
Delete on next save cycle?
+
+
DELETE_PLOTS_ON_BAN + - Static variable in class com.intellectualcrafters.plot.config.Settings
+
+
Delete plots on ban?
+
+
Denied - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Denied() - Constructor + for class com.intellectualcrafters.plot.commands.Denied
+
 
+
denied - + Variable in class com.intellectualcrafters.plot.object.Plot
+
+
List of denied players
+
+
deny_entry - Variable in + class com.intellectualcrafters.plot.object.Plot +
+
+
Deny Entry
+
+
deny_entry(Player) + - Method in class com.intellectualcrafters.plot.object.Plot
+
+
Should the player be allowed to enter?
+
+
DEOP - Class in + com.intellectualcrafters.plot.commands +
+
+
Created 2014-11-09 for PlotSquared
+
+
DEOP() + - Constructor for class com.intellectualcrafters.plot.commands.DEOP
+
 
+
description + - Variable in class com.intellectualcrafters.plot.commands.SubCommand
+
+
Simple description
+
+
direction(float) + - Static method in class com.intellectualcrafters.plot.commands.Merge
+
 
+
disable() - Method in + class com.intellectualcrafters.plot.util.Metrics +
+
+
Disables metrics for the server by setting "opt-out" to true in the + config file and canceling the metrics task. +
+
+
display() + - Method in class com.intellectualcrafters.plot.object.InfoInventory
+
 
+
DOUBLE + - Static variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
DoubleTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Double tag.
+
+
DoubleTag(double) + - Constructor for class com.intellectualcrafters.jnbt.DoubleTag
+
+
Creates the tag with an empty name.
+
+
DoubleTag(String, + double) - Constructor for class com.intellectualcrafters.jnbt.DoubleTag +
+
+
Creates the tag.
+
+
doubleToString(double) + - Static method in class com.intellectualcrafters.json.JSONObject
+
+
Produce a string from a double.
+
+
downloads + - Static variable in class com.intellectualcrafters.plot.commands.plugin
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-5.html b/PlotSquared/doc/index-files/index-5.html new file mode 100644 index 000000000..4f4f3ed50 --- /dev/null +++ b/PlotSquared/doc/index-files/index-5.html @@ -0,0 +1,583 @@ + + + + + + E-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

E

+
+
economy - + Static variable in class com.intellectualcrafters.plot.PlotMain
+
+
Economy Object (vault)
+
+
enable() - Method in class + com.intellectualcrafters.plot.util.Metrics
+
+
Enables metrics for the server by setting "opt-out" to false in the + config file and starting the metrics task. +
+
+
end() - + Method in class com.intellectualcrafters.json.JSONTokener +
+
 
+
endArray() - Method in + class com.intellectualcrafters.json.JSONWriter
+
+
End an array.
+
+
endObject() + - Method in class com.intellectualcrafters.json.JSONWriter +
+
+
End an object.
+
+
EndTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_End tag.
+
+
EndTag() - + Constructor for class com.intellectualcrafters.jnbt.EndTag +
+
+
Creates the tag.
+
+
englishAmerican + - Static variable in class com.intellectualsites.translation.TranslationLanguage
+
 
+
englishBritish + - Static variable in class com.intellectualsites.translation.TranslationLanguage
+
 
+
enteredPlot(Location, + Location) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
entity - + Static variable in class com.intellectualcrafters.json.XMLTokener
+
+
The table of entity values.
+
+
EntityListener - + Class in com.intellectualcrafters.plot.listeners +
+
 
+
EntityListener() + - Constructor for class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
entityMap + - Static variable in class com.intellectualcrafters.plot.listeners.EntityListener
+
 
+
EQ - Static variable + in class com.intellectualcrafters.json.XML
+
+
The Character '='.
+
+
equals(Object) + - Method in class com.intellectualcrafters.json.Kim +
+
+
Two kim objects containing exactly the same bytes in the same order are + equal to each other. +
+
+
equals(Object) + - Method in class com.intellectualcrafters.plot.flag.AbstractFlag
+
 
+
equals(Object) + - Method in class com.intellectualcrafters.plot.flag.Flag
+
 
+
equals(Object) + - Method in class com.intellectualcrafters.plot.object.Plot
+
 
+
equals(Object) + - Method in class com.intellectualcrafters.plot.object.PlotId
+
 
+
equals(Object) + - Method in class com.intellectualcrafters.plot.object.StringWrapper
+
+
Check if a wrapped string equals another one
+
+
equals(Object) + - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
+
 
+
equals(Object) + - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
+
 
+
escape(String) + - Static method in class com.intellectualcrafters.json.Cookie +
+
+
Produce a copy of a string in which the characters '+', '%', '=', ';' + and control characters are replaced with "%hh". +
+
+
escape(String) + - Static method in class com.intellectualcrafters.json.XML +
+
+
Replace special characters with XML escapes: +

+ + & + (ampersand) + is replaced by &amp; + < + (less than) + is replaced by &lt; + > + (greater than) + is replaced by &gt; + " + (double quote) + is replaced by &quot; +

+
+
everyone - Static + variable in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
The UUID that will count as everyone
+
+
everyone - Static + variable in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Auto
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Ban
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Claim
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Clear
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Clipboard
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Comment
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Copy
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Database
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Debug
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.DebugClaimTest
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.DebugLoadTest
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.DebugSaveTest
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Delete
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Denied
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.DEOP
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Help
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Helpers
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Home
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Inbox
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Info
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Inventory
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Kick
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.list
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Merge
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.MusicSubcommand
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.OP
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Paste
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.plugin
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Purge
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Rate
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Reload
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Schematic
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Set
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.SetOwner
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Setup
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.SubCommand
+
+
Execute.
+
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Swap
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.TP
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Trusted
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Unban
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Unlink
+
 
+
execute(Player, + String...) - Method in class com.intellectualcrafters.plot.commands.Visit
+
 
+
executeConsole(String...) + - Method in class com.intellectualcrafters.plot.commands.SubCommand
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-6.html b/PlotSquared/doc/index-files/index-6.html new file mode 100644 index 000000000..d8fc556d8 --- /dev/null +++ b/PlotSquared/doc/index-files/index-6.html @@ -0,0 +1,386 @@ + + + + + + F-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

F

+
+
fancyHeader(String...) + - Method in class com.intellectualsites.translation.YamlTranslationFile
+
+
Set a fancy header
+
+
findConstructor(int) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find constructor by number of arguments
+
+
findField(ReflectionUtils.RefClass) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find field by type
+
+
findField(Class) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find field by type
+
+
findMethod(Object...) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find method by type parameters
+
+
findMethodByName(String...) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find method by name
+
+
findMethodByReturnType(ReflectionUtils.RefClass) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find method by return value
+
+
findMethodByReturnType(Class) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
find method by return value
+
+
finishPlotMerge(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Finishing off plot merging by adding in the walls surrounding the plot + (OPTIONAL)(UNFINISHED) +
+
+
finishPlotMerge(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
finishPlotUnlink(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
 
+
finishPlotUnlink(World, + PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
Flag - Class in com.intellectualcrafters.plot.flag +
+
 
+
Flag(AbstractFlag, + String) - Constructor for class com.intellectualcrafters.plot.flag.Flag
+
+
Flag object used to store basic information for a Plot.
+
+
FlagManager - Class + in + com.intellectualcrafters.plot.flag +
+
+
Flag Manager Utility
+
+
FlagManager() + - Constructor for class com.intellectualcrafters.plot.flag.FlagManager
+
 
+
flags + - Variable in class com.intellectualcrafters.plot.listeners.WorldGuardListener
+
 
+
FlagValue<T> + - Class in com.intellectualcrafters.plot.flag +
+
+
Created 2014-11-17 for PlotSquared
+
+
FlagValue() - + Constructor for class com.intellectualcrafters.plot.flag.FlagValue
+
 
+
FlagValue(Class<T>) + - Constructor for class com.intellectualcrafters.plot.flag.FlagValue
+
 
+
FlagValue.BooleanValue - Class in com.intellectualcrafters.plot.flag +
+
 
+
FlagValue.BooleanValue() + - Constructor for class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
+
 
+
FlagValue.StringValue + - Class in com.intellectualcrafters.plot.flag +
+
 
+
FlagValue.StringValue() + - Constructor for class com.intellectualcrafters.plot.flag.FlagValue.StringValue
+
 
+
FlatFileManager - + Class in com.intellectualcrafters.plot.database +
+
+
Created by Citymonstret on 2014-09-23.
+
+
FlatFileManager() + - Constructor for class com.intellectualcrafters.plot.database.FlatFileManager
+
 
+
FloatTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Float tag.
+
+
FloatTag(float) + - Constructor for class com.intellectualcrafters.jnbt.FloatTag
+
+
Creates the tag with an empty name.
+
+
FloatTag(String, + float) - Constructor for class com.intellectualcrafters.jnbt.FloatTag +
+
+
Creates the tag.
+
+
ForceFieldListener - Class in com.intellectualcrafters.plot.listeners +
+
 
+
ForceFieldListener(JavaPlugin) + - Constructor for class com.intellectualcrafters.plot.listeners.ForceFieldListener
+
 
+
forceTexture(Player) + - Method in class com.intellectualcrafters.plot.util.RUtils
+
+
Force textures on the client
+
+
formatTime(double) + - Static method in class com.intellectualcrafters.plot.util.RUtils
+
+
Get formatted time
+
+
fromBytes(byte[]) + - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
+
 
+
fromChatColor(ChatColor) + - Static method in class com.intellectualcrafters.plot.util.ConsoleColors
+
 
+
fromString(String) + - Static method in class com.intellectualcrafters.plot.object.PlotId
+
+
Get a Plot Id based on a string
+
+
fromString(String) + - Static method in class com.intellectualcrafters.plot.util.ConsoleColors
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-7.html b/PlotSquared/doc/index-files/index-7.html new file mode 100644 index 000000000..ae2c9daec --- /dev/null +++ b/PlotSquared/doc/index-files/index-7.html @@ -0,0 +1,2583 @@ + + + + + + G-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

G

+
+
gcd(int, + int) - Static method in class com.intellectualcrafters.plot.config.Configuration
+
 
+
generateExtBlockSections(World, + Random, int, int, ChunkGenerator.BiomeGrid) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
This part is a fucking mess. - Refer to a proper tutorial if you would + like to learn how to make a world generator +
+
+
get(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Get the object value associated with an index.
+
+
get(String) - Method in + class com.intellectualcrafters.json.JSONObject
+
+
Get the value object associated with a key.
+
+
get(int) - Method in + class com.intellectualcrafters.json.Kim
+
+
Get a byte from a kim.
+
+
get() - + Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
+
+
get field value for applied object
+
+
get(String) + - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
get(UUID) + - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
get(String) + - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
+
 
+
get(UUID) - Method in + interface com.intellectualcrafters.plot.uuid.UUIDSaver +
+
 
+
GET_ALL_PLOTS - + Variable in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
getAbstractFlag() - Method + in class com.intellectualcrafters.plot.flag.Flag
+
+
Get the AbstractFlag used in creating the flag
+
+
getAlias() - Method in enum + com.intellectualcrafters.plot.commands.Command
+
 
+
getAlias() - Method in + class com.intellectualcrafters.plot.object.PlotSettings +
+
 
+
getAllowedPlots(Player) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the numbers of plots, which the player is able to build in
+
+
getAllowedPlots(Player) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Get the maximum number of plots a player is allowed
+
+
getAllPlots() - Method in + class com.intellectualcrafters.plot.api.PlotAPI
+
+
Get all plots
+
+
getAllPlotsRaw() + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getBestMatch() + - Method in class com.intellectualcrafters.plot.util.StringComparison
+
+
Get the best match value
+
+
getBestMatchAdvanced() + - Method in class com.intellectualcrafters.plot.util.StringComparison
+
+
Will return both the match number, and the actual match string
+
+
getBiome() - Method in + class com.intellectualcrafters.plot.object.PlotSettings +
+
 
+
getBlock(String) + - Method in class com.intellectualcrafters.plot.generator.XPopulator
+
 
+
getBlock(String) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getBlock() + - Method in class com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
+
 
+
getBlockCollection() + - Method in class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
+
 
+
getBlocks() - Method in + class com.intellectualcrafters.plot.object.PlotSelection +
+
 
+
getBoolean(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Get the boolean value associated with an index.
+
+
getBoolean(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the boolean value associated with a key.
+
+
getBottomLocation(Plot) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get Bottom Location (min, min, min)
+
+
getBottomPlot(World, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
getByte(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a byte named with the given key.
+
+
getByte(int) - + Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get a byte named with the given index.
+
+
getByteArray(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a byte array named with the given key.
+
+
getByteArray(int) + - Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get a byte array named with the given index.
+
+
getCaptions() - Method in + class com.intellectualcrafters.plot.api.PlotAPI
+
+
C class contains all the captions from the translations.yml file.
+
+
getCause() + - Method in exception com.intellectualcrafters.json.JSONException +
+
+
Returns the cause of this exception or null if the cause is nonexistent + or unknown. +
+
+
getChildTag(Map<String, + Tag>, String, Class<T>) - Static method in class com.intellectualcrafters.jnbt.NBTUtils
+
+
Get child tag of a NBT structure.
+
+
getClassFromType(int) + - Static method in class com.intellectualcrafters.jnbt.NBTConstants +
+
+
Convert a type ID to its corresponding Tag + class. +
+
+
getColumnName() + - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
+
+
Get the column name for the plotted point
+
+
getCommand() + - Method in enum com.intellectualcrafters.plot.commands.Command
+
 
+
getCommands(SubCommand.CommandCategory, + Player) - Static method in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
getCommenst(String, + Plot, int) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
getComments(String, + Plot, int) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Get Plot Comments
+
+
getComments(String, + Plot, int) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
getComments(int) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
getCompoundTag(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.SchematicHandler
+
+
Gets the schematic of a plot
+
+
getConfig() + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
 
+
getConfigFile() - Method in + class com.intellectualcrafters.plot.util.Metrics
+
+
Gets the File object of the config file that should be used to store data + such as the GUID and opt-out status +
+
+
getConnection() + - Method in class com.intellectualcrafters.plot.database.Database
+
+
Gets the connection with the database
+
+
getConnection() - Method + in class com.intellectualcrafters.plot.database.MySQL +
+
 
+
getConnection() - Method + in class com.intellectualcrafters.plot.database.SQLite +
+
 
+
getConnection() - Static method + in class com.intellectualcrafters.plot.PlotMain
+
+
Get MySQL Connection
+
+
getConstant() + - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
+
 
+
getConstructor(Object...) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
get existing constructor by types
+
+
getCountryCode() + - Method in class com.intellectualsites.translation.TranslationLanguage
+
 
+
getCreationDescription() + - Method in class com.intellectualsites.translation.TranslationObject
+
 
+
getCurrentPlot(Location) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
getCurrentPlot(Player) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Returns the plot a player is currently in.
+
+
getCurrentPlot(Location) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Returns the plot at a given location
+
+
getCycler() - Method in class + com.intellectualcrafters.plot.util.LSetCube
+
+
Creates a LCycler for the cube.
+
+
getData() + - Method in class com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
+
 
+
getDefault(String) + - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
getDefaultLanguage() + - Method in class com.intellectualsites.translation.bukkit.BukkitTranslation
+
+
The default translation language
+
+
getDefaultPopulators(World) + - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Return the block populator
+
+
getDefaultValue() + - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
+
 
+
getDefaultValue() + - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
+
 
+
getDefaultValue() + - Method in class com.intellectualsites.translation.TranslationObject
+
 
+
getDefaultWorldGenerator(String, + String) - Method in class com.intellectualcrafters.plot.PlotMain
+
+
!!
+
+
getDescription() + - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
+
 
+
getDescription() + - Method in class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
+
 
+
getDescription() + - Method in class com.intellectualcrafters.plot.flag.FlagValue +
+
 
+
getDescription() + - Method in class com.intellectualcrafters.plot.flag.FlagValue.StringValue
+
 
+
getDescription(String) + - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
getDescription() + - Method in class com.intellectualsites.translation.TranslationObject
+
 
+
getDirection(Location) + - Method in class com.intellectualcrafters.plot.util.RUtils +
+
 
+
getDisplayName() - Method + in class com.intellectualcrafters.plot.object.Plot
+
+
Get plot display name
+
+
getDouble(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a double named with the given key.
+
+
getDouble(int) - Method in class + com.intellectualcrafters.jnbt.ListTag
+
+
Get a double named with the given index.
+
+
getDouble(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Get the double value associated with an index.
+
+
getDouble(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the double value associated with a key.
+
+
getElapsed(int) - Static method + in class com.intellectualcrafters.plot.util.Lag
+
+
Get number of ticks since
+
+
getEntities(World) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getField(String) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
get field by name
+
+
getFieldRefClass() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
+
 
+
getFields() + - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
+
 
+
getFile() + - Method in class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
+
 
+
getFixedSpawnLocation(World, + Random) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Return the default spawn location for this world
+
+
getFlag() + - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
+
Get the flag involved
+
+
getFlag() - Method + in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
+
Get the flag involved
+
+
getFlag(String) + - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
+
Get an AbstractFlag by a string Returns null if flag does not exist
+
+
getFlag(String, + boolean) - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
+
Get an AbstractFlag by a string
+
+
getFlag(String) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
+
Get a flag
+
+
getFlagManager() - Method + in class com.intellectualcrafters.plot.api.PlotAPI
+
+
FlagManager class contains methods relating to plot flags
+
+
getFlags() - + Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
get all the currently registered flags
+
+
getFlags() - Static method + in class com.intellectualcrafters.plot.flag.FlagManager +
+
+
Get a list of registered AbstractFlag objects
+
+
getFlags(Player) + - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
+
Get a list of registerd AbstragFlag objects based on player permissions
+
+
getFlags() - Method in + class com.intellectualcrafters.plot.object.PlotSettings +
+
+
Get all flags applied for the plot
+
+
getFlagValue(String) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
getFloat(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a float named with the given key.
+
+
getFloat(int) + - Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get a float named with the given index.
+
+
getFreeRam() - Static method in + class com.intellectualcrafters.plot.util.RUtils
+
+
Get the total free ram
+
+
getFrom() + - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
+
Get the from location
+
+
getFullPercentage() + - Static method in class com.intellectualcrafters.plot.util.Lag +
+
+
Get TPS percentage (of 20)
+
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlotClearEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlotMergeEvent
+
 
+
getHandlerList() + - Static method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
+
 
+
getHandlers() + - Method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
+
 
+
getHeader() + - Method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
+
 
+
getHeighestBlock(World, + int, int) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getHomeLocation(Plot) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get home location
+
+
getId(String, + PlotId) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Get the table entry ID
+
+
getId(String, + PlotId) - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
+
Get a plot id
+
+
getId(String, + PlotId) - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
getId() - Method + in class com.intellectualcrafters.plot.object.Plot
+
+
Get the plot ID
+
+
getIfExists(int) - Method in + class com.intellectualcrafters.jnbt.ListTag
+
+
Get the tag if it exists at the given index.
+
+
getInitiator() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
+
The player initiating the action
+
+
getInitiator() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
+
The player initiating the action
+
+
getInitiator() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
+
The player initiating the action
+
+
getInt(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get an int named with the given key.
+
+
getInt(int) - + Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get an int named with the given index.
+
+
getInt(int) - + Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the int value associated with an index.
+
+
getInt(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the int value associated with a key.
+
+
getIntArray(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a int[] named with the given key.
+
+
getIntArray(int) - Method in + class com.intellectualcrafters.jnbt.ListTag
+
+
Get a int[] named with the given index.
+
+
getInventory() + - Method in class com.intellectualcrafters.plot.object.InfoInventory
+
 
+
getJavaClass() + - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
+
 
+
getJoinMessage() + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
getJSONArray(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Get the JSONArray associated with an index.
+
+
getJSONArray(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the JSONArray value associated with a key.
+
+
getJSONObject(int) - Method + in class com.intellectualcrafters.json.JSONArray
+
+
Get the JSONObject associated with an index.
+
+
getJSONObject(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the JSONObject value associated with a key.
+
+
getKey() + - Method in class com.intellectualcrafters.plot.flag.AbstractFlag
+
+
AbstractFlag key
+
+
getKey() - Method + in class com.intellectualcrafters.plot.flag.Flag
+
+
Get the key for the AbstractFlag
+
+
getKey() - Method in + class com.intellectualsites.translation.TranslationObject +
+
 
+
getLang() - Method in + class com.intellectualsites.translation.TranslationAsset +
+
 
+
getLanguage() - Method + in class com.intellectualsites.translation.TranslationFile +
+
+
A method used to get the language of the file
+
+
getLanguage() + - Method in class com.intellectualsites.translation.YamlTranslationFile
+
+
Get the translation language
+
+
getLanguageCode() + - Method in class com.intellectualsites.translation.TranslationLanguage
+
 
+
getLastPlayed(UUID) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getLeaveMessage() + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
+
Get the "farewell" flag value
+
+
getLength() + - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
+
 
+
getList(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a list of tags named with the given key.
+
+
getList(String, + Class<T>) - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a list of tags named with the given key.
+
+
getList(int) - + Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get a list of tags named with the given index.
+
+
getList(int, + Class<T>) - Method in class com.intellectualcrafters.jnbt.ListTag +
+
+
Get a list of tags named with the given index.
+
+
getListTag(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a TagList named with the given key.
+
+
getListTag(int) - Method in + class com.intellectualcrafters.jnbt.ListTag
+
+
Get a TagList named with the given index.
+
+
getLoadedChunks(World) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getLocations(Plot) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get plot locations
+
+
getLong(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a long named with the given key.
+
+
getLong(int) - + Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get a long named with the given index.
+
+
getLong(int) + - Method in class com.intellectualcrafters.json.JSONArray
+
+
Get the long value associated with an index.
+
+
getLong(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the long value associated with a key.
+
+
getMain() - + Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the main class for this plugin
+ - Contains a lot of fields and methods - not very well organized
+ Only use this if you really need it +
+
+
getMain() - + Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Returns the main class.
+
+
getMatchObject() + - Method in class com.intellectualcrafters.plot.util.StringComparison
+
+
Get the object
+
+
getMaterial() + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
+
 
+
getMaxPlotSelectionIds(World, + PlotId, PlotId) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
getMerged(int) + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
+
Check if the plot is merged in a direction
+ 0 = North
+ 1 = East
+ 2 = South
+ 3 = West
+
+
getMerged() + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
 
+
getMethod(String, + Object...) - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
get existing method by name and types
+
+
getName() - Method in + class com.intellectualcrafters.jnbt.Tag
+
+
Gets the name of this tag.
+
+
getName(UUID) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
getName() - Method in class + com.intellectualcrafters.plot.util.Metrics.Graph
+
+
Gets the graph's name
+
+
getName(UUID) + - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
 
+
getName() - + Method in class com.intellectualcrafters.plot.uuid.UUIDSet +
+
 
+
getName() + - Method in class com.intellectualsites.translation.TranslationLanguage
+
 
+
getNames(JSONObject) + - Static method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an array of field names from a JSONObject.
+
+
getNames(Object) + - Static method in class com.intellectualcrafters.json.JSONObject +
+
+
Get an array of field names from an Object.
+
+
getNewPlotWorld(String) + - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Get a new plotworld class For square plots you can use the + DefaultPlotWorld class which comes with PlotSquared +
+
+
getNewPlotWorld(String) + - Method in class com.intellectualcrafters.plot.object.PlotGenerator
+
 
+
getNext() - Method in + class com.intellectualcrafters.plot.util.LSetCube.LCycler +
+
 
+
getNextPlot(PlotId, + int) - Static method in class com.intellectualcrafters.plot.commands.Auto
+
 
+
getObject() - Method in + class com.intellectualsites.translation.TranslationAsset +
+
 
+
getOwner() - + Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Get the UUID of the owner
+
+
getParent(JavaPlugin) + - Static method in class com.intellectualsites.translation.bukkit.BukkitTranslation
+
+
Get the universal parent based on the plugin data folder
+
+
getPercentage() - Static method + in class com.intellectualcrafters.plot.util.Lag
+
+
Get lag percentage
+
+
getPermission() + - Method in enum com.intellectualcrafters.plot.commands.Command
+
 
+
getPlayer() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
+
The player added/removed
+
+
getPlayer() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
+
The UUID added/removed
+
+
getPlayer() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
+
The UUID added/removed
+
+
getPlayerFunctions() + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
PlayerFunctions class contains useful methods relating to players - Some + player/plot methods are here as well +
+
+
getPlayerName(UUID) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getPlayerPlotCount(World, + Player) - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the player plot count
+
+
getPlayerPlotCount(World, + Player) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Get the number of plots for a player
+
+
getPlayerPlots(Player) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Return all plots for a player
+
+
getPlayerPlots(World, + Player) - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get a collection containing the players plots
+
+
getPlayerPlots(World, + Player) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Get the plots for a player
+
+
getPlot(World, + int, int) - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get a plot based on the ID
+
+
getPlot(Location) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get a plot based on the location
+
+
getPlot(Player) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get a plot based on the player location
+
+
getPlot() - Method + in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
+
Get the plot involved
+
+
getPlot() - Method + in class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
+
+
Get the plot involved
+
+
getPlot() - Method + in class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
+
+
Get the plot involved
+
+
getPlot() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
+
+
The plot involved
+
+
getPlot() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
+
+
The plot involved
+
+
getPlot() + - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
+
+
The plot involved
+
+
getPlot() + - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
+
Get the plot involved
+
+
getPlot() + - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
+
Get the plot involved
+
+
getPlot() - Method + in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
+
Get the plot involved
+
+
getPlot() - Method in + class com.intellectualcrafters.plot.events.PlotMergeEvent +
+
+
Get the main plot
+
+
getPlot(Player) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
getPlot() - Method in + class com.intellectualcrafters.plot.object.PlotSelection +
+
 
+
getPlot(Location) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Returns the plot id at a location (mega plots are considered)
+
+
getPlot(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Fetches the plot from the main class
+
+
getPlotAbs(Location) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Returns the plot at a location (mega plots are not considered, all plots + are treated as small plots) +
+
+
getPlotBottomLoc(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Gets the bottom loc of a plot (if mega, returns bottom loc of that mega + plot) + - If you would like each plot treated as a small plot use + getPlotBottomLocAbs(...) +
+
+
getPlotBottomLocAbs(PlotWorld, + PlotId) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Get the bottom plot loc (some basic math)
+
+
getPlotBottomLocAbs(PlotWorld, + PlotId) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
getPlotBottomLocAbs(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Gets the bottom plot location of a plot (all plots are treated as small + plots) + - To get the top loc of a mega plot use getPlotBottomLoc(...) +
+
+
getPlotFlags(Plot) + - Static method in class com.intellectualcrafters.plot.flag.FlagManager
+
+
Get the flags for a plot
+
+
getPlotHelper() + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
PlotHelper class contains useful methods relating to plots.
+
+
getPlotHome(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getPlotHome(World, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getPlotId() - Method + in class com.intellectualcrafters.plot.events.PlotClearEvent +
+
+
Get the PlotId
+
+
getPlotId() - Method + in class com.intellectualcrafters.plot.events.PlotDeleteEvent +
+
+
Get the PlotId
+
+
getPlotId(PlotWorld, + Location) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Some complex stuff for traversing mega plots (return getPlotIdAbs if you + do not support mega plots) +
+
+
getPlotId(PlotWorld, + Location) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
getPlotIdAbs(PlotWorld, + Location) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Default implementation of getting a plot at a given location For a + simplified explanation of the math involved: - Get the current coords - + shift these numbers down to something relatable for a single plot + (similar to reducing trigonometric functions down to the first quadrant) + - e.g. +
+
+
getPlotIdAbs(PlotWorld, + Location) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
getPlotIdRelative(PlotId, + int) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
direction 0 = north, 1 = south, etc:
+
+
getPlotMain() - Method in + class com.intellectualcrafters.plot.api.PlotAPI
+
+
Get the plotMain class
+
+
getPlotManager(World) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the plot manager for a world. - Most of these methods can be accessed + through the PlotHelper +
+
+
getPlotManager(String) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the plot manager for a world. - Contains useful low level methods for + plot merging, clearing, and tessellation +
+
+
getPlotManager() + - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
+
+
Return the plot manager for this type of generator, or create one For + square plots you may as well use the default plot manager which comes + with PlotSquared +
+
+
getPlotManager() + - Method in class com.intellectualcrafters.plot.object.PlotGenerator
+
 
+
getPlotManager(World) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getPlotManager(String) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getPlots(World, + Player, boolean) - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get all plots for the player
+
+
getPlots(World) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get all plots for the world
+
+
getPlots(UUID) + - Method in class com.intellectualcrafters.plot.commands.Visit
+
 
+
getPlots() - Method in + interface com.intellectualcrafters.plot.database.AbstractDB +
+
 
+
getPlots() - Static method in + class com.intellectualcrafters.plot.database.DBFunc +
+
 
+
getPlots() - Method in + class com.intellectualcrafters.plot.database.SQLManager +
+
 
+
getPlots() + - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
+
+
Get the plots being added;
+
+
getPlots() - Method in + class com.intellectualcrafters.plot.events.PlotUnlinkEvent +
+
+
Get the plots involved
+
+
getPlots() - + Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Get all plots
+
+
getPlots(Player) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getPlots(World, + Player) - Static method in class com.intellectualcrafters.plot.PlotMain
+
 
+
getPlots(String) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getPlots(World) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getPlots() + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
+
Deprecated. 
+
+
getPlotSelectionIds(World, + PlotId, PlotId) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
getPlotsSorted() + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Get a sorted list of plots
+
+
getPlotters() - Method + in class com.intellectualcrafters.plot.util.Metrics.Graph +
+
+
Gets an unmodifiable set of the plotter objects in the graph
+
+
getPlotTopLoc(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Gets the top loc of a plot (if mega, returns top loc of that mega plot) + - If you would like each plot treated as a small plot use + getPlotTopLocAbs(...) +
+
+
getPlotTopLocAbs(PlotWorld, + PlotId) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Get the top plot loc (some basic math)
+
+
getPlotTopLocAbs(PlotWorld, + PlotId) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
getPlotTopLocAbs(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Gets the top plot location of a plot (all plots are treated as small + plots) + - To get the top loc of a mega plot use getPlotTopLoc(...) +
+
+
getPlotWidth(World, + PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
+
Obtains the width of a plot (x width)
+
+
getPlotWorld(World) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
getPlotWorlds() + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get all plot worlds
+
+
getPlotWorlds() - Static method + in class com.intellectualcrafters.plot.PlotMain
+
+
get all plot worlds
+
+
getPlotWorldsString() + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getPosition() - Method + in class com.intellectualcrafters.plot.object.PlotSettings +
+
 
+
getRamPercentage() + - Static method in class com.intellectualcrafters.plot.util.RUtils
+
+
Percentage of used ram
+
+
getRatings(Plot) + - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
+
Get Plots ratings
+
+
getRatings(Plot) + - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
getRatings(Plot) + - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
getRealClass() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
get passed class
+
+
getRealConstructor() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
+
 
+
getRealField() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
+
 
+
getRealMethod() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
+
 
+
getRefClass(String...) + - Static method in class com.intellectualcrafters.plot.util.ReflectionUtils
+
+
Get class for name.
+
+
getRefClass(Class) + - Static method in class com.intellectualcrafters.plot.util.ReflectionUtils
+
+
get RefClass object by real class
+
+
getRefClass() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
+
 
+
getRefClass() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
+
 
+
getRefClass() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
+
 
+
getReturnRefClass() + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
+
 
+
getSchematic(String) + - Static method in class com.intellectualcrafters.plot.util.SchematicHandler
+
+
Get a schematic
+
+
getSchematicDimension() + - Method in class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
+
 
+
getSchematicHandler() + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
SchematicHandler class contains methods related to pasting schematics
+
+
getSettingNodes() + - Method in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
+
+
CONFIG NODE | DEFAULT VALUE | DESCRIPTION | CONFIGURATION TYPE | REQUIRED + FOR INITIAL SETUP +

+ Set the last boolean to false if you do not require a specific config + node to be set while using the setup command - this may be useful if a + config value can be changed at a later date, and has no impact on the + actual world generation +

+
+
getSettingNodes() + - Method in class com.intellectualcrafters.plot.object.PlotWorld
+
+
Used for the /plot setup command Return null if you do not want to + support this feature +
+
+
getSettings(int) + - Method in interface com.intellectualcrafters.plot.database.AbstractDB
+
 
+
getSettings(int) + - Static method in class com.intellectualcrafters.plot.database.DBFunc
+
 
+
getSettings(int) + - Method in class com.intellectualcrafters.plot.database.SQLManager
+
 
+
getShort(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a short named with the given key.
+
+
getShort(int) + - Method in class com.intellectualcrafters.jnbt.ListTag
+
+
Get a short named with the given index.
+
+
getSignLoc(World, + PlotWorld, Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Remove sign for a plot
+
+
getSignLoc(World, + PlotWorld, Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
getStorage() - Method in class + com.intellectualcrafters.plot.api.PlotAPI
+
 
+
getString(String) + - Method in class com.intellectualcrafters.jnbt.CompoundTag +
+
+
Get a string named with the given key.
+
+
getString(int) - Method in class + com.intellectualcrafters.jnbt.ListTag
+
+
Get a string named with the given index.
+
+
getString(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Get the string associated with an index.
+
+
getString(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Get the string associated with a key.
+
+
getStringSized(int, + String) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getTileEntities(World) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getTopLocation(Plot) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get Top Location (max, max, max)
+
+
getTopPlot(World, + Plot) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
getTotalRam() - Static method + in class com.intellectualcrafters.plot.util.RUtils
+
+
Get the total allocated ram
+
+
getTPS() - Static + method in class com.intellectualcrafters.plot.util.Lag +
+
+
Get the server TPS
+
+
getTPS(int) - + Static method in class com.intellectualcrafters.plot.util.Lag +
+
+
Return the tick per second (measured in $ticks)
+
+
getTranslated() + - Method in class com.intellectualsites.translation.TranslationAsset
+
 
+
getTranslated(String, + String) - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
getTranslated(String, + TranslationLanguage) - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
getTranslated(TranslationObject, + TranslationLanguage) - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
getTranslation(String, + TranslationLanguage) - Method in class com.intellectualsites.translation.TranslationManager
+
 
+
getType() - Method + in class com.intellectualcrafters.jnbt.ListTag
+
+
Gets the type of item in this list.
+
+
getType() + - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
+
 
+
getType() - Method in + class com.intellectualcrafters.plot.config.ConfigurationNode +
+
 
+
getType() + - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLField
+
 
+
getTypeClass(int) - Static + method in class com.intellectualcrafters.jnbt.NBTUtils
+
+
Gets the class of a type of tag.
+
+
getTypeCode(Class<? + extends Tag>) - Static method in class com.intellectualcrafters.jnbt.NBTUtils
+
+
Gets the type code of a tag class.
+
+
getTypeName(Class<? + extends Tag>) - Static method in class com.intellectualcrafters.jnbt.NBTUtils
+
+
Gets the type name of a tag.
+
+
getUUID(String) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
getUUID(String) + - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
 
+
getUUID(String) + - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
+
 
+
getUUID() - + Method in class com.intellectualcrafters.plot.uuid.UUIDSet +
+
 
+
getUuidMap() + - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
+
Get the map containing all names/uuids
+
+
getUUIDOf(String) + - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
+
 
+
getUUIDSaver() - Static method + in class com.intellectualcrafters.plot.PlotMain
+
+
Get the uuid saver
+
+
getValue() - + Method in class com.intellectualcrafters.jnbt.ByteArrayTag +
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.ByteTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.CompoundTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.DoubleTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.EndTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.FloatTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.IntArrayTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.IntTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.ListTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.LongTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.ShortTag
+
 
+
getValue() - + Method in class com.intellectualcrafters.jnbt.StringTag
+
 
+
getValue() - Method + in class com.intellectualcrafters.jnbt.Tag
+
+
Gets the value of this tag.
+
+
getValue() - Method + in class com.intellectualcrafters.plot.config.ConfigurationNode
+
 
+
getValue() + - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLField
+
 
+
getValue() - + Method in class com.intellectualcrafters.plot.flag.Flag +
+
+
Get the value
+
+
getValue(String) + - Method in class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
+
 
+
getValue(String) + - Method in class com.intellectualcrafters.plot.flag.FlagValue +
+
 
+
getValue(String) + - Method in class com.intellectualcrafters.plot.flag.FlagValue.StringValue
+
 
+
getValue() + - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
+
+
Get the current value for the plotted point.
+
+
getValueDesc() - Method + in class com.intellectualcrafters.plot.flag.AbstractFlag +
+
 
+
getWidth() + - Method in class com.intellectualcrafters.plot.object.PlotSelection
+
 
+
getWorld() + - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
+
+
Get the world name
+
+
getWorld() - Method in + class com.intellectualcrafters.plot.events.PlotDeleteEvent +
+
+
Get the world name
+
+
getWorld() + - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
+
 
+
getWorld() - Method in + class com.intellectualcrafters.plot.events.PlotUnlinkEvent +
+
 
+
getWorld() - + Method in class com.intellectualcrafters.plot.object.Plot +
+
+
Get the plot World
+
+
getWorldFolderSize(World) + - Static method in class com.intellectualcrafters.plot.util.PlotHelper
+
 
+
getWorldPlots(World) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getWorldSettings(World) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the settings for a world (settings bundled in PlotWorld class) - You + will need to downcast for the specific settings a Generator has. e.g. +
+
+
getWorldSettings(String) + - Method in class com.intellectualcrafters.plot.api.PlotAPI +
+
+
Get the settings for a world (settings bundled in PlotWorld class)
+
+
getWorldSettings(World) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getWorldSettings(String) + - Static method in class com.intellectualcrafters.plot.PlotMain +
+
 
+
getX() - Method + in class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
+
 
+
getY() - Method + in class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
+
 
+
getYaml() + - Method in class com.intellectualsites.translation.YamlTranslationFile
+
+
Get the YAML object
+
+
getZ() - Method + in class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
+
 
+
globalPopulate() + - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
globalPopulate() + - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
+
 
+
globalSave(BiMap<StringWrapper, + UUID>) - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
+
 
+
globalSave(BiMap<StringWrapper, + UUID>) - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
+
 
+
GT - Static variable in class + com.intellectualcrafters.json.XML
+
+
The Character '>'.
+
+
gzip(String) + - Static method in class com.intellectualcrafters.plot.util.Metrics
+
+
GZip compress a string of bytes
+
+
+A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-8.html b/PlotSquared/doc/index-files/index-8.html new file mode 100644 index 000000000..f2151e6a8 --- /dev/null +++ b/PlotSquared/doc/index-files/index-8.html @@ -0,0 +1,362 @@ + + + + + + H-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

H

+
+
handleSaving() + - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
+
+
Handle saving of uuids
+
+
has(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Determine if the JSONObject contains a specific key.
+
+
hasChanged - Variable in + class com.intellectualcrafters.plot.object.Plot +
+
+
Has the plot changed since the last save cycle?
+
+
hasExpired(Plot) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
hashCode() - + Method in class com.intellectualcrafters.json.Kim
+
+
Returns a hash code value for the kim.
+
+
hashCode() - Method in + class com.intellectualcrafters.plot.flag.Flag +
+
 
+
hashCode() + - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
+
 
+
hashCode() - Method in + class com.intellectualcrafters.plot.object.Plot +
+
+
Get the plot hashcode
+
+
hashCode() + - Method in class com.intellectualcrafters.plot.object.PlotId
+
 
+
hashCode() + - Method in class com.intellectualcrafters.plot.object.StringWrapper
+
+
Get the hash value
+
+
hashCode() + - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
+
 
+
hashCode() + - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
+
 
+
hasNext() + - Method in class com.intellectualcrafters.plot.util.LSetCube.LCycler
+
 
+
hasOwner() - Method in + class com.intellectualcrafters.plot.object.Plot +
+
+
Check if the plot has a set owner
+
+
hasPermission(Player) + - Method in class com.intellectualcrafters.plot.commands.CommandPermission
+
 
+
hasPermission(Player, + String) - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Check a player for a permission
+ - Op has all permissions
+ - checks for '*' nodes +
+
+
hasPermissionRange(Player, + String, int) - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Check a range of permissions e.g.
+
+
hasPermissions(Player, + String[]) - Static method in class com.intellectualcrafters.plot.PlotMain +
+
+
Check a player for a permission
+ - Op has all permissions
+ - checks for '*' nodes +
+
+
hasPlot(World, + Player) - Method in class com.intellectualcrafters.plot.api.PlotAPI
+
+
Check whether or not a player has a plot
+
+
hasRights(Player) + - Method in class com.intellectualcrafters.plot.object.Plot
+
+
Check if the player is either the owner or on the helpers list
+
+
header(String...) + - Method in class com.intellectualsites.translation.YamlTranslationFile
+
+
Set the header
+
+
Help - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Help() + - Constructor for class com.intellectualcrafters.plot.commands.Help
+
 
+
Helpers - Class + in com.intellectualcrafters.plot.commands +
+
 
+
Helpers() - + Constructor for class com.intellectualcrafters.plot.commands.Helpers
+
 
+
helpers + - Variable in class com.intellectualcrafters.plot.object.Plot
+
+
List of helpers (with plot permissions)
+
+
helpMenu(Player, + SubCommand.CommandCategory, int) - Static method in class com.intellectualcrafters.plot.commands.MainCommand
+
 
+
Home - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Home() + - Constructor for class com.intellectualcrafters.plot.commands.Home
+
 
+
HOST_NAME - Static + variable in class com.intellectualcrafters.plot.config.Settings.DB
+
+
MySQL Host name
+
+
HTTP - Class in com.intellectualcrafters.json
+
+
Convert an HTTP header to a JSONObject and back.
+
+
HTTP() - + Constructor for class com.intellectualcrafters.json.HTTP +
+
 
+
HTTPTokener - Class in com.intellectualcrafters.json
+
+
The HTTPTokener extends the JSONTokener to provide additional methods + for the parsing of HTTP headers. +
+
+
HTTPTokener(String) + - Constructor for class com.intellectualcrafters.json.HTTPTokener
+
+
Construct an HTTPTokener from a string.
+
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index-files/index-9.html b/PlotSquared/doc/index-files/index-9.html new file mode 100644 index 000000000..4dade99d0 --- /dev/null +++ b/PlotSquared/doc/index-files/index-9.html @@ -0,0 +1,469 @@ + + + + + + I-Index + + + + + + + +
+ + + + + +
+ + +
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  + + + +

I

+
+
id - + Variable in class com.intellectualcrafters.plot.object.BlockWrapper
+
+
Block ID
+
+
id - Variable + in class com.intellectualcrafters.plot.object.Plot +
+
+
plot ID
+
+
id - + Variable in class com.intellectualcrafters.plot.object.PlotBlock
+
 
+
Inbox - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Inbox() - Constructor for + class com.intellectualcrafters.plot.commands.Inbox +
+
 
+
increment(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Increment a property of a JSONObject.
+
+
Info - Class in + com.intellectualcrafters.plot.commands +
+
 
+
Info() + - Constructor for class com.intellectualcrafters.plot.commands.Info
+
 
+
InfoInventory - + Class in com.intellectualcrafters.plot.object +
+
+
Created 2014-11-18 for PlotSquared
+
+
InfoInventory(Plot, + Player) - Constructor for class com.intellectualcrafters.plot.object.InfoInventory
+
+
Constructor
+
+
insertPlots(SQLManager, + UUID, Connection) - Static method in class com.intellectualcrafters.plot.commands.Database
+
 
+
instance() + - Method in class com.intellectualsites.translation.TranslationManager
+
+
Don't use this!
+
+
IntArrayTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Int_Array tag.
+
+
IntArrayTag(int[]) + - Constructor for class com.intellectualcrafters.jnbt.IntArrayTag
+
+
Creates the tag with an empty name.
+
+
IntArrayTag(String, + int[]) - Constructor for class com.intellectualcrafters.jnbt.IntArrayTag +
+
+
Creates the tag.
+
+
INTEGER - Static + variable in class com.intellectualcrafters.plot.config.Configuration
+
 
+
interval + - Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
+
 
+
IntTag - Class in com.intellectualcrafters.jnbt
+
+
The TAG_Int tag.
+
+
IntTag(int) - Constructor for + class com.intellectualcrafters.jnbt.IntTag
+
+
Creates the tag with an empty name.
+
+
IntTag(String, + int) - Constructor for class com.intellectualcrafters.jnbt.IntTag +
+
+
Creates the tag.
+
+
Inventory - Class + in com.intellectualcrafters.plot.commands +
+
 
+
Inventory() + - Constructor for class com.intellectualcrafters.plot.commands.Inventory
+
 
+
InventoryListener - Class in com.intellectualcrafters.plot.listeners +
+
+
Created 2014-11-18 for PlotSquared
+
+
InventoryListener() + - Constructor for class com.intellectualcrafters.plot.listeners.InventoryListener
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
+
 
+
isCancelled() + - Method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
+
 
+
isForge() + - Static method in class com.intellectualcrafters.plot.util.ReflectionUtils
+
 
+
isInPlot(Player) + - Method in class com.intellectualcrafters.plot.api.PlotAPI
+
+
Check whether or not a player is in a plot
+
+
isInPlot(Player) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
isInPlot(Location) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
isInPlot(Player) + - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
+
 
+
isInPlotAbs(PlotWorld, + Location, PlotId) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
+
+
Check if a location is inside a specific plot(non-Javadoc) - For this + implementation, we don't need to do anything fancier than referring to + getPlotIdAbs(...) +
+
+
isInPlotAbs(PlotWorld, + Location, PlotId) - Method in class com.intellectualcrafters.plot.object.PlotManager
+
 
+
isInstance(Object) + - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
+
+
see Class.isInstance(Object)
+
+
isMatching(String) + - Method in enum com.intellectualcrafters.plot.object.PlotHomePosition
+
 
+
isMerged() + - Method in class com.intellectualcrafters.plot.object.PlotSettings
+
+
Returns true if the plot is merged (i.e. if it's a mega plot)
+
+
isNull(int) - Method in + class com.intellectualcrafters.json.JSONArray
+
+
Determine if the value is null.
+
+
isNull(String) + - Method in class com.intellectualcrafters.json.JSONObject +
+
+
Determine if the value associated with the key is null or if there is no + value. +
+
+
isOptOut() + - Method in class com.intellectualcrafters.plot.util.Metrics
+
+
Has the server owner denied plugin metrics?
+
+
isPlayer - Variable + in class com.intellectualcrafters.plot.commands.SubCommand
+
 
+
isPlotWorld(World) + - Method in class com.intellectualcrafters.plot.api.PlotAPI
+
+
Get if plot world
+
+
isPlotWorld(World) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
isPlotWorld(Location) + - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
+
 
+
isPlotWorld(World) + - Static method in class com.intellectualcrafters.plot.PlotMain
+
 
+
isPlotWorld(String) + - Static method in class com.intellectualcrafters.plot.PlotMain
+
 
+
isUnowned(World, + PlotId, PlotId) - Method in class com.intellectualcrafters.plot.commands.Auto
+
 
+
isValid(String) + - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
+
 
+
+ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/index.html b/PlotSquared/doc/index.html new file mode 100644 index 000000000..342427aa7 --- /dev/null +++ b/PlotSquared/doc/index.html @@ -0,0 +1,78 @@ + + + + + + Generated Documentation (Untitled) + + + + + + + + + + <noscript> + <div>JavaScript is disabled on your browser.</div> + </noscript> + <h2>Frame Alert</h2> + + <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a + non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/PlotSquared/doc/overview-frame.html b/PlotSquared/doc/overview-frame.html new file mode 100644 index 000000000..d85d05426 --- /dev/null +++ b/PlotSquared/doc/overview-frame.html @@ -0,0 +1,54 @@ + + + + + + Overview List + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/PlotSquared/doc/overview-summary.html b/PlotSquared/doc/overview-summary.html new file mode 100644 index 000000000..4afc24697 --- /dev/null +++ b/PlotSquared/doc/overview-summary.html @@ -0,0 +1,206 @@ + + + + + + Overview + + + + + + + +
+ + + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Packages 
PackageDescription
com.intellectualcrafters.jnbt +  
com.intellectualcrafters.json +  
com.intellectualcrafters.plot +  
com.intellectualcrafters.plot.api +  
com.intellectualcrafters.plot.commands +  
com.intellectualcrafters.plot.config +  
com.intellectualcrafters.plot.database +  
com.intellectualcrafters.plot.database.sqlobjects +  
com.intellectualcrafters.plot.events +  
com.intellectualcrafters.plot.flag +  
com.intellectualcrafters.plot.generator +  
com.intellectualcrafters.plot.listeners +  
com.intellectualcrafters.plot.object +  
com.intellectualcrafters.plot.util +  
com.intellectualcrafters.plot.uuid +  
com.intellectualsites.translation +  
com.intellectualsites.translation.bukkit +  
+
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/overview-tree.html b/PlotSquared/doc/overview-tree.html new file mode 100644 index 000000000..c53fc2434 --- /dev/null +++ b/PlotSquared/doc/overview-tree.html @@ -0,0 +1,905 @@ + + + + + + Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For All Packages

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/package-frame.html b/PlotSquared/doc/package-frame.html new file mode 100644 index 000000000..536810852 --- /dev/null +++ b/PlotSquared/doc/package-frame.html @@ -0,0 +1,20 @@ + + + + + + &lt;Unnamed&gt; + + + + +

<Unnamed>

+ +
+

Classes

+ +
+ + diff --git a/PlotSquared/doc/package-list b/PlotSquared/doc/package-list new file mode 100644 index 000000000..e03f6ba7c --- /dev/null +++ b/PlotSquared/doc/package-list @@ -0,0 +1,18 @@ + +com.intellectualcrafters.jnbt +com.intellectualcrafters.json +com.intellectualcrafters.plot +com.intellectualcrafters.plot.api +com.intellectualcrafters.plot.commands +com.intellectualcrafters.plot.config +com.intellectualcrafters.plot.database +com.intellectualcrafters.plot.database.sqlobjects +com.intellectualcrafters.plot.events +com.intellectualcrafters.plot.flag +com.intellectualcrafters.plot.generator +com.intellectualcrafters.plot.listeners +com.intellectualcrafters.plot.object +com.intellectualcrafters.plot.util +com.intellectualcrafters.plot.uuid +com.intellectualsites.translation +com.intellectualsites.translation.bukkit diff --git a/PlotSquared/doc/package-summary.html b/PlotSquared/doc/package-summary.html new file mode 100644 index 000000000..6bef4520f --- /dev/null +++ b/PlotSquared/doc/package-summary.html @@ -0,0 +1,125 @@ + + + + + + + + + + + +
+ + + + + +
+ + +
+

Package <Unnamed>

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/package-tree.html b/PlotSquared/doc/package-tree.html new file mode 100644 index 000000000..1de8eb120 --- /dev/null +++ b/PlotSquared/doc/package-tree.html @@ -0,0 +1,127 @@ + + + + + + Class Hierarchy + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package <Unnamed>

+ Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/resources/background.gif b/PlotSquared/doc/resources/background.gif new file mode 100644 index 0000000000000000000000000000000000000000..f471940fde2f39ef8943a6af9569bcf986b1579b GIT binary patch literal 2313 zcmV+k3HJ6!Nk%w1VKM-40OkMy00030|NlK(aXwsfKV5S}VtGJbbVOr%L0@%CZH88Q zl{{NzcR^uxNo<2iYk@pjY)*5FJz8x~bc{)B zfk z+1T6M-s9WdW8dcJ-wO*3@9+W*5AY543-j^$^!EPz_4eHZ2#>)41`h@dc!2OAgN6$a zCS2I?;lqgx6IR4nkpTe;1RN0f=zxMq2O=q`94V5d$&e>Unta)^<;;^G3>e7yp=ZvW z6DIW3xpSvaogXF?_4%`@(V;s}NR^5J!3hrtJV@1QRV&r5S*L!zYE|rss${iFkg&!? zTN5V#)~=bmMorwgZsEpdOE)iExo+FO-8;8Kga{=HbSQCnF=E6W3?o*|ID%uwi5**> zJXy127Y9m+=HQ|PhXWi+xNwoWv}n_%Pq%(e+H~mGqhq5kv4Mo|-n~g|7!F*xZ{xv< zCpXS~dGg^IGK?4@J-T%b(XnUHFul6n<@2&4)zzyO2) z3Q8`i0+UKY*`$}e9mmp;tg*))`|PsK1|hAo%u0K$vDwm4gaSkm0j{`26k#qAKmbuhxZ#cquDR>B zD{s8+&TH-uNg$C#68QG}1HMBHfrP&L@@w$F_!itRzXdCN@V|LDAu%3!IDtq1#1UV7 z#1RxvT=B(DWbCoU5l=ia$Pp`Hgb_?Mp@hmtxZDI2N-)v#$}PXVvdm1d>@v(v`0TUJ zF)Pu89(q`zv=w^nVTIF3@3BYIPA}c`(@ZCAwbNBEt@PDUKe5CTR8aB66IE1!w%Amt zy+jpcn~k>GZpVFg+H6x{_uOksvBlq0OyT$6TyQZ37k(cOxZr|JEx1sGm<(M9gH z-~PMqyn|tT=))UN`|-FFFUA#KToK0fUOaz=7}Z~KeHhVC&%O27cTfHQ^WBU8z4p&T zp#>D|V}XShTD;Hx745Iz{`>K-Z$A|7!*Boo{mY;G21vjH8t{M!OrQc6$iN0V@PQDF zpadsK!3tXNf*8!81~qnXWuHZ)kytd=_y+ADWvw31ouV;CdZ#ya*(l7-A-C-Y^+iit8O zBy3*`Ls$|5Hn4m_^I^|C7{m7EFn|5vTk;|oywIgCc9Bb*=L+Y$)M>9GC<|HGs@6NB zHLY%03!dDf=eDRt2O6lVSFRcsuWZEwU?=z$CZ0W?#VJfdN>HG(l%oKpyiftJc|Y)xkjSJYCrQal-0PC~()T9xwF!Jf zVi1UA#3BBbh(i8r5&v#Pz!cF41KjbCc?4u2@@Q~oKLirt2TM30;y6b+zyX2`Yl9u; z`0$3;v0-YUp&7NdPT#q`cZlbij$jvbRk6R>8g*>}*b9E+WDwmpHAAxYzyT aU_pX{M6b8i>#Dq3onfZy}_nli%!Q$ZV%e&!tN2 zX3B0NWXQ443Eo1rUP86rLU>O>oTp%wt3Z{Tz&P*)Iraq^_@X;RtUFY!JxH|4U!>kw zxXwqo&R3Y=EsXaR!ng@y+y$%L1P3FZ4@N!j3m5MW74HcC->_JFuvlxLXiI=-OQ2|@ zpGc#>2-aN)<1RE9^`bB0`65VSK2>5m>CHs^YZCC)NX*NfbeT1%)Cxpu2_(6cCbLvjLY`hf1%*q}QO*%V4SfOu5Nqg~`-+(-76= za<`RA&(qDB^S!nIS^od5|Nk$KPXD8(qSB!f`M*{E?A^&yOW$08V^iNPK!%UNJ-@xmz>`pG2_%4I3QWk4UdtwP!GH$C%mo2K|$Ap=_)Y!#O($1@ohsUtR1k%wI*) z4*X&g==oWh`j{uP=HFm;Ye>0>UbDdtSp^~MaQ!L9I#)Ga?q}{@T#|qec*FkMLDenm zj^sCgk!^O^3o|vG!~2$$$7`C#4Ry zdQ!tui+J1*HyavK+4{`r+zvYHj9IsRt~@uEBOreWS8~2rXAR3!|7aTdr+x4|>@$Az z)b1t$gSB~6USxpfLmy^|_J_eNt*PI=ScO1SVH895N#`ef%IOh&o-2GIjK1s-JzkyZ z@r7O%hChz}kMHCM@Wqi^R-9t&%Fh^#9dVB0%ej@$=OjXA%XZdzCXf}c>SW26_z-Te z5b{}XWg&rELM=N*%aimp)k04t2c+`WAS>ZFIPWKvtyOI))HzpRA!T!b{tv?4NzF1v zNlP%#{&p@lFFEKvcroMAsI)mq?&`!e%l+-y&j9ZqhN}oG&dB=Pw09r+Q%m0cMujS# zs$a7!9VH`CC7k{!bV(J`rm%Jpj6&nLtWhPcy$onn$8G#ZdD9hxO<9k67Ya>K_7W~3 z&KYf14fq<{qHA7u6;>AOcomhdg?ianjr9uINt}*7w?g%z9{Q`(qRo@hDwSpGmxz&h&>%G%T(URL~=c>C{>y$K?+wLFp zy*M1@FTUKYV>8DeDIAIKM+!T5c-k&C4?Y~y^E zQCIc-=9~DiPtfVZB=_c3`qH3h|NXd^BcOQG`funSe)i5!NoA_r{b6PwzSDIXG+!(F z9CqJgo&~#7^VZHWj{u23q+NDCHn}GeWDC*(SW%{f4WMtP3l2jsO7*M)EX)#NLlsNnU4q@#jn0r#rsWsf^ngE0&ambG1f;Rj zfOk#_>1|25Z%?iI{0Yv8)DQfk>m1td?~}m0N%^k^u%EuUCc#ItmlY|epQ3YLWehYw zRU0qpPb#X&WU*UOU8et(s8x~WyYWYsgJCF+;U6@*nICY8)dk}IG+(#_Bz8zURd3HZ6qPE68U1%S{wL0 z;K{PDw2iRFIGG?(UiE9kT9?siuv4O{ z`dX2-eiXU3N)H2nT4V=AO^~J}sw+gr{&~qx%$$wlMv_JCWAMfcjYl}*Cfcf!adOY8 z8oLmJ{%49e+nLiVo#H9}wRk?UCzDz^>9TDxreVHzl~R*)?YU>Uu;J2eQ27O5`&X^8 z`94{)YWJQa#l0Fbz0N6B>j&8J;<%VuG6OYM9&QIdtueWjI3X;*dEtGiF@1AcvN4U> zG5SXIEXxB>)!mtQOztJLyeF78S*kLiU-!>PtQ_s~OMl~&y(hVVe$A5 zwo}E-DJ6${QP75?LsQ}Wl@MXwXMT4d>|?rD!g?jE>J^N*y;X}5FLe%d0_ zZ>eIBK6l@jkfw{p_YiDP;MS{jww{%j#?rk2z1J!HqE;Vd!TrCl_7UPef8;edI}wD6 zT&12Bxj&q}d4%$GHq+$~UYtWv`wI9k`89oKkCEK_E;-+O)(rhThjOM|kXDn{!W1Lo z`_?yQv=lp=-w()R<=0&c5%RWHY_fw@qb}uwFuPAGkl~@Kis}eE%MY@~6ZyWcF+llM zGyK`)(vn1F%%z=W7-Y=1$`w0Mv+-|#d};%JjCmw)Y1hOxwA|{}P%6LS4X`jQCGh`mR@=hGrr|cXa^Ipj;Mh)6mTqd1s_HmP0IxXT!w7YhoIHT>Hm#!;c@|L9OjV zsTlHE{Z;HWeM9^tPm-`|&nnl$%DRtNG1~?npUvgKPwKlaccEe4q!7YU3zykJnu6Sr z()LMXs_)^~u-ds7+wMff)RAJF?2?1H`_wDnt%MssYeB5;q~ojgVm6OHA6B>FG2erv z8&`|6<`=!EPKR^8Qlp5MiKwfxy4D`mN> ze$RKh_6*YJd4y0nnUZvwN%iY&^9xk@cM|5g#pZkc#N*(PH?^w&?ilTDMXFcd0`5!E zvgHS`=Lc|~1aO=L@L~eE*aP{90lc7qXY7GOs)3JH14T{(`K1D%tpvUT1-?F^1d4_S zJ#7yXkP3Q37bJlRQfv=mV-J3B8O*m5B%L3uW)S>|Jwy`|s6iK`sv0Z-3NcU(0knrG z5ChFXA@A9PUSdLI+(VU!!J1Mbw!~0VP^jZci2X|Nx0BF!24ObrAr>b=QtlyN4TAhn z!mQncJm~^m4MIafVLt_ewDUtO+e5w*!`(6A&H^F7i9s4t5&uBpNvh$nlTZjqTM5krNRRQ zqP)VR!|9@H>7qN_!+-)&_9s!^;gOvy5s~iEB&qP8{77&2NJMzZcsnJgSt_bYDzYU% zxQ#uuk3D*e7_*d5^?HW(^(WxICGf-mcmM((VStzIz%zFsm0;ZI3h=5OciJ#a%7I(IeGbFv+PP^?^sKBPrRBl<+qK^o%3fi=L9`la>-l4~p|hzAl~W zf=%(|NHgF7r5dJD+Cf08q-c(m;Epsldaz4cqHzTHT>)4xEe(cE0i~tf{Y0xs_1~Kv z+BYQ-TpEOch13;5YC9nHYEXhSv{ew=LV~nQL%UBQEgaDL2m?9u~v zEQmOvM=aB)Z$+eE38rs%AZR_)4>@2raqwH#Fji#xoLc&PS_TU^W8W(M0GqLdO~1yF z{sfHZ_sC#FX58(}d>RSkKZCz8%D7{cC3Z$Zh@52{31&V*W-@s~Z<8~aBeNcNW?e&O zsR(7fHOf}B&fsRqdZ(WK1e~s*o^uD6{YX9QJvqyWAqQXt*E>r$V94YK=X@8+{1cg> z*_i`a%alCJvbD~lCg&Q1Gk=|BzY)sejf9EHJ{s7lu4?ExCWR3jgTiET;exy{sW!Mg zuj*_YOf0@ScN~X0$7V6&KpL172rf|rA8?K<2+GelXw)NUk#@b4aT5MO%1ip4*ym}B-JI__S1R?CK z<4eW~bH;@H@tR55x}&JNSw_NvEPk)6E>XDt7*)4sgWuw+_vNZzmaS(tsi(57zcjA9 z@~XcHtzYq~IX|z*Md9mh>W~`sk3<^s7;EmyH4wcTdAo5NkUA2ofeG69{Gx7#i_*lt zQ7;N@xEo#nNRj&SbDHNnP0w#OE0{DZ$~7ySG%IN~zwd5Vu4&dnH>*OMb>&*VL^tbA zG;7y1t9dsYU$p3pw0x6mwGe6fjBYWsZ8e3q8f~-~cefgHxBangajI$kv(c*W-DZGp zbM$UgnP{_MYPXYX|6$u^deIhE(-xuGX2RVXqS+o~(iSV%;ZW1=Zqkut(r&xak^pT> zsp*I@X|-eOd^gb+sM(%3(E$|c47Y91mTU99Xe;4vFOTl5gmwVB+fvc3n2pwK?~Xd# zwrY{?CUj@~Msr?wXU0WKv2A$hq z`$V^gNq4(<*C=;4e4}$*uIC$5&uUHkM08J~N$>VV*VpdmLCuc!?!J9=-)VH;fo9)| zNN4m#^Kb9|`RF!^ZAT-z=bC8$do8~Tjc^o-aQjyc2(TW*d50E1#NW0pKb^~tf&OUlS+W}>0!m@!~1 z&TdSLhm`0u99c-z=oxYL8IFaGCDoFwFUP!1iJ%xF1UC4hhv*VR2451Pc0+kQGC)39C5 za81oV=$+xzZNYhn=RB-CTZ>Bevj)A3mi9|OS(dcy=N#Zm=Dza|z4Jd<=3IQ2CB>FiwH7{4Ej#+oa>M67 z!56)Km&2xJ|H7B;%~rJDuJ{rbZQiaX*e^$DEt~T$#h9(y#jg6>uX?boq!N}Q;EQth zYo1rjc15dETPw~*Ymu=lreoE9g^wb)ZcRe1yp1(Eo(rmqUYZXOU$BC_| zX{{&qE?E06wXm#v#cpKwE)jaydSaI`TkCCClr_lKMzPkyFT!R%VRn&sZSrchKx&4e~pJQcfViQxxl=T=7}#gYz7Pvoh`T#Jbab%2A2m zxh?A<`}A?8_GumBEcL;$x%gQb@PZ(If%ZE~D?ax#Km4a~+GV~!;Bb~qxxh@HHc|H6 zr%$^c9Dw~UQFWJv+81rCXS1vqqLfQ~-BtO63xCArGVA4T-}xPXYGHqB5h^+n5%$24 z(BROpi13J@*qFfR$oRMHel`=(zy zovs-UKHD3VkJ?hVeq!aA+8Fh4+NIlFhcC~UrR{4I#}K*u&z%68+P1*=q0B1r*2MY> z!9gYs*vlTO5v#8S>c#3goFmp>3iVKdU)NkjNV(s7tO4Wq?2M}o5Cj-*7;S=fEshOA zR*4$dm{ROvUamG%xL_tSW6}U$Nl=@91T;nC11o-iIVyVrfkd) zTCp;^tOy|_kuOFV$Nn=$AQJO9;&sZ&eDs^!r*m;Hw!)vpO1vcfj2EV{dJ?7ap0tq6 z$SwUVM*Vt+MS_`;bas-svPV|3POQi8G~?f^KOx4hg1He+Wd*s3Hl1{TfJS-+zv6vc zPoKiwr?7wECbub(IdB)9f_!kmUjBR*KY_z4E8_QA9xSr#G&@i5y^H`jB^I{|akh>W z%Cn3luOVY|8P>u>e^~#{$kmgX&-q>k{#pFbm2({(rtG<%nb0UCQ0%{Cy`F&~7}*we z@Of>ND_)V&XwN_+n~KjVorUQWZ*B6cld7ymQl{;rwlHl34K#}2YWxE+4CX@P&u6AfCda`&ZT1MOY69e-L@gNcAvwx8%1Z7lB4zc=_Cpt~&s ze%?;){1DB(PSK!^za967qF?lIjB~&06}Lf`cgh2qUiI^|$-VCTNE=hp&Ij}^A9&|* zQQrSqo3gn#_=z9j(y6f@T|OkJYv(fjwpz}$*U$|nLH2F zPNMuTS4g8 z*^hOlRh6~Mk}58;d477R>F^~aLO$dOXmhA*6zwIaHK()t2zKjo?j^NOJbh_=+71xg zO{Mgp7x?Z-1MKzoQ<+V2g#|e}|JawOPJZBL{o~PYdtWDX?jl##!Aiq|w>)vGJLipp zBK1xGhcvgSsQ;rn>+`>UmxlID{<~}7{y>SO^cyktN^Fsz!Z|B4?p*RKQG*8}SYBt{ zuFO{vJ?jgL{gUzYsnv(io}c0vlCp#*1vE?}KL^UZ&VF^TK+D;40CxX%j);%dCt;Z{ zAeMXC9JPWvKGwsCxx4w2iv_wNGG8l16AVI93rmc^c1>r(P||YE zpXa+=-&k995hfykL^J5S&vJF^ljR&`FE#ppNMM3%Omc!F)Mn{{&Ip#)JegbEJxud2 zn`wDVB~DMii5|H%m~51YeU1juNG3!+&?*uC#q@)z8q~`4yEL5I8}PtyA1IZ=52P$x zX)KhZt z7czUXBsy-8d`GVQ`90`wIh(Xt7v5j7h0t&ET~2M!Tb~4rN-xtK@8@mB*c(6QTwOS- z%9445_WY|cfm4?$nX$72&{~^mu}an^x^Da%=UU6YI;ur3+9L6I>raW5!=-Nzy(F2Z zwZlg7aM3NN5b{K|FB>s4R}|&Lr32_Ys{wwkECxo|rV@;5aHB25iUs7(6@dDpjN{Y%?C~UGp>*Q}K?)KKk64 zAn;@-dER}QG0L${jQ1cR75eM3-~ZTltTQ8%sm9x4Y`ve@ekMuvpA#Rh51@s6;6^&Q z!&M7^b%cea7FlZkPV9}@!bPBBfB&~XvGlE2T7V?IpM~OBmuK;OSt{~N`rL5c_I^de z9n*=@p|l;d`b_YIn8Aem1t7pp0=2-MCTIcJHlY z6x+mNLgi{JpwP)y(yzAFL2A#>bI&EwZE`PGvd*FQ!rx~6bUN&+Ij3)L;=595L#G;m8*^e?ap1`J5w7-q)*iUT_W9w8 z&xS-`i++HpWzY-a-)CWd0(pLW$A85P{Dy9r-=uPekNpN^yA}pJ7yWTZ>3iw4d6+IK zF%1XXkGcJm{0*vhSG5R1ySW;jctk9O==1-Mk?=Bl<{HE1p_@tx1s^+GoczYxj#B=i=kwQvEPrOt`<4W*pJw zbNjEqpr7B|Llc%m{V*QssV)im;pb00LUob=yFaU4`P_}ywU zt*QZl-bUsmh@L&zQaX4uHL&7YD(BOb9hH;;y;O-b-_O$4EFi1vCrMlz`dN|u?}HNO^aFQV{UZg_yy%nf>IXpulip!cR8|vNu7P*; zQye@}Qmj%(TB6`5E=c~w=LITF266XJ6X5xA7!OM1SE=~N*o3EP5Qqx!W<_+EMSLGo zqkC18AQ=0AK9=hgGQtrTovYc5^?Z^RLX?hlO-j&e1MXTTbfm>MS^=}!p>C>icUKdZ zBcNOb(6IJ!kq*e7N8Fx!!kPyn+2B2^2hd00+W^PUA&+S63jFE)bP5Tv+L5l~n(pu? zbeO|+K{{?pEow3?j0+dGVu)a6(0r{1Uj7{3 zxSsZ|BdMk>1-S}-;+`pk{Q5>H=tLRx+YqeenaSRsEX@gtPzz>j1A9g!C9kGtspY(- z%YL>NkVDE2z@}*;Q{=&5)yS;NupAmmibGUE4qte7aY6PcnXJgw>}ad(SW;@HtNurF ziV0_yHz=;Di%Tki6DW^tjkL`t%Ktct(ay zvuAOYoCu!Pm~@P5CIjk$bp`_iv{^l*Au{fB8mJK1>Macv?GL)**8*+JNvySIH5Y7i#1;!%NT!efc z;Z0*AOM&1VpR+6wIQxBM{xf`8T1V@#e<#QL}=YRwMkWG8%1(Fgj{iX)N zup{Txko(DqJWf=#Oi?Z!nra-?C{);TP`w|4>L+EKx1&P3swX<*#_50F!lD_$nQyuK??!UwA-{y)^QmMxoK1xIJ~uML{u;5!Z5tQyEL>;KaUd!_9FP zl2$QOI6V1`QdF|8gkdZsSpUqCjSBu(1H)r*vL#PEy)@Px>5TIk7_9o#Bj zzD&<1_k(ejk%qO6ak=GMmG5b7LTAA^KKq-Ey#z8(2wy2;Ot^oZI(MG@)~iY$RAnJt zu`ioyvR?Vws_tuK9hDqmel+)bP0kyxJV{7t=&3{b(@Hs1fs$9n45aq)IKknZa2H*7 z^P-ZDyOMdMj&-9{(-?dqo5I3Gy=K$!L%q>3^0N~o^2i0^_@^2nQv>S4B&=5_8^a^V zaY!NjyA5QgO&r#^CJcp&=!))MZ*CC&hvLEzWU*!IO=aYo{_yG+53H$XOAIQWnG`uD zLuuwTY6e8N^m5^AHQa}Y5Z#SdbEY;+x{oW?g;ie4CNYomRyQd2mv^L}T!>a5<*wTh>@>Qtwp~nejn`~DcZJI+QC-xU zoxz=5z0k%1;jBrGI%Th~FQElrAPr?E-Fv9|o09dPk=?>f)jFKL8PK|;w(cVDq>YWP zEfL7RGBv|<>f4IccND3wCi*V8`>#a$FPZu&a{V`W`me+Kuf_CJ)%IV%?5ByL^#3Q{ z&uBM5|34IKI>0_Tz{5OngXe#6w*N6;;5PH%9n%56%RaWA{wJ4%515Apdj`a62bp<> zM12OuV+QZ^55ATkViO(UWgg}%9C}kb^r~=BiDyWIXZWM&kb>Q?dd$#W`4KU|2#4qh zz;sZ>ZqS5h#Kdk$&1c9AHmDUdtmHE)CqH0RIAZEE;t(^+RXF+*FlJyk;?6Vn{&MsO zZ0HwY)b4Va!F1#s^N5$-s9(&mPa*Lu4>4SxXm~l|3?PR2jB1J!Q|(4#0i$lFME^-r zA~Q(2O+PHOdcVN((R8zqi>%+yx4PA5u&+jI zZ?)Fm8m-+`n!Bnrx0PvZE7!Q)Z+NTE@K(R!nO40sZF(n~bq_b_9H`UYU#q>pPJ3UC z_UeU>J7qcy%%`ks9)BNcS^GDOn z?oKkjHNoWO1e2?M#vd12e^_AscAnLnc~-CISiYWX`D%{k^H~<37unpMYJYdSv=Om2vbAM@`Qp{{SI=yP zj6WN*eEt0G$9EPX6FU%)-ho>hWTW!yzXBIo73<0umM-=@eG&niY^` zlG(|vuCl_x(X^Fob@=i{8+M5vWf7Bz=#aHGTNA;fZQyfbfueI8Z^639n`(DI%w^-^ zl`=@!u)r~Xf920-xd$Ab+S&PJY%K0H8a_J8uN3^_!K1_NV$*e#*Y*6|)XpiW=9H`*`Xx7W%v@7{XDma1?v0a%(K6rI&1!a YpWXKgmku8Vj|K)Vje`mzEKCg608Q#dYybcN literal 0 HcmV?d00001 diff --git a/PlotSquared/doc/serialized-form.html b/PlotSquared/doc/serialized-form.html new file mode 100644 index 000000000..68dd2385b --- /dev/null +++ b/PlotSquared/doc/serialized-form.html @@ -0,0 +1,160 @@ + + + + + + Serialized Form + + + + + + + +
+ + + + + +
+ + +
+

Serialized Form

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/PlotSquared/doc/stylesheet.css b/PlotSquared/doc/stylesheet.css new file mode 100644 index 000000000..71eef3dde --- /dev/null +++ b/PlotSquared/doc/stylesheet.css @@ -0,0 +1,569 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ +body { + background-color: #ffffff; + color: #353833; + font-family: Arial, Helvetica, sans-serif; + font-size: 76%; + margin: 0; +} + +a:link, a:visited { + text-decoration: none; + color: #4c6b87; +} + +a:hover, a:focus { + text-decoration: none; + color: #bb7a2a; +} + +a:active { + text-decoration: none; + color: #4c6b87; +} + +a[name] { + color: #353833; +} + +a[name]:hover { + text-decoration: none; + color: #353833; +} + +pre { + font-size: 1.3em; +} + +h1 { + font-size: 1.8em; +} + +h2 { + font-size: 1.5em; +} + +h3 { + font-size: 1.4em; +} + +h4 { + font-size: 1.3em; +} + +h5 { + font-size: 1.2em; +} + +h6 { + font-size: 1.1em; +} + +ul { + list-style-type: disc; +} + +code, tt { + font-size: 1.2em; +} + +dt code { + font-size: 1.2em; +} + +table tr td dt code { + font-size: 1.2em; + vertical-align: top; +} + +sup { + font-size: .6em; +} + +/* +Document title and Copyright styles +*/ +.clear { + clear: both; + height: 0px; + overflow: hidden; +} + +.aboutLanguage { + float: right; + padding: 0px 21px; + font-size: .8em; + z-index: 200; + margin-top: -7px; +} + +.legalCopy { + margin-left: .5em; +} + +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color: #FFFFFF; + text-decoration: none; +} + +.bar a:hover, .bar a:focus { + color: #bb7a2a; +} + +.tab { + background-color: #0066FF; + background-image: url(resources/titlebar.gif); + background-position: left top; + background-repeat: no-repeat; + color: #ffffff; + padding: 8px; + width: 5em; + font-weight: bold; +} + +/* +Navigation bar styles +*/ +.bar { + background-image: url(resources/background.gif); + background-repeat: repeat-x; + color: #FFFFFF; + padding: .8em .5em .4em .8em; + height: auto; /*height:1.8em;*/ + font-size: 1em; + margin: 0; +} + +.topNav { + background-image: url(resources/background.gif); + background-repeat: repeat-x; + color: #FFFFFF; + float: left; + padding: 0; + width: 100%; + clear: right; + height: 2.8em; + padding-top: 10px; + overflow: hidden; +} + +.bottomNav { + margin-top: 10px; + background-image: url(resources/background.gif); + background-repeat: repeat-x; + color: #FFFFFF; + float: left; + padding: 0; + width: 100%; + clear: right; + height: 2.8em; + padding-top: 10px; + overflow: hidden; +} + +.subNav { + background-color: #dee3e9; + border-bottom: 1px solid #9eadc0; + float: left; + width: 100%; + overflow: hidden; +} + +.subNav div { + clear: left; + float: left; + padding: 0 0 5px 6px; +} + +ul.navList, ul.subNavList { + float: left; + margin: 0 25px 0 0; + padding: 0; +} + +ul.navList li { + list-style: none; + float: left; + padding: 3px 6px; +} + +ul.subNavList li { + list-style: none; + float: left; + font-size: 90%; +} + +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color: #FFFFFF; + text-decoration: none; +} + +.topNav a:hover, .bottomNav a:hover { + text-decoration: none; + color: #bb7a2a; +} + +.navBarCell1Rev { + background-image: url(resources/tab.gif); + background-color: #a88834; + color: #FFFFFF; + margin: auto 5px; + border: 1px solid #c9aa44; +} + +/* +Page header and footer styles +*/ +.header, .footer { + clear: both; + margin: 0 20px; + padding: 5px 0 0 0; +} + +.indexHeader { + margin: 10px; + position: relative; +} + +.indexHeader h1 { + font-size: 1.3em; +} + +.title { + color: #2c4557; + margin: 10px 0; +} + +.subTitle { + margin: 5px 0 0 0; +} + +.header ul { + margin: 0 0 25px 0; + padding: 0; +} + +.footer ul { + margin: 20px 0 5px 0; +} + +.header ul li, .footer ul li { + list-style: none; + font-size: 1.2em; +} + +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color: #dee3e9; + border-top: 1px solid #9eadc0; + border-bottom: 1px solid #9eadc0; + margin: 0 0 6px -8px; + padding: 2px 5px; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color: #dee3e9; + border-top: 1px solid #9eadc0; + border-bottom: 1px solid #9eadc0; + margin: 0 0 6px -8px; + padding: 2px 5px; +} + +ul.blockList ul.blockList li.blockList h3 { + padding: 0; + margin: 15px 0; +} + +ul.blockList li.blockList h2 { + padding: 0px 0 20px 0; +} + +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear: both; + padding: 10px 20px; + position: relative; +} + +.indexContainer { + margin: 10px; + position: relative; + font-size: 1.0em; +} + +.indexContainer h2 { + font-size: 1.1em; + padding: 0 0 3px 0; +} + +.indexContainer ul { + margin: 0; + padding: 0; +} + +.indexContainer ul li { + list-style: none; +} + +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size: 1.1em; + font-weight: bold; + margin: 10px 0 0 0; + color: #4E4E4E; +} + +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin: 10px 0 10px 20px; +} + +.serializedFormContainer dl.nameValue dt { + margin-left: 1px; + font-size: 1.1em; + display: inline; + font-weight: bold; +} + +.serializedFormContainer dl.nameValue dd { + margin: 0 0 0 1px; + font-size: 1.1em; + display: inline; +} + +/* +List styles +*/ +ul.horizontal li { + display: inline; + font-size: 0.9em; +} + +ul.inheritance { + margin: 0; + padding: 0; +} + +ul.inheritance li { + display: inline; + list-style: none; +} + +ul.inheritance li ul.inheritance { + margin-left: 15px; + padding-left: 15px; + padding-top: 1px; +} + +ul.blockList, ul.blockListLast { + margin: 10px 0 10px 0; + padding: 0; +} + +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style: none; + margin-bottom: 25px; +} + +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding: 0px 20px 5px 10px; + border: 1px solid #9eadc0; + background-color: #f9f9f9; +} + +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding: 0 0 5px 8px; + background-color: #ffffff; + border: 1px solid #9eadc0; + border-top: none; +} + +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left: 0; + padding-left: 0; + padding-bottom: 15px; + border: none; + border-bottom: 1px solid #9eadc0; +} + +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style: none; + border-bottom: none; + padding-bottom: 0; +} + +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top: 0; + margin-bottom: 1px; +} + +/* +Table styles +*/ +.contentContainer table, .classUseContainer table, .constantValuesContainer table { + border-bottom: 1px solid #9eadc0; + width: 100%; +} + +.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table { + width: 100%; +} + +.contentContainer .description table, .contentContainer .details table { + border-bottom: none; +} + +.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td { + vertical-align: top; + padding-right: 20px; +} + +.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast, .constantValuesContainer ul li table th.colLast, +.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast, .constantValuesContainer ul li table td.colLast, +.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne, +.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne { + padding-right: 3px; +} + +.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption { + position: relative; + text-align: left; + background-repeat: no-repeat; + color: #FFFFFF; + font-weight: bold; + clear: none; + overflow: hidden; + padding: 0px; + margin: 0px; +} + +caption a:link, caption a:hover, caption a:active, caption a:visited { + color: #FFFFFF; +} + +.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span { + white-space: nowrap; + padding-top: 8px; + padding-left: 8px; + display: block; + float: left; + background-image: url(resources/titlebar.gif); + height: 18px; +} + +.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd { + width: 10px; + background-image: url(resources/titlebar_end.gif); + background-repeat: no-repeat; + background-position: top right; + position: relative; + float: left; +} + +ul.blockList ul.blockList li.blockList table { + margin: 0 0 12px 0px; + width: 100%; +} + +.tableSubHeadingColor { + background-color: #EEEEFF; +} + +.altColor { + background-color: #eeeeef; +} + +.rowColor { + background-color: #ffffff; +} + +.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td { + text-align: left; + padding: 3px 3px 3px 7px; +} + +th.colFirst, th.colLast, th.colOne, .constantValuesContainer th { + background: #dee3e9; + border-top: 1px solid #9eadc0; + border-bottom: 1px solid #9eadc0; + text-align: left; + padding: 3px 3px 3px 7px; +} + +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight: bold; +} + +td.colFirst, th.colFirst { + border-left: 1px solid #9eadc0; + white-space: nowrap; +} + +td.colLast, th.colLast { + border-right: 1px solid #9eadc0; +} + +td.colOne, th.colOne { + border-right: 1px solid #9eadc0; + border-left: 1px solid #9eadc0; +} + +table.overviewSummary { + padding: 0px; + margin-left: 0px; +} + +table.overviewSummary td.colFirst, table.overviewSummary th.colFirst, +table.overviewSummary td.colOne, table.overviewSummary th.colOne { + width: 25%; + vertical-align: middle; +} + +table.packageSummary td.colFirst, table.overviewSummary th.colFirst { + width: 25%; + vertical-align: middle; +} + +/* +Content styles +*/ +.description pre { + margin-top: 0; +} + +.deprecatedContent { + margin: 0; + padding: 10px 0; +} + +.docSummary { + padding: 0; +} + +/* +Formatting effect styles +*/ +.sourceLineNo { + color: green; + padding: 0 30px 0 0; +} + +h1.hidden { + visibility: hidden; + overflow: hidden; + font-size: .9em; +} + +.block { + display: block; + margin: 3px 0 0 0; +} + +.strong { + font-weight: bold; +} diff --git a/README.md b/README.md index bf9925225..7fbc6eefe 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ PlotSquared Official Repo ========================================================== -This is the official PlotSquared repo, if you didn't understand that by the title... +PlotSquared - Plot Plugin Extraordinaire. + +## Compile: ## +Build the project using your favourite compiler (maven is the recommended way to build), then package the jar using `mvn package` **MAVEN IS REQUIRED TO BUILD AND PACKAGE THE JAR** + +To build the PlotMe converted, you need a PlotMe jar file (a release post-UUID), we won't like to this for obvious reasons. + +## API: ## +The main API class can be found [here](https://github.com/IntellectualCrafters/PlotSquared/blob/master/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java "API"). JavaDoc's can be found [here](http://git.plotworld.info/jdocs/ "JDOCS"). ## Links: ## @@ -13,5 +21,6 @@ This is the official PlotSquared repo, if you didn't understand that by the titl - [AdvPlots](http://www.spigotmc.org/resources/advplots-%CE%B2.1500/ "AdvPlots") - [PlotRankup](http://www.spigotmc.org/resources/plotrankup.1571/ "PlotRankup") -Dependencies: -[http://intellectualsites.com/download.php?key=a12f1474-6bbc-4017-ba43-d26f8de36a7c](http://intellectualsites.com/download.php?key=a12f1474-6bbc-4017-ba43-d26f8de36a7c "Dependencies (/lib)") +... +Read [THIS](https://intellectualsites.com/?p=view_post&post=106) before saying that we've stolen code. + From 6f73193cfb1fb7c221582893c1c858fc12d87fc4 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Wed, 19 Nov 2014 18:49:53 +0100 Subject: [PATCH 6/8] Bleh, wrong folder xD --- PlotSquared/doc/Test1.html | 518 --- PlotSquared/doc/allclasses-frame.html | 411 --- PlotSquared/doc/allclasses-noframe.html | 395 --- .../jnbt/ByteArrayTag.html | 353 -- .../intellectualcrafters/jnbt/ByteTag.html | 355 -- .../jnbt/CompoundTag.html | 915 ------ .../jnbt/CompoundTagBuilder.html | 664 ---- .../intellectualcrafters/jnbt/DoubleTag.html | 355 -- .../com/intellectualcrafters/jnbt/EndTag.html | 327 -- .../intellectualcrafters/jnbt/FloatTag.html | 355 -- .../jnbt/IntArrayTag.html | 355 -- .../com/intellectualcrafters/jnbt/IntTag.html | 355 -- .../intellectualcrafters/jnbt/ListTag.html | 927 ------ .../jnbt/ListTagBuilder.html | 395 --- .../intellectualcrafters/jnbt/LongTag.html | 355 -- .../jnbt/NBTConstants.html | 547 ---- .../jnbt/NBTInputStream.html | 340 -- .../jnbt/NBTOutputStream.html | 347 -- .../intellectualcrafters/jnbt/NBTUtils.html | 348 -- .../intellectualcrafters/jnbt/ShortTag.html | 355 -- .../intellectualcrafters/jnbt/StringTag.html | 355 -- .../com/intellectualcrafters/jnbt/Tag.html | 288 -- .../jnbt/WorldEditUtils.html | 284 -- .../jnbt/package-frame.html | 51 - .../jnbt/package-summary.html | 274 -- .../jnbt/package-tree.html | 207 -- .../com/intellectualcrafters/json/CDL.html | 640 ---- .../com/intellectualcrafters/json/Cookie.html | 413 --- .../intellectualcrafters/json/CookieList.html | 340 -- .../com/intellectualcrafters/json/HTTP.html | 445 --- .../json/HTTPTokener.html | 333 -- .../intellectualcrafters/json/JSONArray.html | 1795 ---------- .../json/JSONException.html | 354 -- .../com/intellectualcrafters/json/JSONML.html | 516 --- .../intellectualcrafters/json/JSONObject.html | 2356 ------------- .../intellectualcrafters/json/JSONString.html | 235 -- .../json/JSONStringer.html | 374 --- .../json/JSONTokener.html | 770 ----- .../intellectualcrafters/json/JSONWriter.html | 687 ---- .../com/intellectualcrafters/json/Kim.html | 644 ---- .../intellectualcrafters/json/Property.html | 330 -- .../com/intellectualcrafters/json/XML.html | 663 ---- .../intellectualcrafters/json/XMLTokener.html | 544 --- .../json/package-frame.html | 53 - .../json/package-summary.html | 292 -- .../json/package-tree.html | 201 -- .../intellectualcrafters/plot/PlotMain.html | 1611 --------- .../plot/api/PlotAPI.html | 1509 --------- .../plot/api/package-frame.html | 22 - .../plot/api/package-summary.html | 137 - .../plot/api/package-tree.html | 130 - .../plot/commands/Auto.html | 450 --- .../plot/commands/Ban.html | 378 --- .../plot/commands/Claim.html | 422 --- .../plot/commands/Clear.html | 373 --- .../plot/commands/Clipboard.html | 373 --- .../plot/commands/Command.html | 850 ----- .../plot/commands/CommandPermission.html | 328 -- .../plot/commands/Comment.html | 373 --- .../plot/commands/Copy.html | 373 --- .../plot/commands/DEOP.html | 378 --- .../plot/commands/Database.html | 400 --- .../plot/commands/Debug.html | 373 --- .../plot/commands/DebugClaimTest.html | 419 --- .../plot/commands/DebugLoadTest.html | 377 --- .../plot/commands/DebugSaveTest.html | 377 --- .../plot/commands/Delete.html | 373 --- .../plot/commands/Denied.html | 373 --- .../plot/commands/Help.html | 373 --- .../plot/commands/Helpers.html | 373 --- .../plot/commands/Home.html | 377 --- .../plot/commands/Inbox.html | 373 --- .../plot/commands/Info.html | 377 --- .../plot/commands/Inventory.html | 373 --- .../plot/commands/Kick.html | 373 --- .../plot/commands/MainCommand.html | 444 --- .../plot/commands/Merge.html | 436 --- .../plot/commands/MusicSubcommand.html | 373 --- .../plot/commands/OP.html | 378 --- .../plot/commands/Paste.html | 373 --- .../plot/commands/Purge.html | 373 --- .../plot/commands/Rate.html | 373 --- .../plot/commands/Reload.html | 373 --- .../plot/commands/Schematic.html | 373 --- .../plot/commands/Set.html | 421 --- .../plot/commands/SetOwner.html | 373 --- .../plot/commands/Setup.html | 414 --- .../commands/SubCommand.CommandCategory.html | 448 --- .../plot/commands/SubCommand.html | 656 ---- .../plot/commands/Swap.html | 374 --- .../plot/commands/TP.html | 377 --- .../plot/commands/Trusted.html | 373 --- .../plot/commands/Unban.html | 378 --- .../plot/commands/Unlink.html | 378 --- .../plot/commands/Visit.html | 390 --- .../plot/commands/list.html | 377 --- .../plot/commands/package-frame.html | 111 - .../plot/commands/package-summary.html | 397 --- .../plot/commands/package-tree.html | 328 -- .../plot/commands/plugin.html | 432 --- .../intellectualcrafters/plot/config/C.html | 2915 ----------------- .../config/Configuration.SettingValue.html | 325 -- .../plot/config/Configuration.html | 493 --- .../plot/config/ConfigurationNode.html | 376 --- .../plot/config/Settings.DB.html | 454 --- .../plot/config/Settings.html | 612 ---- .../plot/config/package-frame.html | 34 - .../plot/config/package-summary.html | 186 -- .../plot/config/package-tree.html | 163 - .../plot/database/AbstractDB.html | 959 ------ .../plot/database/DBFunc.html | 932 ------ .../plot/database/Database.html | 497 --- .../plot/database/FlatFileManager.html | 241 -- .../plot/database/MySQL.html | 546 --- .../plot/database/PlotMeConverter.html | 293 -- .../plot/database/SQLManager.html | 1320 -------- .../plot/database/SQLite.html | 534 --- .../plot/database/package-frame.html | 39 - .../plot/database/package-summary.html | 199 -- .../plot/database/package-tree.html | 167 - .../plot/database/sqlobjects/PlotTable.html | 305 -- .../plot/database/sqlobjects/SQLField.html | 301 -- .../plot/database/sqlobjects/SQLTable.html | 327 -- .../plot/database/sqlobjects/SQLType.html | 457 --- .../database/sqlobjects/package-frame.html | 31 - .../database/sqlobjects/package-summary.html | 174 - .../database/sqlobjects/package-tree.html | 158 - .../plot/events/PlayerClaimPlotEvent.html | 457 --- .../plot/events/PlayerEnterPlotEvent.html | 393 --- .../plot/events/PlayerLeavePlotEvent.html | 393 --- .../plot/events/PlayerPlotDeniedEvent.html | 439 --- .../plot/events/PlayerPlotHelperEvent.html | 436 --- .../plot/events/PlayerPlotTrustedEvent.html | 439 --- .../events/PlayerTeleportToPlotEvent.html | 465 --- .../plot/events/PlotClearEvent.html | 430 --- .../plot/events/PlotDeleteEvent.html | 430 --- .../plot/events/PlotFlagAddEvent.html | 436 --- .../plot/events/PlotFlagRemoveEvent.html | 436 --- .../plot/events/PlotMergeEvent.html | 454 --- .../plot/events/PlotUnlinkEvent.html | 422 --- .../plot/events/package-frame.html | 46 - .../plot/events/package-summary.html | 220 -- .../plot/events/package-tree.html | 195 -- .../plot/flag/AbstractFlag.html | 377 --- .../intellectualcrafters/plot/flag/Flag.html | 401 --- .../plot/flag/FlagManager.html | 530 --- .../plot/flag/FlagValue.BooleanValue.html | 384 --- .../plot/flag/FlagValue.StringValue.html | 382 --- .../plot/flag/FlagValue.html | 381 --- .../plot/flag/package-frame.html | 31 - .../plot/flag/package-summary.html | 169 - .../plot/flag/package-tree.html | 152 - .../plot/generator/DefaultPlotManager.html | 973 ------ .../plot/generator/DefaultPlotWorld.html | 928 ------ .../plot/generator/WorldGenerator.html | 580 ---- .../plot/generator/XPopulator.html | 381 --- .../plot/generator/package-frame.html | 28 - .../plot/generator/package-summary.html | 153 - .../plot/generator/package-tree.html | 171 - .../plot/listeners/EntityListener.html | 404 --- .../plot/listeners/ForceFieldListener.html | 297 -- .../plot/listeners/InventoryListener.html | 297 -- .../plot/listeners/PlayerEvents.html | 784 ----- .../plot/listeners/PlotListener.html | 548 ---- .../listeners/PlotPlusListener.Interval.html | 334 -- .../PlotPlusListener.RecordMeta.html | 366 --- .../plot/listeners/PlotPlusListener.html | 480 --- .../plot/listeners/WorldEditListener.html | 431 --- .../plot/listeners/WorldGuardListener.html | 471 --- .../plot/listeners/package-frame.html | 40 - .../plot/listeners/package-summary.html | 201 -- .../plot/listeners/package-tree.html | 177 - .../plot/object/BlockWrapper.html | 448 --- .../plot/object/InfoInventory.html | 339 -- .../plot/object/Plot.html | 1059 ------ .../plot/object/PlotBlock.html | 301 -- .../plot/object/PlotComment.html | 318 -- .../plot/object/PlotGenerator.html | 336 -- .../plot/object/PlotHomePosition.html | 393 --- .../plot/object/PlotId.html | 416 --- .../plot/object/PlotManager.html | 756 ----- .../plot/object/PlotSelection.html | 407 --- .../plot/object/PlotSettings.html | 694 ---- .../plot/object/PlotWorld.html | 951 ------ .../plot/object/StringWrapper.html | 382 --- .../plot/object/Title.html | 556 ---- .../plot/object/package-frame.html | 50 - .../plot/object/package-summary.html | 227 -- .../plot/object/package-tree.html | 200 -- .../plot/package-frame.html | 21 - .../plot/package-summary.html | 137 - .../plot/package-tree.html | 137 - .../plot/util/ConsoleColors.html | 301 -- .../plot/util/LSetCube.LCycler.html | 312 -- .../plot/util/LSetCube.html | 391 --- .../intellectualcrafters/plot/util/Lag.html | 478 --- .../plot/util/Logger.LogLevel.html | 413 --- .../plot/util/Logger.html | 340 -- .../plot/util/Metrics.Graph.html | 389 --- .../plot/util/Metrics.Plotter.html | 393 --- .../plot/util/Metrics.html | 515 --- .../intellectualcrafters/plot/util/PWE.html | 336 -- .../plot/util/PlayerFunctions.html | 707 ---- .../plot/util/PlotHelper.html | 1294 -------- .../util/PlotSquaredException.PlotError.html | 415 --- .../plot/util/PlotSquaredException.html | 307 -- .../plot/util/RUtils.html | 405 --- .../plot/util/ReflectionUtils.RefClass.html | 592 ---- .../util/ReflectionUtils.RefConstructor.html | 293 -- .../ReflectionUtils.RefField.RefExecutor.html | 308 -- .../plot/util/ReflectionUtils.RefField.html | 343 -- ...ReflectionUtils.RefMethod.RefExecutor.html | 291 -- .../plot/util/ReflectionUtils.RefMethod.html | 368 --- .../plot/util/ReflectionUtils.html | 395 --- .../util/SchematicHandler.DataCollection.html | 298 -- .../plot/util/SchematicHandler.Dimension.html | 315 -- .../plot/util/SchematicHandler.Schematic.html | 331 -- .../plot/util/SchematicHandler.html | 467 --- .../plot/util/SetBlockFast.html | 309 -- .../plot/util/StringComparison.html | 413 --- .../plot/util/UUIDHandler.html | 451 --- .../plot/util/package-frame.html | 76 - .../plot/util/package-summary.html | 337 -- .../plot/util/package-tree.html | 264 -- .../plot/uuid/NameFetcher.html | 287 -- .../plot/uuid/PlotUUIDSaver.html | 453 --- .../plot/uuid/UUIDFetcher.html | 369 --- .../plot/uuid/UUIDSaver.html | 338 -- .../plot/uuid/UUIDSet.html | 309 -- .../plot/uuid/package-frame.html | 33 - .../plot/uuid/package-summary.html | 177 - .../plot/uuid/package-tree.html | 153 - .../translation/Translation.html | 235 -- .../translation/TranslationAsset.html | 326 -- .../translation/TranslationFile.html | 364 -- .../translation/TranslationLanguage.html | 450 --- .../translation/TranslationManager.html | 685 ---- .../translation/TranslationObject.html | 322 -- .../translation/YamlTranslationFile.html | 514 --- .../translation/bukkit/BukkitTranslation.html | 364 -- .../translation/bukkit/TranslationPlugin.html | 338 -- .../translation/bukkit/package-frame.html | 24 - .../translation/bukkit/package-summary.html | 142 - .../translation/bukkit/package-tree.html | 143 - .../translation/package-frame.html | 37 - .../translation/package-summary.html | 193 -- .../translation/package-tree.html | 162 - PlotSquared/doc/constant-values.html | 343 -- PlotSquared/doc/deprecated-list.html | 177 - PlotSquared/doc/help-doc.html | 250 -- PlotSquared/doc/index-files/index-1.html | 525 --- PlotSquared/doc/index-files/index-10.html | 359 -- PlotSquared/doc/index-files/index-11.html | 222 -- PlotSquared/doc/index-files/index-12.html | 342 -- PlotSquared/doc/index-files/index-13.html | 416 --- PlotSquared/doc/index-files/index-14.html | 377 --- PlotSquared/doc/index-files/index-15.html | 759 ----- PlotSquared/doc/index-files/index-16.html | 1189 ------- PlotSquared/doc/index-files/index-17.html | 185 -- PlotSquared/doc/index-files/index-18.html | 654 ---- PlotSquared/doc/index-files/index-19.html | 1402 -------- PlotSquared/doc/index-files/index-2.html | 373 --- PlotSquared/doc/index-files/index-20.html | 877 ----- PlotSquared/doc/index-files/index-21.html | 322 -- PlotSquared/doc/index-files/index-22.html | 343 -- PlotSquared/doc/index-files/index-23.html | 348 -- PlotSquared/doc/index-files/index-24.html | 204 -- PlotSquared/doc/index-files/index-25.html | 166 - PlotSquared/doc/index-files/index-26.html | 141 - PlotSquared/doc/index-files/index-3.html | 975 ------ PlotSquared/doc/index-files/index-4.html | 462 --- PlotSquared/doc/index-files/index-5.html | 583 ---- PlotSquared/doc/index-files/index-6.html | 386 --- PlotSquared/doc/index-files/index-7.html | 2583 --------------- PlotSquared/doc/index-files/index-8.html | 362 -- PlotSquared/doc/index-files/index-9.html | 469 --- PlotSquared/doc/index.html | 78 - PlotSquared/doc/overview-frame.html | 54 - PlotSquared/doc/overview-summary.html | 206 -- PlotSquared/doc/overview-tree.html | 905 ----- PlotSquared/doc/package-frame.html | 20 - PlotSquared/doc/package-list | 18 - PlotSquared/doc/package-summary.html | 125 - PlotSquared/doc/package-tree.html | 127 - PlotSquared/doc/resources/background.gif | Bin 2313 -> 0 bytes PlotSquared/doc/resources/tab.gif | Bin 291 -> 0 bytes PlotSquared/doc/resources/titlebar.gif | Bin 10701 -> 0 bytes PlotSquared/doc/resources/titlebar_end.gif | Bin 849 -> 0 bytes PlotSquared/doc/serialized-form.html | 160 - PlotSquared/doc/stylesheet.css | 569 ---- 290 files changed, 120586 deletions(-) delete mode 100644 PlotSquared/doc/Test1.html delete mode 100644 PlotSquared/doc/allclasses-frame.html delete mode 100644 PlotSquared/doc/allclasses-noframe.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/CDL.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/Cookie.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/CookieList.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/HTTP.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONException.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONML.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONString.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/Kim.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/Property.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/XML.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/json/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/C.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/Translation.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/package-frame.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/package-summary.html delete mode 100644 PlotSquared/doc/com/intellectualsites/translation/package-tree.html delete mode 100644 PlotSquared/doc/constant-values.html delete mode 100644 PlotSquared/doc/deprecated-list.html delete mode 100644 PlotSquared/doc/help-doc.html delete mode 100644 PlotSquared/doc/index-files/index-1.html delete mode 100644 PlotSquared/doc/index-files/index-10.html delete mode 100644 PlotSquared/doc/index-files/index-11.html delete mode 100644 PlotSquared/doc/index-files/index-12.html delete mode 100644 PlotSquared/doc/index-files/index-13.html delete mode 100644 PlotSquared/doc/index-files/index-14.html delete mode 100644 PlotSquared/doc/index-files/index-15.html delete mode 100644 PlotSquared/doc/index-files/index-16.html delete mode 100644 PlotSquared/doc/index-files/index-17.html delete mode 100644 PlotSquared/doc/index-files/index-18.html delete mode 100644 PlotSquared/doc/index-files/index-19.html delete mode 100644 PlotSquared/doc/index-files/index-2.html delete mode 100644 PlotSquared/doc/index-files/index-20.html delete mode 100644 PlotSquared/doc/index-files/index-21.html delete mode 100644 PlotSquared/doc/index-files/index-22.html delete mode 100644 PlotSquared/doc/index-files/index-23.html delete mode 100644 PlotSquared/doc/index-files/index-24.html delete mode 100644 PlotSquared/doc/index-files/index-25.html delete mode 100644 PlotSquared/doc/index-files/index-26.html delete mode 100644 PlotSquared/doc/index-files/index-3.html delete mode 100644 PlotSquared/doc/index-files/index-4.html delete mode 100644 PlotSquared/doc/index-files/index-5.html delete mode 100644 PlotSquared/doc/index-files/index-6.html delete mode 100644 PlotSquared/doc/index-files/index-7.html delete mode 100644 PlotSquared/doc/index-files/index-8.html delete mode 100644 PlotSquared/doc/index-files/index-9.html delete mode 100644 PlotSquared/doc/index.html delete mode 100644 PlotSquared/doc/overview-frame.html delete mode 100644 PlotSquared/doc/overview-summary.html delete mode 100644 PlotSquared/doc/overview-tree.html delete mode 100644 PlotSquared/doc/package-frame.html delete mode 100644 PlotSquared/doc/package-list delete mode 100644 PlotSquared/doc/package-summary.html delete mode 100644 PlotSquared/doc/package-tree.html delete mode 100644 PlotSquared/doc/resources/background.gif delete mode 100644 PlotSquared/doc/resources/tab.gif delete mode 100644 PlotSquared/doc/resources/titlebar.gif delete mode 100644 PlotSquared/doc/resources/titlebar_end.gif delete mode 100644 PlotSquared/doc/serialized-form.html delete mode 100644 PlotSquared/doc/stylesheet.css diff --git a/PlotSquared/doc/Test1.html b/PlotSquared/doc/Test1.html deleted file mode 100644 index f89c3dbbc..000000000 --- a/PlotSquared/doc/Test1.html +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - Test1 - - - - - - - -
- - - - - -
- - - -
-

Class Test1

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • Test1
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Test1
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Test1()  -
      -
    • -
    - - -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Test1

        -
        public Test1()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        nextTest

        -
        public boolean nextTest()
        -
      • -
      - - - -
        -
      • -

        t1

        -
        public void t1()
        -
      • -
      - - - -
        -
      • -

        t2

        -
        public void t2()
        -
      • -
      - - - -
        -
      • -

        t3

        -
        public void t3()
        -
      • -
      - - - -
        -
      • -

        t4

        -
        public void t4()
        -
      • -
      - - - -
        -
      • -

        t5

        -
        public void t5()
        -
      • -
      - - - -
        -
      • -

        t6

        -
        public void t6()
        -
      • -
      - - - -
        -
      • -

        t7

        -
        public void t7()
        -
      • -
      - - - -
        -
      • -

        t8

        -
        public void t8()
        -
      • -
      - - - -
        -
      • -

        t9

        -
        public void t9()
        -
      • -
      - - - -
        -
      • -

        test1_Square

        -
        public boolean test1_Square()
        -
      • -
      - - - -
        -
      • -

        test2_InitMain

        -
        public boolean test2_InitMain()
        -
      • -
      - - - -
        -
      • -

        test3_InitPlotId

        -
        public boolean test3_InitPlotId()
        -
      • -
      - - - -
        -
      • -

        test4_InitPlot

        -
        public boolean test4_InitPlot()
        -
      • -
      - - - -
        -
      • -

        test5_InitDBFunc

        -
        public boolean test5_InitDBFunc()
        -
      • -
      - - - -
        -
      • -

        test6_Plots

        -
        public boolean test6_Plots()
        -
      • -
      - - - -
        -
      • -

        test7_OnEnable

        -
        public boolean test7_OnEnable()
        -
      • -
      - - - -
        -
      • -

        test8_AddPlotWorld

        -
        public boolean test8_AddPlotWorld()
        -
      • -
      - - - -
        -
      • -

        test9_CanSetFast

        -
        public boolean test9_CanSetFast()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/allclasses-frame.html b/PlotSquared/doc/allclasses-frame.html deleted file mode 100644 index 43539614b..000000000 --- a/PlotSquared/doc/allclasses-frame.html +++ /dev/null @@ -1,411 +0,0 @@ - - - - - - All Classes - - - - -

All Classes

- -
- -
- - diff --git a/PlotSquared/doc/allclasses-noframe.html b/PlotSquared/doc/allclasses-noframe.html deleted file mode 100644 index 1aad7c38e..000000000 --- a/PlotSquared/doc/allclasses-noframe.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - All Classes - - - - -

All Classes

- -
- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html deleted file mode 100644 index 0043eb919..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteArrayTag.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - ByteArrayTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class ByteArrayTag

-
-
- -
-
    -
  • -
    -
    -
    public final class ByteArrayTag
    -extends Tag
    -
    The TAG_Byte_Array tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      ByteArrayTag(byte[] value) - -
      Creates the tag with an empty name.
      -
      ByteArrayTag(java.lang.String name, - byte[] value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      byte[]getValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ByteArrayTag

        -
        public ByteArrayTag(byte[] value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        ByteArrayTag

        -
        public ByteArrayTag(java.lang.String name,
        -            byte[] value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public byte[] getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html deleted file mode 100644 index 78191044d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/ByteTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - ByteTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class ByteTag

-
-
- -
-
    -
  • -
    -
    -
    public final class ByteTag
    -extends Tag
    -
    The TAG_Byte tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      ByteTag(byte value) - -
      Creates the tag with an empty name.
      -
      ByteTag(java.lang.String name, - byte value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.BytegetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ByteTag

        -
        public ByteTag(byte value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        ByteTag

        -
        public ByteTag(java.lang.String name,
        -       byte value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Byte getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html deleted file mode 100644 index 4ff42a3e7..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTag.html +++ /dev/null @@ -1,915 +0,0 @@ - - - - - - CompoundTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class CompoundTag

-
-
- -
-
    -
  • -
    -
    -
    public final class CompoundTag
    -extends Tag
    -
    The TAG_Compound tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      CompoundTag(java.util.Map<java.lang.String,Tag> value) - -
      Creates the tag with an empty name.
      -
      CompoundTag(java.lang.String name, - java.util.Map<java.lang.String,Tag> value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      doubleasDouble(java.lang.String key) - -
      Get a double named with the given key, even if it's another - type of number. -
      -
      intasInt(java.lang.String key) - -
      Get an int named with the given key, even if it's another - type of number. -
      -
      longasLong(java.lang.String key) - -
      Get a long named with the given key, even if it's another - type of number. -
      -
      booleancontainsKey(java.lang.String key) - -
      Returns whether this compound tag contains the given key.
      -
      CompoundTagBuildercreateBuilder() - -
      Create a compound tag builder.
      -
      bytegetByte(java.lang.String key) - -
      Get a byte named with the given key.
      -
      byte[]getByteArray(java.lang.String key) - -
      Get a byte array named with the given key.
      -
      doublegetDouble(java.lang.String key) - -
      Get a double named with the given key.
      -
      floatgetFloat(java.lang.String key) - -
      Get a float named with the given key.
      -
      intgetInt(java.lang.String key) - -
      Get an int named with the given key.
      -
      int[]getIntArray(java.lang.String key) - -
      Get a int[] named with the given key.
      -
      java.util.List<Tag>getList(java.lang.String key) - -
      Get a list of tags named with the given key.
      -
      <T extends Tag
      java.util.List<T> -
      getList(java.lang.String key, - java.lang.Class<T> listType) - -
      Get a list of tags named with the given key.
      -
      ListTag - getListTag(java.lang.String key) - -
      Get a TagList named with the given key.
      -
      longgetLong(java.lang.String key) - -
      Get a long named with the given key.
      -
      shortgetShort(java.lang.String key) - -
      Get a short named with the given key.
      -
      java.lang.StringgetString(java.lang.String key) - -
      Get a string named with the given key.
      -
      java.util.Map<java.lang.String,Tag>getValue() - -
      Gets the value of this tag.
      -
      CompoundTag - setValue(java.util.Map<java.lang.String,Tag> value) - -
      Return a new compound tag with the given values.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        CompoundTag

        -
        public CompoundTag(java.util.Map<java.lang.String,Tag> value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        CompoundTag

        -
        public CompoundTag(java.lang.String name,
        -           java.util.Map<java.lang.String,Tag> value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        containsKey

        -
        public boolean containsKey(java.lang.String key)
        -
        Returns whether this compound tag contains the given key.
        -
        -
        Parameters:
        -
        key - the given key
        -
        Returns:
        -
        true if the tag contains the given key
        -
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public java.util.Map<java.lang.String,Tag> getValue()
        -
        Description copied from class: Tag
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        setValue

        -
        public CompoundTag setValue(java.util.Map<java.lang.String,Tag> value)
        -
        Return a new compound tag with the given values.
        -
        -
        Parameters:
        -
        value - the value
        -
        Returns:
        -
        the new compound tag
        -
        -
      • -
      - - - -
        -
      • -

        createBuilder

        -
        public CompoundTagBuilder createBuilder()
        -
        Create a compound tag builder.
        -
        -
        Returns:
        -
        the builder
        -
        -
      • -
      - - - -
        -
      • -

        getByteArray

        -
        public byte[] getByteArray(java.lang.String key)
        -
        Get a byte array named with the given key. -

        - -

        - If the key does not exist or its value is not a byte array tag, then an - empty byte array will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a byte array
        -
        -
      • -
      - - - -
        -
      • -

        getByte

        -
        public byte getByte(java.lang.String key)
        -
        Get a byte named with the given key. -

        - -

        - If the key does not exist or its value is not a byte tag, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a byte
        -
        -
      • -
      - - - -
        -
      • -

        getDouble

        -
        public double getDouble(java.lang.String key)
        -
        Get a double named with the given key. -

        - -

        - If the key does not exist or its value is not a double tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a double
        -
        -
      • -
      - - - -
        -
      • -

        asDouble

        -
        public double asDouble(java.lang.String key)
        -
        Get a double named with the given key, even if it's another - type of number. -

        - -

        - If the key does not exist or its value is not a number, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a double
        -
        -
      • -
      - - - -
        -
      • -

        getFloat

        -
        public float getFloat(java.lang.String key)
        -
        Get a float named with the given key. -

        - -

        - If the key does not exist or its value is not a float tag, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a float
        -
        -
      • -
      - - - -
        -
      • -

        getIntArray

        -
        public int[] getIntArray(java.lang.String key)
        -
        Get a int[] named with the given key. -

        - -

        - If the key does not exist or its value is not an int array tag, then an - empty array will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        an int array
        -
        -
      • -
      - - - -
        -
      • -

        getInt

        -
        public int getInt(java.lang.String key)
        -
        Get an int named with the given key. -

        - -

        - If the key does not exist or its value is not an int tag, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        an int
        -
        -
      • -
      - - - -
        -
      • -

        asInt

        -
        public int asInt(java.lang.String key)
        -
        Get an int named with the given key, even if it's another - type of number. -

        - -

        - If the key does not exist or its value is not a number, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        an int
        -
        -
      • -
      - - - -
        -
      • -

        getList

        -
        public java.util.List<Tag> getList(java.lang.String key)
        -
        Get a list of tags named with the given key. -

        - -

        - If the key does not exist or its value is not a list tag, then an empty - list will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a list of tags
        -
        -
      • -
      - - - -
        -
      • -

        getListTag

        -
        public ListTag getListTag(java.lang.String key)
        -
        Get a TagList named with the given key. -

        - -

        - If the key does not exist or its value is not a list tag, then an empty - tag list will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a tag list instance
        -
        -
      • -
      - - - -
        -
      • -

        getList

        -
        public <T extends Tag> java.util.List<T> getList(java.lang.String key,
        -                                        java.lang.Class<T> listType)
        -
        Get a list of tags named with the given key. -

        - -

        - If the key does not exist or its value is not a list tag, then an empty - list will be returned. If the given key references a list but the list of - of a different type, then an empty list will also be returned. -

        -
        -
        Type Parameters:
        -
        T - the type of list
        -
        Parameters:
        -
        key - the key
        -
        listType - the class of the contained type
        -
        Returns:
        -
        a list of tags
        -
        -
      • -
      - - - -
        -
      • -

        getLong

        -
        public long getLong(java.lang.String key)
        -
        Get a long named with the given key. -

        - -

        - If the key does not exist or its value is not a long tag, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a long
        -
        -
      • -
      - - - -
        -
      • -

        asLong

        -
        public long asLong(java.lang.String key)
        -
        Get a long named with the given key, even if it's another - type of number. -

        - -

        - If the key does not exist or its value is not a number, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a long
        -
        -
      • -
      - - - -
        -
      • -

        getShort

        -
        public short getShort(java.lang.String key)
        -
        Get a short named with the given key. -

        - -

        - If the key does not exist or its value is not a short tag, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a short
        -
        -
      • -
      - - - -
        -
      • -

        getString

        -
        public java.lang.String getString(java.lang.String key)
        -
        Get a string named with the given key. -

        - -

        - If the key does not exist or its value is not a string tag, then - "" will be returned. -

        -
        -
        Parameters:
        -
        key - the key
        -
        Returns:
        -
        a string
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html deleted file mode 100644 index 55719e324..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/CompoundTagBuilder.html +++ /dev/null @@ -1,664 +0,0 @@ - - - - - - CompoundTagBuilder - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class CompoundTagBuilder

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.CompoundTagBuilder
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class CompoundTagBuilder
    -extends java.lang.Object
    -
    Helps create compound tags.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      CompoundTag - build() - -
      Build an unnamed compound tag with this builder's entries.
      -
      CompoundTag - build(java.lang.String name) - -
      Build a new compound tag with this builder's entries.
      -
      static CompoundTagBuildercreate() - -
      Create a new builder instance.
      -
      CompoundTagBuilderput(java.lang.String key, - Tag value) - -
      Put the given key and tag into the compound tag.
      -
      CompoundTagBuilderputAll(java.util.Map<java.lang.String,? - extends Tag> value) - -
      Put all the entries from the given map into this map.
      -
      CompoundTagBuilderputByte(java.lang.String key, - byte value) - -
      Put the given key and value into the compound tag as a - ByteTag. -
      -
      CompoundTagBuilderputByteArray(java.lang.String key, - byte[] value) - -
      Put the given key and value into the compound tag as a - ByteArrayTag. -
      -
      CompoundTagBuilderputDouble(java.lang.String key, - double value) - -
      Put the given key and value into the compound tag as a DoubleTag. -
      -
      CompoundTagBuilderputFloat(java.lang.String key, - float value) - -
      Put the given key and value into the compound tag as a - FloatTag. -
      -
      CompoundTagBuilderputInt(java.lang.String key, - int value) - -
      Put the given key and value into the compound tag as an - IntTag. -
      -
      CompoundTagBuilderputIntArray(java.lang.String key, - int[] value) - -
      Put the given key and value into the compound tag as a - IntArrayTag. -
      -
      CompoundTagBuilderputLong(java.lang.String key, - long value) - -
      Put the given key and value into the compound tag as a - LongTag. -
      -
      CompoundTagBuilderputShort(java.lang.String key, - short value) - -
      Put the given key and value into the compound tag as a - ShortTag. -
      -
      CompoundTagBuilderputString(java.lang.String key, - java.lang.String value) - -
      Put the given key and value into the compound tag as a StringTag. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        create

        -
        public static CompoundTagBuilder create()
        -
        Create a new builder instance.
        -
        -
        Returns:
        -
        a new builder
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public CompoundTagBuilder put(java.lang.String key,
        -                     Tag value)
        -
        Put the given key and tag into the compound tag.
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putByteArray

        -
        public CompoundTagBuilder putByteArray(java.lang.String key,
        -                              byte[] value)
        -
        Put the given key and value into the compound tag as a - ByteArrayTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putByte

        -
        public CompoundTagBuilder putByte(java.lang.String key,
        -                         byte value)
        -
        Put the given key and value into the compound tag as a - ByteTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putDouble

        -
        public CompoundTagBuilder putDouble(java.lang.String key,
        -                           double value)
        -
        Put the given key and value into the compound tag as a - DoubleTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putFloat

        -
        public CompoundTagBuilder putFloat(java.lang.String key,
        -                          float value)
        -
        Put the given key and value into the compound tag as a - FloatTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putIntArray

        -
        public CompoundTagBuilder putIntArray(java.lang.String key,
        -                             int[] value)
        -
        Put the given key and value into the compound tag as a - IntArrayTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putInt

        -
        public CompoundTagBuilder putInt(java.lang.String key,
        -                        int value)
        -
        Put the given key and value into the compound tag as an - IntTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putLong

        -
        public CompoundTagBuilder putLong(java.lang.String key,
        -                         long value)
        -
        Put the given key and value into the compound tag as a - LongTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putShort

        -
        public CompoundTagBuilder putShort(java.lang.String key,
        -                          short value)
        -
        Put the given key and value into the compound tag as a - ShortTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putString

        -
        public CompoundTagBuilder putString(java.lang.String key,
        -                           java.lang.String value)
        -
        Put the given key and value into the compound tag as a - StringTag. -
        -
        -
        Parameters:
        -
        key - they key
        -
        value - the value
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        putAll

        -
        public CompoundTagBuilder putAll(java.util.Map<java.lang.String,? extends Tag> value)
        -
        Put all the entries from the given map into this map.
        -
        -
        Parameters:
        -
        value - the map of tags
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        build

        -
        public CompoundTag build()
        -
        Build an unnamed compound tag with this builder's entries.
        -
        -
        Returns:
        -
        the new compound tag
        -
        -
      • -
      - - - -
        -
      • -

        build

        -
        public CompoundTag build(java.lang.String name)
        -
        Build a new compound tag with this builder's entries.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        Returns:
        -
        the created compound tag
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html deleted file mode 100644 index 171be5fd1..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/DoubleTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - DoubleTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class DoubleTag

-
-
- -
-
    -
  • -
    -
    -
    public final class DoubleTag
    -extends Tag
    -
    The TAG_Double tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      DoubleTag(double value) - -
      Creates the tag with an empty name.
      -
      DoubleTag(java.lang.String name, - double value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.DoublegetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DoubleTag

        -
        public DoubleTag(double value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        DoubleTag

        -
        public DoubleTag(java.lang.String name,
        -         double value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Double getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html deleted file mode 100644 index f1459e6e4..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/EndTag.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - EndTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class EndTag

-
-
- -
-
    -
  • -
    -
    -
    public final class EndTag
    -extends Tag
    -
    The TAG_End tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      EndTag() - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ObjectgetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        EndTag

        -
        public EndTag()
        -
        Creates the tag.
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Object getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html deleted file mode 100644 index e1b6fdbe2..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/FloatTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - FloatTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class FloatTag

-
-
- -
-
    -
  • -
    -
    -
    public final class FloatTag
    -extends Tag
    -
    The TAG_Float tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      FloatTag(float value) - -
      Creates the tag with an empty name.
      -
      FloatTag(java.lang.String name, - float value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.FloatgetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        FloatTag

        -
        public FloatTag(float value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        FloatTag

        -
        public FloatTag(java.lang.String name,
        -        float value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Float getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html deleted file mode 100644 index 307b7c6c3..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/IntArrayTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - IntArrayTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class IntArrayTag

-
-
- -
-
    -
  • -
    -
    -
    public final class IntArrayTag
    -extends Tag
    -
    The TAG_Int_Array tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      IntArrayTag(int[] value) - -
      Creates the tag with an empty name.
      -
      IntArrayTag(java.lang.String name, - int[] value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      int[]getValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        IntArrayTag

        -
        public IntArrayTag(int[] value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        IntArrayTag

        -
        public IntArrayTag(java.lang.String name,
        -           int[] value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public int[] getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html deleted file mode 100644 index 367868953..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/IntTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - IntTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class IntTag

-
-
- -
-
    -
  • -
    -
    -
    public final class IntTag
    -extends Tag
    -
    The TAG_Int tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      IntTag(int value) - -
      Creates the tag with an empty name.
      -
      IntTag(java.lang.String name, - int value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.IntegergetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        IntTag

        -
        public IntTag(int value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        IntTag

        -
        public IntTag(java.lang.String name,
        -      int value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Integer getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html deleted file mode 100644 index 076194d3d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTag.html +++ /dev/null @@ -1,927 +0,0 @@ - - - - - - ListTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class ListTag

-
-
- -
-
    -
  • -
    -
    -
    public final class ListTag
    -extends Tag
    -
    The TAG_List tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      ListTag(java.lang.Class<? - extends Tag> type, - java.util.List<? extends Tag> value) - -
      Creates the tag with an empty name.
      -
      ListTag(java.lang.String name, - java.lang.Class<? extends Tag> type, - java.util.List<? extends Tag> value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      doubleasDouble(int index) - -
      Get a double named with the given index, even if it's another - type of number. -
      -
      intasInt(int index) - -
      Get an int named with the given index, even if it's another - type of number. -
      -
      longasLong(int index) - -
      Get a long named with the given index, even if it's another - type of number. -
      -
      bytegetByte(int index) - -
      Get a byte named with the given index.
      -
      byte[]getByteArray(int index) - -
      Get a byte array named with the given index.
      -
      doublegetDouble(int index) - -
      Get a double named with the given index.
      -
      floatgetFloat(int index) - -
      Get a float named with the given index.
      -
      Tag - getIfExists(int index) - -
      Get the tag if it exists at the given index.
      -
      intgetInt(int index) - -
      Get an int named with the given index.
      -
      int[]getIntArray(int index) - -
      Get a int[] named with the given index.
      -
      java.util.List<Tag>getList(int index) - -
      Get a list of tags named with the given index.
      -
      <T extends Tag
      java.util.List<T> -
      getList(int index, - java.lang.Class<T> listType) - -
      Get a list of tags named with the given index.
      -
      ListTag - getListTag(int index) - -
      Get a TagList named with the given index.
      -
      longgetLong(int index) - -
      Get a long named with the given index.
      -
      shortgetShort(int index) - -
      Get a short named with the given index.
      -
      java.lang.StringgetString(int index) - -
      Get a string named with the given index.
      -
      java.lang.Class<? extends Tag>getType() - -
      Gets the type of item in this list.
      -
      java.util.List<Tag>getValue() - -
      Gets the value of this tag.
      -
      ListTag - setValue(java.util.List<Tag> list) - -
      Create a new list tag with this tag's name and type.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ListTag

        -
        public ListTag(java.lang.Class<? extends Tag> type,
        -       java.util.List<? extends Tag> value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        type - the type of tag
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        ListTag

        -
        public ListTag(java.lang.String name,
        -       java.lang.Class<? extends Tag> type,
        -       java.util.List<? extends Tag> value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        type - the type of tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getType

        -
        public java.lang.Class<? extends Tag> getType()
        -
        Gets the type of item in this list.
        -
        -
        Returns:
        -
        The type of item in this list.
        -
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public java.util.List<Tag> getValue()
        -
        Description copied from class: Tag
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        setValue

        -
        public ListTag setValue(java.util.List<Tag> list)
        -
        Create a new list tag with this tag's name and type.
        -
        -
        Parameters:
        -
        list - the new list
        -
        Returns:
        -
        a new list tag
        -
        -
      • -
      - - - -
        -
      • -

        getIfExists

        -
        @Nullable
        -public Tag getIfExists(int index)
        -
        Get the tag if it exists at the given index.
        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        the tag or null
        -
        -
      • -
      - - - -
        -
      • -

        getByteArray

        -
        public byte[] getByteArray(int index)
        -
        Get a byte array named with the given index. -

        - -

        - If the index does not exist or its value is not a byte array tag, then an - empty byte array will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a byte array
        -
        -
      • -
      - - - -
        -
      • -

        getByte

        -
        public byte getByte(int index)
        -
        Get a byte named with the given index. -

        - -

        - If the index does not exist or its value is not a byte tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a byte
        -
        -
      • -
      - - - -
        -
      • -

        getDouble

        -
        public double getDouble(int index)
        -
        Get a double named with the given index. -

        - -

        - If the index does not exist or its value is not a double tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a double
        -
        -
      • -
      - - - -
        -
      • -

        asDouble

        -
        public double asDouble(int index)
        -
        Get a double named with the given index, even if it's another - type of number. -

        - -

        - If the index does not exist or its value is not a number, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a double
        -
        -
      • -
      - - - -
        -
      • -

        getFloat

        -
        public float getFloat(int index)
        -
        Get a float named with the given index. -

        - -

        - If the index does not exist or its value is not a float tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a float
        -
        -
      • -
      - - - -
        -
      • -

        getIntArray

        -
        public int[] getIntArray(int index)
        -
        Get a int[] named with the given index. -

        - -

        - If the index does not exist or its value is not an int array tag, then an - empty array will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        an int array
        -
        -
      • -
      - - - -
        -
      • -

        getInt

        -
        public int getInt(int index)
        -
        Get an int named with the given index. -

        - -

        - If the index does not exist or its value is not an int tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        an int
        -
        -
      • -
      - - - -
        -
      • -

        asInt

        -
        public int asInt(int index)
        -
        Get an int named with the given index, even if it's another - type of number. -

        - -

        - If the index does not exist or its value is not a number, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        an int
        -
        -
      • -
      - - - -
        -
      • -

        getList

        -
        public java.util.List<Tag> getList(int index)
        -
        Get a list of tags named with the given index. -

        - -

        - If the index does not exist or its value is not a list tag, then an empty - list will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a list of tags
        -
        -
      • -
      - - - -
        -
      • -

        getListTag

        -
        public ListTag getListTag(int index)
        -
        Get a TagList named with the given index. -

        - -

        - If the index does not exist or its value is not a list tag, then an empty - tag list will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a tag list instance
        -
        -
      • -
      - - - -
        -
      • -

        getList

        -
        public <T extends Tag> java.util.List<T> getList(int index,
        -                                        java.lang.Class<T> listType)
        -
        Get a list of tags named with the given index. -

        - -

        - If the index does not exist or its value is not a list tag, then an empty - list will be returned. If the given index references a list but the list - of of a different type, then an empty list will also be returned. -

        -
        -
        Type Parameters:
        -
        T - the NBT type
        -
        Parameters:
        -
        index - the index
        -
        listType - the class of the contained type
        -
        Returns:
        -
        a list of tags
        -
        -
      • -
      - - - -
        -
      • -

        getLong

        -
        public long getLong(int index)
        -
        Get a long named with the given index. -

        - -

        - If the index does not exist or its value is not a long tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a long
        -
        -
      • -
      - - - -
        -
      • -

        asLong

        -
        public long asLong(int index)
        -
        Get a long named with the given index, even if it's another - type of number. -

        - -

        - If the index does not exist or its value is not a number, then 0 - will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a long
        -
        -
      • -
      - - - -
        -
      • -

        getShort

        -
        public short getShort(int index)
        -
        Get a short named with the given index. -

        - -

        - If the index does not exist or its value is not a short tag, then - 0 will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a short
        -
        -
      • -
      - - - -
        -
      • -

        getString

        -
        public java.lang.String getString(int index)
        -
        Get a string named with the given index. -

        - -

        - If the index does not exist or its value is not a string tag, then - "" will be returned. -

        -
        -
        Parameters:
        -
        index - the index
        -
        Returns:
        -
        a string
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html deleted file mode 100644 index d1149fd03..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/ListTagBuilder.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - ListTagBuilder - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class ListTagBuilder

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.ListTagBuilder
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ListTagBuilder
    -extends java.lang.Object
    -
    Helps create list tags.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      ListTagBuilderadd(Tag value) - -
      Add the given tag.
      -
      ListTagBuilderaddAll(java.util.Collection<? - extends Tag> value) - -
      Add all the tags in the given list.
      -
      ListTag - build() - -
      Build an unnamed list tag with this builder's entries.
      -
      ListTag - build(java.lang.String name) - -
      Build a new list tag with this builder's entries.
      -
      static ListTagBuildercreate(java.lang.Class<? - extends Tag> type) - -
      Create a new builder instance.
      -
      static <T extends Tag
      ListTagBuilder
      createWith(T... entries) - -
      Create a new builder instance.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        create

        -
        public static ListTagBuilder create(java.lang.Class<? extends Tag> type)
        -
        Create a new builder instance.
        -
        -
        Returns:
        -
        a new builder
        -
        -
      • -
      - - - - - -
        -
      • -

        createWith

        -
        public static <T extends TagListTagBuilder createWith(T... entries)
        -
        Create a new builder instance.
        -
        -
        Returns:
        -
        a new builder
        -
        -
      • -
      - - - -
        -
      • -

        add

        -
        public ListTagBuilder add(Tag value)
        -
        Add the given tag.
        -
        -
        Parameters:
        -
        value - the tag
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        addAll

        -
        public ListTagBuilder addAll(java.util.Collection<? extends Tag> value)
        -
        Add all the tags in the given list.
        -
        -
        Parameters:
        -
        value - a list of tags
        -
        Returns:
        -
        this object
        -
        -
      • -
      - - - -
        -
      • -

        build

        -
        public ListTag build()
        -
        Build an unnamed list tag with this builder's entries.
        -
        -
        Returns:
        -
        the new list tag
        -
        -
      • -
      - - - -
        -
      • -

        build

        -
        public ListTag build(java.lang.String name)
        -
        Build a new list tag with this builder's entries.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        Returns:
        -
        the created list tag
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html deleted file mode 100644 index 6f6f4d62b..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/LongTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - LongTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class LongTag

-
-
- -
-
    -
  • -
    -
    -
    public final class LongTag
    -extends Tag
    -
    The TAG_Long tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      LongTag(long value) - -
      Creates the tag with an empty name.
      -
      LongTag(java.lang.String name, - long value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.LonggetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        LongTag

        -
        public LongTag(long value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        LongTag

        -
        public LongTag(java.lang.String name,
        -       long value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Long getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html deleted file mode 100644 index 460af5096..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTConstants.html +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - NBTConstants - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class NBTConstants

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.NBTConstants
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public final class NBTConstants
    -extends java.lang.Object
    -
    A class which holds constant values.
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Class<? extends Tag>getClassFromType(int id) - -
      Convert a type ID to its corresponding Tag class. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
- -
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html deleted file mode 100644 index af0001137..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTInputStream.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - NBTInputStream - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class NBTInputStream

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.NBTInputStream
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Closeable, java.lang.AutoCloseable
    -
    -
    -
    -
    public final class NBTInputStream
    -extends java.lang.Object
    -implements java.io.Closeable
    -
    This class reads NBT, or Named Binary Tag - streams, and produces an object graph of subclasses of the Tag - object. -

    - -

    - The NBT format was created by Markus Persson, and the specification may be - found at - http://www.minecraft.net/docs/NBT.txt. -

    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      NBTInputStream(java.io.InputStream is) - -
      Creates a new NBTInputStream, which will source its - data - from the specified input stream. -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidclose()  -
      Tag - readTag() - -
      Reads an NBT tag from the stream.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        NBTInputStream

        -
        public NBTInputStream(java.io.InputStream is)
        -               throws java.io.IOException
        -
        Creates a new NBTInputStream, which will source its data - from the specified input stream. -
        -
        -
        Parameters:
        -
        is - the input stream
        -
        Throws:
        -
        java.io.IOException - if an I/O error occurs
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        readTag

        -
        public Tag readTag()
        -            throws java.io.IOException
        -
        Reads an NBT tag from the stream.
        -
        -
        Returns:
        -
        The tag that was read.
        -
        Throws:
        -
        java.io.IOException - if an I/O error occurs.
        -
        -
      • -
      - - - -
        -
      • -

        close

        -
        public void close()
        -           throws java.io.IOException
        -
        -
        Specified by:
        -
        close in interface java.io.Closeable
        -
        Specified by:
        -
        close in interface java.lang.AutoCloseable -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html deleted file mode 100644 index 0d0eab593..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTOutputStream.html +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - NBTOutputStream - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class NBTOutputStream

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.NBTOutputStream
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Closeable, java.lang.AutoCloseable
    -
    -
    -
    -
    public final class NBTOutputStream
    -extends java.lang.Object
    -implements java.io.Closeable
    -

    - This class writes NBT, or Named Binary Tag - Tag objects to an underlying OutputStream. -

    - -

    - -

    - The NBT format was created by Markus Persson, and the specification may be - found at - http://www.minecraft.net/docs/NBT.txt. -

    -
    -
    Author:
    -
    Graham Edgecombe
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      NBTOutputStream(java.io.OutputStream os) - -
      Creates a new NBTOutputStream, which will write data - to the - specified underlying output stream. -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidclose()  -
      voidwriteTag(Tag tag) - -
      Writes a tag.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        NBTOutputStream

        -
        public NBTOutputStream(java.io.OutputStream os)
        -                throws java.io.IOException
        -
        Creates a new NBTOutputStream, which will write data to - the - specified underlying output stream. -
        -
        -
        Parameters:
        -
        os - The output stream.
        -
        Throws:
        -
        java.io.IOException - if an I/O error occurs.
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        writeTag

        -
        public void writeTag(Tag tag)
        -              throws java.io.IOException
        -
        Writes a tag.
        -
        -
        Parameters:
        -
        tag - The tag to write.
        -
        Throws:
        -
        java.io.IOException - if an I/O error occurs.
        -
        -
      • -
      - - - -
        -
      • -

        close

        -
        public void close()
        -           throws java.io.IOException
        -
        -
        Specified by:
        -
        close in interface java.io.Closeable
        -
        Specified by:
        -
        close in interface java.lang.AutoCloseable -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html deleted file mode 100644 index 0224f0c06..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/NBTUtils.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - NBTUtils - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class NBTUtils

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.NBTUtils
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public final class NBTUtils
    -extends java.lang.Object
    -
    A class which contains NBT-related utility methods.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static <T extends Tag
      T
      -
      getChildTag(java.util.Map<java.lang.String,Tag> items, - java.lang.String key, - java.lang.Class<T> expected) - -
      Get child tag of a NBT structure.
      -
      static java.lang.Class<? extends Tag>getTypeClass(int type) - -
      Gets the class of a type of tag.
      -
      static intgetTypeCode(java.lang.Class<? - extends Tag> clazz) - -
      Gets the type code of a tag class.
      -
      static java.lang.StringgetTypeName(java.lang.Class<? - extends Tag> clazz) - -
      Gets the type name of a tag.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getTypeName

        -
        public static java.lang.String getTypeName(java.lang.Class<? extends Tag> clazz)
        -
        Gets the type name of a tag.
        -
        -
        Parameters:
        -
        clazz - the tag class
        -
        Returns:
        -
        The type name.
        -
        -
      • -
      - - - -
        -
      • -

        getTypeCode

        -
        public static int getTypeCode(java.lang.Class<? extends Tag> clazz)
        -
        Gets the type code of a tag class.
        -
        -
        Parameters:
        -
        clazz - the tag class
        -
        Returns:
        -
        The type code.
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if the tag class is invalid. -
        -
        -
      • -
      - - - -
        -
      • -

        getTypeClass

        -
        public static java.lang.Class<? extends Tag> getTypeClass(int type)
        -
        Gets the class of a type of tag.
        -
        -
        Parameters:
        -
        type - the type
        -
        Returns:
        -
        The class.
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if the tag type is invalid. -
        -
        -
      • -
      - - - -
        -
      • -

        getChildTag

        -
        public static <T extends Tag> T getChildTag(java.util.Map<java.lang.String,Tag> items,
        -                            java.lang.String key,
        -                            java.lang.Class<T> expected)
        -                                 throws java.lang.IllegalArgumentException
        -
        Get child tag of a NBT structure.
        -
        -
        Parameters:
        -
        items - the map to read from
        -
        key - the key to look for
        -
        expected - the expected NBT class type
        -
        Returns:
        -
        child tag
        -
        Throws:
        -
        InvalidFormatException
        -
        java.lang.IllegalArgumentException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html deleted file mode 100644 index 040b99148..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/ShortTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - ShortTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class ShortTag

-
-
- -
-
    -
  • -
    -
    -
    public final class ShortTag
    -extends Tag
    -
    The TAG_Short tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      ShortTag(short value) - -
      Creates the tag with an empty name.
      -
      ShortTag(java.lang.String name, - short value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ShortgetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ShortTag

        -
        public ShortTag(short value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        ShortTag

        -
        public ShortTag(java.lang.String name,
        -        short value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Short getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html deleted file mode 100644 index 4c6b3b315..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/StringTag.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - StringTag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class StringTag

-
-
- -
-
    -
  • -
    -
    -
    public final class StringTag
    -extends Tag
    -
    The TAG_String tag.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      StringTag(java.lang.String value) - -
      Creates the tag with an empty name.
      -
      StringTag(java.lang.String name, - java.lang.String value) - -
      Creates the tag.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetValue() - -
      Gets the value of this tag.
      -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class com.intellectualcrafters.jnbt.Tag

        - getName -
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        StringTag

        -
        public StringTag(java.lang.String value)
        -
        Creates the tag with an empty name.
        -
        -
        Parameters:
        -
        value - the value of the tag
        -
        -
      • -
      - - - -
        -
      • -

        StringTag

        -
        public StringTag(java.lang.String name,
        -         java.lang.String value)
        -
        Creates the tag.
        -
        -
        Parameters:
        -
        name - the name of the tag
        -
        value - the value of the tag
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.String getValue()
        -
        Description copied from class: Tag -
        -
        Gets the value of this tag.
        -
        -
        Specified by:
        -
        getValue in - class Tag -
        -
        Returns:
        -
        the value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html deleted file mode 100644 index de0e80f53..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/Tag.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - Tag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class Tag

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.Tag
    • -
    -
  • -
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetName() - -
      Gets the name of this tag.
      -
      abstract java.lang.ObjectgetValue() - -
      Gets the value of this tag.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getName

        -
        public final java.lang.String getName()
        -
        Gets the name of this tag.
        -
        -
        Returns:
        -
        the name of this tag
        -
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public abstract java.lang.Object getValue()
        -
        Gets the value of this tag.
        -
        -
        Returns:
        -
        the value
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html deleted file mode 100644 index d9117fb91..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/WorldEditUtils.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - WorldEditUtils - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.jnbt
-

Class WorldEditUtils

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.jnbt.WorldEditUtils
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class WorldEditUtils
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      WorldEditUtils()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidsetNBT(org.bukkit.World world, - short id, - byte data, - int x, - int y, - int z, - CompoundTag tag)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        WorldEditUtils

        -
        public WorldEditUtils()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setNBT

        -
        public static void setNBT(org.bukkit.World world,
        -          short id,
        -          byte data,
        -          int x,
        -          int y,
        -          int z,
        -          CompoundTag tag)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html deleted file mode 100644 index 3eed3fbcf..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-frame.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - com.intellectualcrafters.jnbt - - - - -

com.intellectualcrafters.jnbt -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html deleted file mode 100644 index 2f5218938..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-summary.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - com.intellectualcrafters.jnbt - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.jnbt

-
-
-
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    ByteArrayTag -
    The TAG_Byte_Array tag.
    -
    ByteTag -
    The TAG_Byte tag.
    -
    CompoundTag -
    The TAG_Compound tag.
    -
    CompoundTagBuilder -
    Helps create compound tags.
    -
    DoubleTag -
    The TAG_Double tag.
    -
    EndTag -
    The TAG_End tag.
    -
    FloatTag -
    The TAG_Float tag.
    -
    IntArrayTag -
    The TAG_Int_Array tag.
    -
    IntTag -
    The TAG_Int tag.
    -
    ListTag -
    The TAG_List tag.
    -
    ListTagBuilder -
    Helps create list tags.
    -
    LongTag -
    The TAG_Long tag.
    -
    NBTConstants -
    A class which holds constant values.
    -
    NBTInputStream -
    This class reads NBT, or Named Binary Tag - streams, and produces an object graph of subclasses of the Tag - object. -
    -
    NBTOutputStream -
    - This class writes NBT, or Named Binary Tag - Tag objects to an underlying OutputStream. -
    -
    NBTUtils -
    A class which contains NBT-related utility methods.
    -
    ShortTag -
    The TAG_Short tag.
    -
    StringTag -
    The TAG_String tag.
    -
    Tag -
    Represents a NBT tag.
    -
    WorldEditUtils 
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html deleted file mode 100644 index 49bcf36be..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/jnbt/package-tree.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - com.intellectualcrafters.jnbt Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.jnbt

- Package Hierarchies: - -
-
-

Class Hierarchy

- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/CDL.html b/PlotSquared/doc/com/intellectualcrafters/json/CDL.html deleted file mode 100644 index 33f242285..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/CDL.html +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - CDL - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class CDL

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.CDL
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class CDL
    -extends java.lang.Object
    -
    This provides static methods to convert comma delimited text into a - JSONArray, and to covert a JSONArray into comma delimited text. Comma - delimited text is a very popular format for data interchange. It is - understood by most database, spreadsheet, and organizer programs. -

    - Each row of text represents a row in a table or a data record. Each row ends - with a NEWLINE character. Each row contains one or more values. Values are - separated by commas. A value can contain any character except for comma, - unless is is wrapped in single quotes or double quotes. -

    - The first row usually contains the names of the columns. -

    - A comma delimited list can be converted into a JSONArray of JSONObjects. The - names for the elements in the JSONObjects can be taken from the names in the - first row. -

    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      CDL()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static JSONArrayrowToJSONArray(JSONTokener x) - -
      Produce a JSONArray of strings from a row of comma delimited - values. -
      -
      static JSONObjectrowToJSONObject(JSONArray names, - JSONTokener x) - -
      Produce a JSONObject from a row of comma delimited text, using a - parallel JSONArray of strings to provides the names of the elements. -
      -
      static java.lang.StringrowToString(JSONArray ja) - -
      Produce a comma delimited text row from a JSONArray.
      -
      static JSONArraytoJSONArray(JSONArray names, - JSONTokener x) - -
      Produce a JSONArray of JSONObjects from a comma delimited text string - using a supplied JSONArray as the source of element names. -
      -
      static JSONArraytoJSONArray(JSONArray names, - java.lang.String string) - -
      Produce a JSONArray of JSONObjects from a comma delimited text string - using a supplied JSONArray as the source of element names. -
      -
      static JSONArraytoJSONArray(JSONTokener x) - -
      Produce a JSONArray of JSONObjects from a comma delimited text - string, - using the first row as a source of names. -
      -
      static JSONArraytoJSONArray(java.lang.String string) - -
      Produce a JSONArray of JSONObjects from a comma delimited text - string, - using the first row as a source of names. -
      -
      static java.lang.StringtoString(JSONArray ja) - -
      Produce a comma delimited text from a JSONArray of JSONObjects.
      -
      static java.lang.StringtoString(JSONArray names, - JSONArray ja) - -
      Produce a comma delimited text from a JSONArray of JSONObjects using - a provided list of names. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        CDL

        -
        public CDL()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        rowToJSONArray

        -
        public static JSONArray rowToJSONArray(JSONTokener x)
        -                                throws JSONException
        -
        Produce a JSONArray of strings from a row of comma delimited values. -
        -
        -
        Parameters:
        -
        x - A JSONTokener of the source text.
        -
        Returns:
        -
        A JSONArray of strings.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        rowToJSONObject

        -
        public static JSONObject rowToJSONObject(JSONArray names,
        -                         JSONTokener x)
        -                                  throws JSONException
        -
        Produce a JSONObject from a row of comma delimited text, using a - parallel JSONArray of strings to provides the names of the elements. -
        -
        -
        Parameters:
        -
        names - A JSONArray of names. This is commonly obtained from the - first row of a comma delimited text file using the - rowToJSONArray - method. -
        -
        x - A JSONTokener of the source text.
        -
        Returns:
        -
        A JSONObject combining the names and values.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        rowToString

        -
        public static java.lang.String rowToString(JSONArray ja)
        -
        Produce a comma delimited text row from a JSONArray. Values containing - the comma character will be quoted. Troublesome characters may be - removed. -
        -
        -
        Parameters:
        -
        ja - A JSONArray of strings.
        -
        Returns:
        -
        A string ending in NEWLINE.
        -
        -
      • -
      - - - -
        -
      • -

        toJSONArray

        -
        public static JSONArray toJSONArray(java.lang.String string)
        -                             throws JSONException
        -
        Produce a JSONArray of JSONObjects from a comma delimited text string, - using the first row as a source of names. -
        -
        -
        Parameters:
        -
        string - The comma delimited text.
        -
        Returns:
        -
        A JSONArray of JSONObjects.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toJSONArray

        -
        public static JSONArray toJSONArray(JSONTokener x)
        -                             throws JSONException
        -
        Produce a JSONArray of JSONObjects from a comma delimited text string, - using the first row as a source of names. -
        -
        -
        Parameters:
        -
        x - The JSONTokener containing the comma delimited text.
        -
        Returns:
        -
        A JSONArray of JSONObjects.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toJSONArray

        -
        public static JSONArray toJSONArray(JSONArray names,
        -                    java.lang.String string)
        -                             throws JSONException
        -
        Produce a JSONArray of JSONObjects from a comma delimited text string - using a supplied JSONArray as the source of element names. -
        -
        -
        Parameters:
        -
        names - A JSONArray of strings.
        -
        string - The comma delimited text.
        -
        Returns:
        -
        A JSONArray of JSONObjects.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toJSONArray

        -
        public static JSONArray toJSONArray(JSONArray names,
        -                    JSONTokener x)
        -                             throws JSONException
        -
        Produce a JSONArray of JSONObjects from a comma delimited text string - using a supplied JSONArray as the source of element names. -
        -
        -
        Parameters:
        -
        names - A JSONArray of strings.
        -
        x - A JSONTokener of the source text.
        -
        Returns:
        -
        A JSONArray of JSONObjects.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONArray ja)
        -                                 throws JSONException
        -
        Produce a comma delimited text from a JSONArray of JSONObjects. The - first row will be a list of names obtained by inspecting the first - JSONObject. -
        -
        -
        Parameters:
        -
        ja - A JSONArray of JSONObjects.
        -
        Returns:
        -
        A comma delimited text.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONArray names,
        -                        JSONArray ja)
        -                                 throws JSONException
        -
        Produce a comma delimited text from a JSONArray of JSONObjects using - a provided list of names. The list of names is not included in the - output. -
        -
        -
        Parameters:
        -
        names - A JSONArray of strings.
        -
        ja - A JSONArray of JSONObjects.
        -
        Returns:
        -
        A comma delimited text.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/Cookie.html b/PlotSquared/doc/com/intellectualcrafters/json/Cookie.html deleted file mode 100644 index 9548a2383..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/Cookie.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - Cookie - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class Cookie

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.Cookie
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Cookie
    -extends java.lang.Object
    -
    Convert a web browser cookie specification to a JSONObject and back. - JSON and Cookies are both notations for name/value pairs. -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Cookie()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringescape(java.lang.String string) - -
      Produce a copy of a string in which the characters '+', '%', '=', ';' - and control characters are replaced with "%hh". -
      -
      static JSONObjecttoJSONObject(java.lang.String string) - -
      Convert a cookie specification string into a JSONObject.
      -
      static java.lang.StringtoString(JSONObject jo) - -
      Convert a JSONObject into a cookie specification string.
      -
      static java.lang.Stringunescape(java.lang.String string) - -
      Convert %hh sequences to single characters, and - convert plus to space. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Cookie

        -
        public Cookie()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        escape

        -
        public static java.lang.String escape(java.lang.String string)
        -
        Produce a copy of a string in which the characters '+', '%', '=', ';' - and control characters are replaced with "%hh". This is a gentle form - of URL encoding, attempting to cause as little distortion to the - string as possible. The characters '=' and ';' are meta characters in - cookies. By convention, they are escaped using the URL-encoding. This is - only a convention, not a standard. Often, cookies are expected to have - encoded values. We encode '=' and ';' because we must. We encode '%' and - '+' because they are meta characters in URL encoding. -
        -
        -
        Parameters:
        -
        string - The source string.
        -
        Returns:
        -
        The escaped result.
        -
        -
      • -
      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(java.lang.String string)
        -                               throws JSONException
        -
        Convert a cookie specification string into a JSONObject. The string - will contain a name value pair separated by '='. The name and the value - will be unescaped, possibly converting '+' and '%' sequences. The - cookie properties may follow, separated by ';', also represented as - name=value (except the secure property, which does not have a value). - The name will be stored under the key "name", and the value will be - stored under the key "value". This method does not do checking or - validation of the parameters. It only converts the cookie string into - a JSONObject. -
        -
        -
        Parameters:
        -
        string - The cookie specification string.
        -
        Returns:
        -
        A JSONObject containing "name", "value", and possibly other - members. -
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONObject jo)
        -                                 throws JSONException
        -
        Convert a JSONObject into a cookie specification string. The JSONObject - must contain "name" and "value" members. - If the JSONObject contains "expires", "domain", "path", or "secure" - members, they will be appended to the cookie specification string. - All other members are ignored. -
        -
        -
        Parameters:
        -
        jo - A JSONObject
        -
        Returns:
        -
        A cookie specification string
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        unescape

        -
        public static java.lang.String unescape(java.lang.String string)
        -
        Convert %hh sequences to single characters, and - convert plus to space. -
        -
        -
        Parameters:
        -
        string - A string that may contain + -   - (plus) - and %hh - sequences. -
        -
        Returns:
        -
        The unescaped string.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/CookieList.html b/PlotSquared/doc/com/intellectualcrafters/json/CookieList.html deleted file mode 100644 index f86a86646..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/CookieList.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - CookieList - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class CookieList

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.CookieList
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class CookieList
    -extends java.lang.Object
    -
    Convert a web browser cookie list string to a JSONObject and back.
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      CookieList()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static JSONObjecttoJSONObject(java.lang.String string) - -
      Convert a cookie list into a JSONObject.
      -
      static java.lang.StringtoString(JSONObject jo) - -
      Convert a JSONObject into a cookie list.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        CookieList

        -
        public CookieList()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(java.lang.String string)
        -                               throws JSONException
        -
        Convert a cookie list into a JSONObject. A cookie list is a sequence - of name/value pairs. The names are separated from the values by '='. - The pairs are separated by ';'. The names and the values - will be unescaped, possibly converting '+' and '%' sequences. -

        - To add a cookie to a cooklist, - cookielistJSONObject.put(cookieJSONObject.getString("name"), - cookieJSONObject.getString("value")); -

        -
        -
        Parameters:
        -
        string - A cookie list string
        -
        Returns:
        -
        A JSONObject
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONObject jo)
        -                                 throws JSONException
        -
        Convert a JSONObject into a cookie list. A cookie list is a sequence - of name/value pairs. The names are separated from the values by '='. - The pairs are separated by ';'. The characters '%', '+', '=', and ';' - in the names and values are replaced by "%hh". -
        -
        -
        Parameters:
        -
        jo - A JSONObject
        -
        Returns:
        -
        A cookie list string
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/HTTP.html b/PlotSquared/doc/com/intellectualcrafters/json/HTTP.html deleted file mode 100644 index 086a595ce..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/HTTP.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - HTTP - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class HTTP

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.HTTP
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class HTTP
    -extends java.lang.Object
    -
    Convert an HTTP header to a JSONObject and back.
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringCRLF - -
      Carriage return/line feed.
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      HTTP()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static JSONObjecttoJSONObject(java.lang.String string) - -
      Convert an HTTP header string into a JSONObject.
      -
      static java.lang.StringtoString(JSONObject jo) - -
      Convert a JSONObject into an HTTP header.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        CRLF

        -
        public static final java.lang.String CRLF
        -
        Carriage return/line feed.
        -
        -
        See Also:
        -
        Constant - Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        HTTP

        -
        public HTTP()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(java.lang.String string)
        -                               throws JSONException
        -
        Convert an HTTP header string into a JSONObject. It can be a request - header or a response header. A request header will contain -

        -

        - {
        -    Method: "POST" (for example),
        -    "Request-URI": "/" (for example),
        -    "HTTP-Version": "HTTP/1.1" (for example)
        - }
        - 
        -

        - A response header will contain -

        -

        - {
        -    "HTTP-Version": "HTTP/1.1" (for example),
        -    "Status-Code": "200" (for example),
        -    "Reason-Phrase": "OK" (for example)
        - }
        - 
        -

        - In addition, the other parameters in the header will be captured, using - the HTTP field names as JSON names, so that -

        -

        -    Date: Sun, 26 May 2002 18:06:04 GMT
        -    Cookie: Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s
        -    Cache-Control: no-cache
        - 
        -

        - become -

        -

        - {...
        -    Date: "Sun, 26 May 2002 18:06:04 GMT",
        -    Cookie: "Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s",
        -    "Cache-Control": "no-cache",
        - ...}
        - 
        -

        - It does no further checking or conversion. It does not parse dates. - It does not do '%' transforms on URLs. -

        -
        -
        Parameters:
        -
        string - An HTTP header string.
        -
        Returns:
        -
        A JSONObject containing the elements and attributes - of the XML string. -
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONObject jo)
        -                                 throws JSONException
        -
        Convert a JSONObject into an HTTP header. A request header must contain -

        -

        - {
        -    Method: "POST" (for example),
        -    "Request-URI": "/" (for example),
        -    "HTTP-Version": "HTTP/1.1" (for example)
        - }
        - 
        -

        - A response header must contain -

        -

        - {
        -    "HTTP-Version": "HTTP/1.1" (for example),
        -    "Status-Code": "200" (for example),
        -    "Reason-Phrase": "OK" (for example)
        - }
        - 
        -

        - Any other members of the JSONObject will be output as HTTP fields. - The result will end with two CRLF pairs. -

        -
        -
        Parameters:
        -
        jo - A JSONObject
        -
        Returns:
        -
        An HTTP header string.
        -
        Throws:
        -
        JSONException - - if the object does not contain enough - information. -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html b/PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html deleted file mode 100644 index c962a10cc..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/HTTPTokener.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - HTTPTokener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class HTTPTokener

-
-
- -
-
    -
  • -
    -
    -
    public class HTTPTokener
    -extends JSONTokener
    -
    The HTTPTokener extends the JSONTokener to provide additional methods - for the parsing of HTTP headers. -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      HTTPTokener(java.lang.String string) - -
      Construct an HTTPTokener from a string.
      -
      -
    • -
    - - -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        HTTPTokener

        -
        public HTTPTokener(java.lang.String string)
        -
        Construct an HTTPTokener from a string.
        -
        -
        Parameters:
        -
        string - A source string.
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        nextToken

        -
        public java.lang.String nextToken()
        -                           throws JSONException
        -
        Get the next token or string. This is used in parsing HTTP headers. -
        -
        -
        Returns:
        -
        A String.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html deleted file mode 100644 index e79cc84d5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONArray.html +++ /dev/null @@ -1,1795 +0,0 @@ - - - - - - JSONArray - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONArray

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.JSONArray
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class JSONArray
    -extends java.lang.Object
    -
    A JSONArray is an ordered sequence of values. Its external text form is a - string wrapped in square brackets with commas separating the values. The - internal form is an object having get and opt - methods for accessing the values by index, and put methods for - adding or replacing values. The values can be any of these types: - Boolean, JSONArray, JSONObject, - Number, String, or the - JSONObject.NULL object. -

    - The constructor can convert a JSON text into a Java object. The - toString method converts to JSON text. -

    - A get method returns a value if one can be found, and throws an - exception if one cannot be found. An opt method returns a - default value instead of throwing an exception, and so is useful for - obtaining optional values. -

    - The generic get() and opt() methods return an - object which you can cast or query for type. There are also typed - get and opt methods that do type checking and type - coercion for you. -

    - The texts produced by the toString methods strictly conform to - JSON syntax rules. The constructors are more forgiving in the texts they will - accept: -

      -
    • An extra ,  - (comma) - may appear just - before the closing bracket. -
    • -
    • The null value will be inserted when there is , -   - (comma) - elision. -
    • -
    • Strings may be quoted with '  - (single - quote) - - . -
    • -
    • Strings do not need to be quoted at all if they do not begin with a quote - or single quote, and if they do not contain leading or trailing spaces, and - if they do not contain any of these characters: - { } [ ] / \ : , # and if they do not look like numbers and if - they are not the reserved words true, false, or - null. -
    • -
    -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONArray() - -
      Construct an empty JSONArray.
      -
      JSONArray(java.util.Collection<java.lang.Object> collection) - -
      Construct a JSONArray from a Collection.
      -
      JSONArray(JSONTokener x) - -
      Construct a JSONArray from a JSONTokener.
      -
      JSONArray(java.lang.Object array) - -
      Construct a JSONArray from an array
      -
      JSONArray(java.lang.String source) - -
      Construct a JSONArray from a source JSON text.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectget(int index) - -
      Get the object value associated with an index.
      -
      booleangetBoolean(int index) - -
      Get the boolean value associated with an index.
      -
      doublegetDouble(int index) - -
      Get the double value associated with an index.
      -
      intgetInt(int index) - -
      Get the int value associated with an index.
      -
      JSONArraygetJSONArray(int index) - -
      Get the JSONArray associated with an index.
      -
      JSONObjectgetJSONObject(int index) - -
      Get the JSONObject associated with an index.
      -
      longgetLong(int index) - -
      Get the long value associated with an index.
      -
      java.lang.StringgetString(int index) - -
      Get the string associated with an index.
      -
      booleanisNull(int index) - -
      Determine if the value is null.
      -
      java.lang.Stringjoin(java.lang.String separator) - -
      Make a string from the contents of this JSONArray.
      -
      intlength() - -
      Get the number of elements in the JSONArray, included nulls.
      -
      java.lang.Objectopt(int index) - -
      Get the optional object value associated with an index.
      -
      booleanoptBoolean(int index) - -
      Get the optional boolean value associated with an index.
      -
      booleanoptBoolean(int index, - boolean defaultValue) - -
      Get the optional boolean value associated with an index.
      -
      doubleoptDouble(int index) - -
      Get the optional double value associated with an index.
      -
      doubleoptDouble(int index, - double defaultValue) - -
      Get the optional double value associated with an index.
      -
      intoptInt(int index) - -
      Get the optional int value associated with an index.
      -
      intoptInt(int index, - int defaultValue) - -
      Get the optional int value associated with an index.
      -
      JSONArrayoptJSONArray(int index) - -
      Get the optional JSONArray associated with an index.
      -
      JSONObjectoptJSONObject(int index) - -
      Get the optional JSONObject associated with an index.
      -
      longoptLong(int index) - -
      Get the optional long value associated with an index.
      -
      longoptLong(int index, - long defaultValue) - -
      Get the optional long value associated with an index.
      -
      java.lang.StringoptString(int index) - -
      Get the optional string value associated with an index.
      -
      java.lang.StringoptString(int index, - java.lang.String defaultValue) - -
      Get the optional string associated with an index.
      -
      JSONArrayput(boolean value) - -
      Append a boolean value.
      -
      JSONArrayput(java.util.Collection<java.lang.Object> value) - -
      Put a value in the JSONArray, where the value will be a JSONArray which - is produced from a Collection. -
      -
      JSONArrayput(double value) - -
      Append a double value.
      -
      JSONArrayput(int value) - -
      Append an int value.
      -
      JSONArrayput(int index, - boolean value) - -
      Put or replace a boolean value in the JSONArray.
      -
      JSONArrayput(int index, - java.util.Collection<java.lang.Object> value) - -
      Put a value in the JSONArray, where the value will be a JSONArray which - is produced from a Collection. -
      -
      JSONArrayput(int index, - double value) - -
      Put or replace a double value.
      -
      JSONArrayput(int index, - int value) - -
      Put or replace an int value.
      -
      JSONArrayput(int index, - long value) - -
      Put or replace a long value.
      -
      JSONArrayput(int index, - java.util.Map<java.lang.String,java.lang.Object> value) - -
      Put a value in the JSONArray, where the value will be a JSONObject that - is produced from a Map. -
      -
      JSONArrayput(int index, - java.lang.Object value) - -
      Put or replace an object value in the JSONArray.
      -
      JSONArrayput(long value) - -
      Append an long value.
      -
      JSONArrayput(java.util.Map<java.lang.String,java.lang.Object> value) - -
      Put a value in the JSONArray, where the value will be a JSONObject which - is produced from a Map. -
      -
      JSONArrayput(java.lang.Object value) - -
      Append an object value.
      -
      java.lang.Objectremove(int index) - -
      Remove an index and close the hole.
      -
      booleansimilar(java.lang.Object other) - -
      Determine if two JSONArrays are similar.
      -
      JSONObjecttoJSONObject(JSONArray names) - -
      Produce a JSONObject by combining a JSONArray of names with the values of - this JSONArray. -
      -
      java.lang.StringtoString() - -
      Make a JSON text of this JSONArray.
      -
      java.lang.StringtoString(int indentFactor) - -
      Make a prettyprinted JSON text of this JSONArray.
      -
      java.io.Writerwrite(java.io.Writer writer) - -
      Write the contents of the JSONArray as JSON text to a writer.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONArray

        -
        public JSONArray()
        -
        Construct an empty JSONArray.
        -
      • -
      - - - -
        -
      • -

        JSONArray

        -
        public JSONArray(JSONTokener x)
        -          throws JSONException
        -
        Construct a JSONArray from a JSONTokener.
        -
        -
        Parameters:
        -
        x - A JSONTokener
        -
        Throws:
        -
        JSONException - If there is a - syntax error. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONArray

        -
        public JSONArray(java.lang.String source)
        -          throws JSONException
        -
        Construct a JSONArray from a source JSON text.
        -
        -
        Parameters:
        -
        source - A string that begins with [  - (left - bracket) - - and ends with ] -   - (right bracket) - . -
        -
        Throws:
        -
        JSONException - If there is a - syntax error. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONArray

        -
        public JSONArray(java.util.Collection<java.lang.Object> collection)
        -
        Construct a JSONArray from a Collection.
        -
        -
        Parameters:
        -
        collection - A Collection.
        -
        -
      • -
      - - - -
        -
      • -

        JSONArray

        -
        public JSONArray(java.lang.Object array)
        -          throws JSONException
        -
        Construct a JSONArray from an array
        -
        -
        Throws:
        -
        JSONException - If not an - array. -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        get

        -
        public java.lang.Object get(int index)
        -                     throws JSONException
        -
        Get the object value associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        An object value.
        -
        Throws:
        -
        JSONException - If there is no value - for the index. -
        -
        -
      • -
      - - - -
        -
      • -

        getBoolean

        -
        public boolean getBoolean(int index)
        -                   throws JSONException
        -
        Get the boolean value associated with an index. The string values "true" - and "false" are converted to boolean. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The truth.
        -
        Throws:
        -
        JSONException - If there is no value - for the index or if the value is not - convertible to boolean. -
        -
        -
      • -
      - - - -
        -
      • -

        getDouble

        -
        public double getDouble(int index)
        -                 throws JSONException
        -
        Get the double value associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The value.
        -
        Throws:
        -
        JSONException - If the key is not - found or if the value cannot be converted - to a number. -
        -
        -
      • -
      - - - -
        -
      • -

        getInt

        -
        public int getInt(int index)
        -           throws JSONException
        -
        Get the int value associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The value.
        -
        Throws:
        -
        JSONException - If the key is not - found or if the value is not a number. -
        -
        -
      • -
      - - - -
        -
      • -

        getJSONArray

        -
        public JSONArray getJSONArray(int index)
        -                       throws JSONException
        -
        Get the JSONArray associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        A JSONArray value.
        -
        Throws:
        -
        JSONException - If there is no value - for the index. or if the value is not a - JSONArray -
        -
        -
      • -
      - - - -
        -
      • -

        getJSONObject

        -
        public JSONObject getJSONObject(int index)
        -                         throws JSONException
        -
        Get the JSONObject associated with an index.
        -
        -
        Parameters:
        -
        index - subscript
        -
        Returns:
        -
        A JSONObject value.
        -
        Throws:
        -
        JSONException - If there is no value - for the index or if the value is not a - JSONObject -
        -
        -
      • -
      - - - -
        -
      • -

        getLong

        -
        public long getLong(int index)
        -             throws JSONException
        -
        Get the long value associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The value.
        -
        Throws:
        -
        JSONException - If the key is not - found or if the value cannot be converted - to a number. -
        -
        -
      • -
      - - - -
        -
      • -

        getString

        -
        public java.lang.String getString(int index)
        -                           throws JSONException
        -
        Get the string associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        A string value.
        -
        Throws:
        -
        JSONException - If there is no string - value for the index. -
        -
        -
      • -
      - - - -
        -
      • -

        isNull

        -
        public boolean isNull(int index)
        -
        Determine if the value is null.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        true if the value at the index is null, or if there is no value.
        -
        -
      • -
      - - - -
        -
      • -

        join

        -
        public java.lang.String join(java.lang.String separator)
        -                      throws JSONException
        -
        Make a string from the contents of this JSONArray. The - separator string is inserted between each element. Warning: - This method assumes that the data structure is acyclical. -
        -
        -
        Parameters:
        -
        separator - A string that will be inserted between the elements.
        -
        Returns:
        -
        a string.
        -
        Throws:
        -
        JSONException - If the array contains - an invalid number. -
        -
        -
      • -
      - - - -
        -
      • -

        length

        -
        public int length()
        -
        Get the number of elements in the JSONArray, included nulls.
        -
        -
        Returns:
        -
        The length (or size).
        -
        -
      • -
      - - - -
        -
      • -

        opt

        -
        public java.lang.Object opt(int index)
        -
        Get the optional object value associated with an index.
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        An object value, or null if there is no object at that index.
        -
        -
      • -
      - - - -
        -
      • -

        optBoolean

        -
        public boolean optBoolean(int index)
        -
        Get the optional boolean value associated with an index. It returns false - if there is no value at that index, or if the value is not Boolean.TRUE - or the String "true". -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The truth.
        -
        -
      • -
      - - - -
        -
      • -

        optBoolean

        -
        public boolean optBoolean(int index,
        -                 boolean defaultValue)
        -
        Get the optional boolean value associated with an index. It returns the - defaultValue if there is no value at that index or if it is not a Boolean - or the String "true" or "false" (case insensitive). -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        defaultValue - A boolean default.
        -
        Returns:
        -
        The truth.
        -
        -
      • -
      - - - -
        -
      • -

        optDouble

        -
        public double optDouble(int index)
        -
        Get the optional double value associated with an index. NaN is returned - if there is no value for the index, or if the value is not a number and - cannot be converted to a number. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The value.
        -
        -
      • -
      - - - -
        -
      • -

        optDouble

        -
        public double optDouble(int index,
        -               double defaultValue)
        -
        Get the optional double value associated with an index. The defaultValue - is returned if there is no value for the index, or if the value is not a - number and cannot be converted to a number. -
        -
        -
        Parameters:
        -
        index - subscript
        -
        defaultValue - The default value.
        -
        Returns:
        -
        The value.
        -
        -
      • -
      - - - -
        -
      • -

        optInt

        -
        public int optInt(int index)
        -
        Get the optional int value associated with an index. Zero is returned if - there is no value for the index, or if the value is not a number and - cannot be converted to a number. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The value.
        -
        -
      • -
      - - - -
        -
      • -

        optInt

        -
        public int optInt(int index,
        -         int defaultValue)
        -
        Get the optional int value associated with an index. The defaultValue is - returned if there is no value for the index, or if the value is not a - number and cannot be converted to a number. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        defaultValue - The default value.
        -
        Returns:
        -
        The value.
        -
        -
      • -
      - - - -
        -
      • -

        optJSONArray

        -
        public JSONArray optJSONArray(int index)
        -
        Get the optional JSONArray associated with an index.
        -
        -
        Parameters:
        -
        index - subscript
        -
        Returns:
        -
        A JSONArray value, or null if the index has no value, or if the - value is not a JSONArray. -
        -
        -
      • -
      - - - -
        -
      • -

        optJSONObject

        -
        public JSONObject optJSONObject(int index)
        -
        Get the optional JSONObject associated with an index. Null is returned if - the key is not found, or null if the index has no value, or if the value - is not a JSONObject. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        A JSONObject value.
        -
        -
      • -
      - - - -
        -
      • -

        optLong

        -
        public long optLong(int index)
        -
        Get the optional long value associated with an index. Zero is returned if - there is no value for the index, or if the value is not a number and - cannot be converted to a number. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        The value.
        -
        -
      • -
      - - - -
        -
      • -

        optLong

        -
        public long optLong(int index,
        -           long defaultValue)
        -
        Get the optional long value associated with an index. The defaultValue is - returned if there is no value for the index, or if the value is not a - number and cannot be converted to a number. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        defaultValue - The default value.
        -
        Returns:
        -
        The value.
        -
        -
      • -
      - - - -
        -
      • -

        optString

        -
        public java.lang.String optString(int index)
        -
        Get the optional string value associated with an index. It returns an - empty string if there is no value at that index. If the value is not a - string and is not null, then it is coverted to a string. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        Returns:
        -
        A String value.
        -
        -
      • -
      - - - -
        -
      • -

        optString

        -
        public java.lang.String optString(int index,
        -                         java.lang.String defaultValue)
        -
        Get the optional string associated with an index. The defaultValue is - returned if the key is not found. -
        -
        -
        Parameters:
        -
        index - The index must be between 0 and length() - 1.
        -
        defaultValue - The default value.
        -
        Returns:
        -
        A String value.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(boolean value)
        -
        Append a boolean value. This increases the array's length by one.
        -
        -
        Parameters:
        -
        value - A boolean value.
        -
        Returns:
        -
        this.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(java.util.Collection<java.lang.Object> value)
        -
        Put a value in the JSONArray, where the value will be a JSONArray which - is produced from a Collection. -
        -
        -
        Parameters:
        -
        value - A Collection value.
        -
        Returns:
        -
        this.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(double value)
        -              throws JSONException
        -
        Append a double value. This increases the array's length by one.
        -
        -
        Parameters:
        -
        value - A double value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - if the value is not - finite. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int value)
        -
        Append an int value. This increases the array's length by one.
        -
        -
        Parameters:
        -
        value - An int value.
        -
        Returns:
        -
        this.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(long value)
        -
        Append an long value. This increases the array's length by one.
        -
        -
        Parameters:
        -
        value - A long value.
        -
        Returns:
        -
        this.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(java.util.Map<java.lang.String,java.lang.Object> value)
        -
        Put a value in the JSONArray, where the value will be a JSONObject which - is produced from a Map. -
        -
        -
        Parameters:
        -
        value - A Map value.
        -
        Returns:
        -
        this.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(java.lang.Object value)
        -
        Append an object value. This increases the array's length by one.
        -
        -
        Parameters:
        -
        value - An object value. The value should be a Boolean, Double, - Integer, JSONArray, JSONObject, Long, or String, or the - JSONObject.NULL object. -
        -
        Returns:
        -
        this.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            boolean value)
        -              throws JSONException
        -
        Put or replace a boolean value in the JSONArray. If the index is greater - than the length of the JSONArray, then null elements will be added as - necessary to pad it out. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - A boolean value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            java.util.Collection<java.lang.Object> value)
        -              throws JSONException
        -
        Put a value in the JSONArray, where the value will be a JSONArray which - is produced from a Collection. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - A Collection value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative or if the value is not finite. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            double value)
        -              throws JSONException
        -
        Put or replace a double value. If the index is greater than the length of - the JSONArray, then null elements will be added as necessary to pad it - out. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - A double value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative or if the value is not finite. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            int value)
        -              throws JSONException
        -
        Put or replace an int value. If the index is greater than the length of - the JSONArray, then null elements will be added as necessary to pad it - out. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - An int value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            long value)
        -              throws JSONException
        -
        Put or replace a long value. If the index is greater than the length of - the JSONArray, then null elements will be added as necessary to pad it - out. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - A long value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            java.util.Map<java.lang.String,java.lang.Object> value)
        -              throws JSONException
        -
        Put a value in the JSONArray, where the value will be a JSONObject that - is produced from a Map. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - The Map value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative or if the the value is an invalid - number. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONArray put(int index,
        -            java.lang.Object value)
        -              throws JSONException
        -
        Put or replace an object value in the JSONArray. If the index is greater - than the length of the JSONArray, then null elements will be added as - necessary to pad it out. -
        -
        -
        Parameters:
        -
        index - The subscript.
        -
        value - The value to put into the array. The value should be a - Boolean, Double, Integer, JSONArray, JSONObject, Long, or - String, or the JSONObject.NULL object. -
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the index is - negative or if the the value is an invalid - number. -
        -
        -
      • -
      - - - -
        -
      • -

        remove

        -
        public java.lang.Object remove(int index)
        -
        Remove an index and close the hole.
        -
        -
        Parameters:
        -
        index - The index of the element to be removed.
        -
        Returns:
        -
        The value that was associated with the index, or null if there - was no value. -
        -
        -
      • -
      - - - -
        -
      • -

        similar

        -
        public boolean similar(java.lang.Object other)
        -
        Determine if two JSONArrays are similar. - They must contain similar sequences. -
        -
        -
        Parameters:
        -
        other - The other JSONArray
        -
        Returns:
        -
        true if they are equal
        -
        -
      • -
      - - - -
        -
      • -

        toJSONObject

        -
        public JSONObject toJSONObject(JSONArray names)
        -                        throws JSONException
        -
        Produce a JSONObject by combining a JSONArray of names with the values of - this JSONArray. -
        -
        -
        Parameters:
        -
        names - A JSONArray containing a list of key strings. These will be - paired with the values. -
        -
        Returns:
        -
        A JSONObject, or null if there are no names or if this JSONArray - has no values. -
        -
        Throws:
        -
        JSONException - If any of the names - are null. -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        Make a JSON text of this JSONArray. For compactness, no unnecessary - whitespace is added. If it is not possible to produce a syntactically - correct JSON text then null will be returned instead. This could occur if - the array contains an invalid number. -

        - Warning: This method assumes that the data structure is acyclical. -

        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        a printable, displayable, transmittable representation of the - array. -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString(int indentFactor)
        -                          throws JSONException
        -
        Make a prettyprinted JSON text of this JSONArray. Warning: This method - assumes that the data structure is acyclical. -
        -
        -
        Parameters:
        -
        indentFactor - The number of spaces to add to each level of indentation.
        -
        Returns:
        -
        a printable, displayable, transmittable representation of the - object, beginning with [  - (left - bracket) - - and ending with ] -   - (right bracket) - . -
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        write

        -
        public java.io.Writer write(java.io.Writer writer)
        -                     throws JSONException
        -
        Write the contents of the JSONArray as JSON text to a writer. For - compactness, no whitespace is added. -

        - Warning: This method assumes that the data structure is acyclical. -

        -
        -
        Returns:
        -
        The writer.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONException.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONException.html deleted file mode 100644 index 43ad71d21..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONException.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - JSONException - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONException

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Throwable
    • -
    • -
        -
      • java.lang.Exception
      • -
      • -
          -
        • java.lang.RuntimeException
        • -
        • -
            -
          • com.intellectualcrafters.json.JSONException
          • -
          -
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable
    -
    -
    -
    -
    public class JSONException
    -extends java.lang.RuntimeException
    -
    The JSONException is thrown by the JSON.org classes when things are amiss.
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    See Also:
    -
    Serialized - Form
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONException(java.lang.String message) - -
      Constructs a JSONException with an explanatory message.
      -
      JSONException(java.lang.Throwable cause) - -
      Constructs a new JSONException with the specified cause.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ThrowablegetCause() - -
      Returns the cause of this exception or null if the cause is - nonexistent - or unknown. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Throwable

        - addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, - getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, - setStackTrace, toString
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONException

        -
        public JSONException(java.lang.String message)
        -
        Constructs a JSONException with an explanatory message.
        -
        -
        Parameters:
        -
        message - Detail about the reason for the exception.
        -
        -
      • -
      - - - -
        -
      • -

        JSONException

        -
        public JSONException(java.lang.Throwable cause)
        -
        Constructs a new JSONException with the specified cause.
        -
        -
        Parameters:
        -
        cause - The cause.
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getCause

        -
        public java.lang.Throwable getCause()
        -
        Returns the cause of this exception or null if the cause is - nonexistent - or unknown. -
        -
        -
        Overrides:
        -
        getCause in class java.lang.Throwable
        -
        Returns:
        -
        the cause of this exception or null if the cause is nonexistent - or unknown. -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONML.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONML.html deleted file mode 100644 index 7ecefb4e7..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONML.html +++ /dev/null @@ -1,516 +0,0 @@ - - - - - - JSONML - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONML

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.JSONML
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class JSONML
    -extends java.lang.Object
    -
    This provides static methods to convert an XML text into a JSONArray or - JSONObject, and to covert a JSONArray or JSONObject into an XML text using - the JsonML transform. -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONML()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static JSONArraytoJSONArray(java.lang.String string) - -
      Convert a well-formed (but not necessarily valid) XML string into a - JSONArray using the JsonML transform. -
      -
      static JSONArraytoJSONArray(XMLTokener x) - -
      Convert a well-formed (but not necessarily valid) XML string into a - JSONArray using the JsonML transform. -
      -
      static JSONObjecttoJSONObject(java.lang.String string) - -
      Convert a well-formed (but not necessarily valid) XML string into a - JSONObject using the JsonML transform. -
      -
      static JSONObjecttoJSONObject(XMLTokener x) - -
      Convert a well-formed (but not necessarily valid) XML string into a - JSONObject using the JsonML transform. -
      -
      static java.lang.StringtoString(JSONArray ja) - -
      Reverse the JSONML transformation, making an XML text from a - JSONArray. -
      -
      static java.lang.StringtoString(JSONObject jo) - -
      Reverse the JSONML transformation, making an XML text from a - JSONObject. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONML

        -
        public JSONML()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toJSONArray

        -
        public static JSONArray toJSONArray(java.lang.String string)
        -                             throws JSONException
        -
        Convert a well-formed (but not necessarily valid) XML string into a - JSONArray using the JsonML transform. Each XML tag is represented as - a JSONArray in which the first element is the tag name. If the tag has - attributes, then the second element will be JSONObject containing the - name/value pairs. If the tag contains children, then strings and - JSONArrays will represent the child tags. - Comments, prologs, DTDs, and <[ [ ]]> are ignored. -
        -
        -
        Parameters:
        -
        string - The source string.
        -
        Returns:
        -
        A JSONArray containing the structured data from the XML string.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toJSONArray

        -
        public static JSONArray toJSONArray(XMLTokener x)
        -                             throws JSONException
        -
        Convert a well-formed (but not necessarily valid) XML string into a - JSONArray using the JsonML transform. Each XML tag is represented as - a JSONArray in which the first element is the tag name. If the tag has - attributes, then the second element will be JSONObject containing the - name/value pairs. If the tag contains children, then strings and - JSONArrays will represent the child content and tags. - Comments, prologs, DTDs, and <[ [ ]]> are ignored. -
        -
        -
        Parameters:
        -
        x - An XMLTokener.
        -
        Returns:
        -
        A JSONArray containing the structured data from the XML string.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(XMLTokener x)
        -                               throws JSONException
        -
        Convert a well-formed (but not necessarily valid) XML string into a - JSONObject using the JsonML transform. Each XML tag is represented as - a JSONObject with a "tagName" property. If the tag has attributes, then - the attributes will be in the JSONObject as properties. If the tag - contains children, the object will have a "childNodes" property which - will be an array of strings and JsonML JSONObjects. -

        - Comments, prologs, DTDs, and <[ [ ]]> are ignored. -

        -
        -
        Parameters:
        -
        x - An XMLTokener of the XML source text.
        -
        Returns:
        -
        A JSONObject containing the structured data from the XML string.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(java.lang.String string)
        -                               throws JSONException
        -
        Convert a well-formed (but not necessarily valid) XML string into a - JSONObject using the JsonML transform. Each XML tag is represented as - a JSONObject with a "tagName" property. If the tag has attributes, then - the attributes will be in the JSONObject as properties. If the tag - contains children, the object will have a "childNodes" property which - will be an array of strings and JsonML JSONObjects. -

        - Comments, prologs, DTDs, and <[ [ ]]> are ignored. -

        -
        -
        Parameters:
        -
        string - The XML source text.
        -
        Returns:
        -
        A JSONObject containing the structured data from the XML string.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONArray ja)
        -                                 throws JSONException
        -
        Reverse the JSONML transformation, making an XML text from a JSONArray. -
        -
        -
        Parameters:
        -
        ja - A JSONArray.
        -
        Returns:
        -
        An XML string.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(JSONObject jo)
        -                                 throws JSONException
        -
        Reverse the JSONML transformation, making an XML text from a JSONObject. - The JSONObject must contain a "tagName" property. If it has children, - then it must have a "childNodes" property containing an array of objects. - The other properties are attributes with string values. -
        -
        -
        Parameters:
        -
        jo - A JSONObject.
        -
        Returns:
        -
        An XML string.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html deleted file mode 100644 index d35abc6b8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONObject.html +++ /dev/null @@ -1,2356 +0,0 @@ - - - - - - JSONObject - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONObject

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.JSONObject
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class JSONObject
    -extends java.lang.Object
    -
    A JSONObject is an unordered collection of name/value pairs. Its external - form is a string wrapped in curly braces with colons between the names and - values, and commas between the values and names. The internal form is an - object having get and opt methods for accessing - the values by name, and put methods for adding or replacing - values by name. The values can be any of these types: Boolean, - JSONArray, JSONObject, Number, - String, or the JSONObject.NULL object. A - JSONObject constructor can be used to convert an external form JSON text - into an internal form whose values can be retrieved with the get - and opt methods, or to convert values into a - JSON text using the put and toString methods. A - get method returns a value if one can be found, and throws an - exception if one cannot be found. An opt method returns a - default value instead of throwing an exception, and so is useful for - obtaining optional values. -

    - The generic get() and opt() methods return an - object, which you can cast or query for type. There are also typed - get and opt methods that do type checking and type - coercion for you. The opt methods differ from the get methods in that they do - not throw. Instead, they return a specified value, such as null. -

    - The put methods add or replace values in an object. For example, -

    -

    - myString = new JSONObject().put("JSON", "Hello, World!").toString();
    - 
    -

    - produces the string {"JSON": "Hello, World"}. -

    - The texts produced by the toString methods strictly conform to - the JSON syntax rules. The constructors are more forgiving in the texts they - will accept: -

      -
    • An extra ,  - (comma) - may appear just - before the closing brace. -
    • -
    • Strings may be quoted with '  - (single - quote) - - . -
    • -
    • Strings do not need to be quoted at all if they do not begin with a quote - or single quote, and if they do not contain leading or trailing spaces, and - if they do not contain any of these characters: - { } [ ] / \ : , # and if they do not look like numbers and if - they are not the reserved words true, false, or - null. -
    • -
    -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.ObjectNULL - -
      It is sometimes more convenient and less ambiguous to have a - NULL object than to use Java's null value. -
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONObject() - -
      Construct an empty JSONObject.
      -
      JSONObject(JSONObject jo, - java.lang.String[] names) - -
      Construct a JSONObject from a subset of another JSONObject.
      -
      JSONObject(JSONTokener x) - -
      Construct a JSONObject from a JSONTokener.
      -
      JSONObject(java.util.Map<java.lang.String,java.lang.Object> map) - -
      Construct a JSONObject from a Map.
      -
      JSONObject(java.lang.Object bean) - -
      Construct a JSONObject from an Object using bean getters.
      -
      JSONObject(java.lang.Object object, - java.lang.String[] names) - -
      Construct a JSONObject from an Object, using reflection to find the - public members. -
      -
      JSONObject(java.lang.String source) - -
      Construct a JSONObject from a source JSON text string.
      -
      JSONObject(java.lang.String baseName, - java.util.Locale locale) - -
      Construct a JSONObject from a ResourceBundle.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      JSONObjectaccumulate(java.lang.String key, - java.lang.Object value) - -
      Accumulate values under a key.
      -
      JSONObjectappend(java.lang.String key, - java.lang.Object value) - -
      Append values to the array under a key.
      -
      static java.lang.StringdoubleToString(double d) - -
      Produce a string from a double.
      -
      java.lang.Objectget(java.lang.String key) - -
      Get the value object associated with a key.
      -
      booleangetBoolean(java.lang.String key) - -
      Get the boolean value associated with a key.
      -
      doublegetDouble(java.lang.String key) - -
      Get the double value associated with a key.
      -
      intgetInt(java.lang.String key) - -
      Get the int value associated with a key.
      -
      JSONArraygetJSONArray(java.lang.String key) - -
      Get the JSONArray value associated with a key.
      -
      JSONObjectgetJSONObject(java.lang.String key) - -
      Get the JSONObject value associated with a key.
      -
      longgetLong(java.lang.String key) - -
      Get the long value associated with a key.
      -
      static java.lang.String[]getNames(JSONObject jo) - -
      Get an array of field names from a JSONObject.
      -
      static java.lang.String[]getNames(java.lang.Object object) - -
      Get an array of field names from an Object.
      -
      java.lang.StringgetString(java.lang.String key) - -
      Get the string associated with a key.
      -
      booleanhas(java.lang.String key) - -
      Determine if the JSONObject contains a specific key.
      -
      JSONObjectincrement(java.lang.String key) - -
      Increment a property of a JSONObject.
      -
      booleanisNull(java.lang.String key) - -
      Determine if the value associated with the key is null or if there is no - value. -
      -
      java.util.Iterator<java.lang.String>keys() - -
      Get an enumeration of the keys of the JSONObject.
      -
      java.util.Set<java.lang.String>keySet() - -
      Get a set of keys of the JSONObject.
      -
      intlength() - -
      Get the number of keys stored in the JSONObject.
      -
      JSONArraynames() - -
      Produce a JSONArray containing the names of the elements of this - JSONObject. -
      -
      static java.lang.StringnumberToString(java.lang.Number number) - -
      Produce a string from a Number.
      -
      java.lang.Objectopt(java.lang.String key) - -
      Get an optional value associated with a key.
      -
      booleanoptBoolean(java.lang.String key) - -
      Get an optional boolean associated with a key.
      -
      booleanoptBoolean(java.lang.String key, - boolean defaultValue) - -
      Get an optional boolean associated with a key.
      -
      doubleoptDouble(java.lang.String key) - -
      Get an optional double associated with a key, or NaN if there is no such - key or if its value is not a number. -
      -
      doubleoptDouble(java.lang.String key, - double defaultValue) - -
      Get an optional double associated with a key, or the defaultValue if - there is no such key or if its value is not a number. -
      -
      intoptInt(java.lang.String key) - -
      Get an optional int value associated with a key, or zero if there is no - such key or if the value is not a number. -
      -
      intoptInt(java.lang.String key, - int defaultValue) - -
      Get an optional int value associated with a key, or the default if there - is no such key or if the value is not a number. -
      -
      JSONArrayoptJSONArray(java.lang.String key) - -
      Get an optional JSONArray associated with a key.
      -
      JSONObjectoptJSONObject(java.lang.String key) - -
      Get an optional JSONObject associated with a key.
      -
      longoptLong(java.lang.String key) - -
      Get an optional long value associated with a key, or zero if there is no - such key or if the value is not a number. -
      -
      longoptLong(java.lang.String key, - long defaultValue) - -
      Get an optional long value associated with a key, or the default if there - is no such key or if the value is not a number. -
      -
      java.lang.StringoptString(java.lang.String key) - -
      Get an optional string associated with a key.
      -
      java.lang.StringoptString(java.lang.String key, - java.lang.String defaultValue) - -
      Get an optional string associated with a key.
      -
      JSONObjectput(java.lang.String key, - boolean value) - -
      Put a key/boolean pair in the JSONObject.
      -
      JSONObjectput(java.lang.String key, - java.util.Collection<java.lang.Object> value) - -
      Put a key/value pair in the JSONObject, where the value will be a - JSONArray which is produced from a Collection. -
      -
      JSONObjectput(java.lang.String key, - double value) - -
      Put a key/double pair in the JSONObject.
      -
      JSONObjectput(java.lang.String key, - int value) - -
      Put a key/int pair in the JSONObject.
      -
      JSONObjectput(java.lang.String key, - long value) - -
      Put a key/long pair in the JSONObject.
      -
      JSONObjectput(java.lang.String key, - java.util.Map<java.lang.String,java.lang.Object> value) - -
      Put a key/value pair in the JSONObject, where the value will be a - JSONObject which is produced from a Map. -
      -
      JSONObjectput(java.lang.String key, - java.lang.Object value) - -
      Put a key/value pair in the JSONObject.
      -
      JSONObjectputOnce(java.lang.String key, - java.lang.Object value) - -
      Put a key/value pair in the JSONObject, but only if the key and the value - are both non-null, and only if there is not already a member with that - name. -
      -
      JSONObjectputOpt(java.lang.String key, - java.lang.Object value) - -
      Put a key/value pair in the JSONObject, but only if the key and the value - are both non-null. -
      -
      static java.lang.Stringquote(java.lang.String string) - -
      Produce a string in double quotes with backslash sequences in all the - right places. -
      -
      static java.io.Writerquote(java.lang.String string, - java.io.Writer w) 
      java.lang.Objectremove(java.lang.String key) - -
      Remove a name and its value, if present.
      -
      booleansimilar(java.lang.Object other) - -
      Determine if two JSONObjects are similar.
      -
      static java.lang.ObjectstringToValue(java.lang.String string) - -
      Try to convert a string into a number, boolean, or null.
      -
      static voidtestValidity(java.lang.Object o) - -
      Throw an exception if the object is a NaN or infinite number.
      -
      JSONArraytoJSONArray(JSONArray names) - -
      Produce a JSONArray containing the values of the members of this - JSONObject. -
      -
      java.lang.StringtoString() - -
      Make a JSON text of this JSONObject.
      -
      java.lang.StringtoString(int indentFactor) - -
      Make a prettyprinted JSON text of this JSONObject.
      -
      static java.lang.StringvalueToString(java.lang.Object value) - -
      Make a JSON text of an Object value.
      -
      static java.lang.Objectwrap(java.lang.Object object) - -
      Wrap an object, if necessary.
      -
      java.io.Writerwrite(java.io.Writer writer) - -
      Write the contents of the JSONObject as JSON text to a writer.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        NULL

        -
        public static final java.lang.Object NULL
        -
        It is sometimes more convenient and less ambiguous to have a - NULL object than to use Java's null value. - JSONObject.NULL.equals(null) returns true. - JSONObject.NULL.toString() returns "null". -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject()
        -
        Construct an empty JSONObject.
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(JSONObject jo,
        -          java.lang.String[] names)
        -
        Construct a JSONObject from a subset of another JSONObject. An array of - strings is used to identify the keys that should be copied. Missing keys - are ignored. -
        -
        -
        Parameters:
        -
        jo - A JSONObject.
        -
        names - An array of strings.
        -
        Throws:
        -
        JSONException
        -
        JSONException - If a value is - a non-finite number or if a name is - duplicated. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(JSONTokener x)
        -           throws JSONException
        -
        Construct a JSONObject from a JSONTokener.
        -
        -
        Parameters:
        -
        x - A JSONTokener object containing the source string.
        -
        Throws:
        -
        JSONException - If there is a - syntax error in the source string or a - duplicated key. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(java.util.Map<java.lang.String,java.lang.Object> map)
        -
        Construct a JSONObject from a Map.
        -
        -
        Parameters:
        -
        map - A map object that can be used to initialize the contents of - the JSONObject. -
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(java.lang.Object bean)
        -
        Construct a JSONObject from an Object using bean getters. It reflects on - all of the public methods of the object. For each of the methods with no - parameters and a name starting with "get" or - "is" followed by an uppercase letter, the method is invoked, - and a key and the value returned from the getter method are put into the - new JSONObject. -

        - The key is formed by removing the "get" or "is" - prefix. If the second remaining character is not upper case, then the - first character is converted to lower case. -

        - For example, if an object has a method named "getName", and - if the result of calling object.getName() is - "Larry Fine", then the JSONObject will contain - "name": "Larry Fine". -

        -
        -
        Parameters:
        -
        bean - An object that has getter methods that should be used to make - a JSONObject. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(java.lang.Object object,
        -          java.lang.String[] names)
        -
        Construct a JSONObject from an Object, using reflection to find the - public members. The resulting JSONObject's keys will be the strings from - the names array, and the values will be the field values associated with - those keys in the object. If a key is not found or not visible, then it - will not be copied into the new JSONObject. -
        -
        -
        Parameters:
        -
        object - An object that has fields that should be used to make a - JSONObject. -
        -
        names - An array of strings, the names of the fields to be obtained - from the object. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(java.lang.String source)
        -           throws JSONException
        -
        Construct a JSONObject from a source JSON text string. This is the most - commonly used JSONObject constructor. -
        -
        -
        Parameters:
        -
        source - A string beginning with {  - (left - brace) - - and ending with } -   - (right brace) - . -
        -
        Throws:
        -
        JSONException - If there is a - syntax error in the source string or a - duplicated key. -
        -
        -
      • -
      - - - -
        -
      • -

        JSONObject

        -
        public JSONObject(java.lang.String baseName,
        -          java.util.Locale locale)
        -           throws JSONException
        -
        Construct a JSONObject from a ResourceBundle.
        -
        -
        Parameters:
        -
        baseName - The ResourceBundle base name.
        -
        locale - The Locale to load the ResourceBundle for.
        -
        Throws:
        -
        JSONException - If any - JSONExceptions are detected. -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        doubleToString

        -
        public static java.lang.String doubleToString(double d)
        -
        Produce a string from a double. The string "null" will be returned if the - number is not finite. -
        -
        -
        Parameters:
        -
        d - A double.
        -
        Returns:
        -
        A String.
        -
        -
      • -
      - - - -
        -
      • -

        getNames

        -
        public static java.lang.String[] getNames(JSONObject jo)
        -
        Get an array of field names from a JSONObject.
        -
        -
        Returns:
        -
        An array of field names, or null if there are no names.
        -
        -
      • -
      - - - -
        -
      • -

        getNames

        -
        public static java.lang.String[] getNames(java.lang.Object object)
        -
        Get an array of field names from an Object.
        -
        -
        Returns:
        -
        An array of field names, or null if there are no names.
        -
        -
      • -
      - - - -
        -
      • -

        numberToString

        -
        public static java.lang.String numberToString(java.lang.Number number)
        -                                       throws JSONException
        -
        Produce a string from a Number.
        -
        -
        Parameters:
        -
        number - A Number
        -
        Returns:
        -
        A String.
        -
        Throws:
        -
        JSONException - If n is a - non-finite number. -
        -
        -
      • -
      - - - -
        -
      • -

        quote

        -
        public static java.lang.String quote(java.lang.String string)
        -
        Produce a string in double quotes with backslash sequences in all the - right places. A backslash will be inserted within - -
        -
        Parameters:
        -
        string - A String
        -
        Returns:
        -
        A String correctly formatted for insertion in a JSON text.
        -
        -
      • -
      - - - -
        -
      • -

        quote

        -
        public static java.io.Writer quote(java.lang.String string,
        -                   java.io.Writer w)
        -                            throws java.io.IOException
        -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      - - - -
        -
      • -

        stringToValue

        -
        public static java.lang.Object stringToValue(java.lang.String string)
        -
        Try to convert a string into a number, boolean, or null. If the string - can't be converted, return the string. -
        -
        -
        Parameters:
        -
        string - A String.
        -
        Returns:
        -
        A simple JSON value.
        -
        -
      • -
      - - - -
        -
      • -

        testValidity

        -
        public static void testValidity(java.lang.Object o)
        -                         throws JSONException
        -
        Throw an exception if the object is a NaN or infinite number.
        -
        -
        Parameters:
        -
        o - The object to test.
        -
        Throws:
        -
        JSONException - If o is a non-finite - number. -
        -
        -
      • -
      - - - -
        -
      • -

        valueToString

        -
        public static java.lang.String valueToString(java.lang.Object value)
        -                                      throws JSONException
        -
        Make a JSON text of an Object value. If the object has an - value.toJSONString() method, then that method will be used to produce the - JSON text. The method is required to produce a strictly conforming text. - If the object does not contain a toJSONString method (which is the most - common case), then a text will be produced by other means. If the value - is an array or Collection, then a JSONArray will be made from it and its - toJSONString method will be called. If the value is a MAP, then a - JSONObject will be made from it and its toJSONString method will be - called. Otherwise, the value's toString method will be called, and the - result will be quoted. -

        - -

        - Warning: This method assumes that the data structure is acyclical. -

        -
        -
        Parameters:
        -
        value - The value to be serialized.
        -
        Returns:
        -
        a printable, displayable, transmittable representation of the - object, beginning with {  - (left - brace) - - and ending with }  - (right - brace) - - . -
        -
        Throws:
        -
        JSONException - If the value is or - contains an invalid number. -
        -
        -
      • -
      - - - -
        -
      • -

        wrap

        -
        public static java.lang.Object wrap(java.lang.Object object)
        -
        Wrap an object, if necessary. If the object is null, return the NULL - object. If it is an array or collection, wrap it in a JSONArray. If it is - a map, wrap it in a JSONObject. If it is a standard property (Double, - String, et al) then it is already wrapped. Otherwise, if it comes from - one of the java packages, turn it into a string. And if it doesn't, try - to wrap it in a JSONObject. If the wrapping fails, then null is returned. -
        -
        -
        Parameters:
        -
        object - The object to wrap
        -
        Returns:
        -
        The wrapped value
        -
        -
      • -
      - - - -
        -
      • -

        accumulate

        -
        public JSONObject accumulate(java.lang.String key,
        -                    java.lang.Object value)
        -                      throws JSONException
        -
        Accumulate values under a key. It is similar to the put method except - that if there is already an object stored under the key then a JSONArray - is stored under the key to hold all of the accumulated values. If there - is already a JSONArray, then the new value is appended to it. In - contrast, the put method replaces the previous value. -

        - If only one value is accumulated that is not a JSONArray, then the result - will be the same as using put. But if multiple values are accumulated, - then the result will be like append. -

        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - An object to be accumulated under the key.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the value is an - invalid number or if the key is null. -
        -
        -
      • -
      - - - -
        -
      • -

        append

        -
        public JSONObject append(java.lang.String key,
        -                java.lang.Object value)
        -                  throws JSONException
        -
        Append values to the array under a key. If the key does not exist in the - JSONObject, then the key is put in the JSONObject with its value being a - JSONArray containing the value parameter. If the key was already - associated with a JSONArray, then the value parameter is appended to it. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - An object to be accumulated under the key.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the key is null or - if the current value associated with - the key is not a JSONArray. -
        -
        -
      • -
      - - - -
        -
      • -

        get

        -
        public java.lang.Object get(java.lang.String key)
        -                     throws JSONException
        -
        Get the value object associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        The object associated with the key.
        -
        Throws:
        -
        JSONException - if the key is not - found. -
        -
        -
      • -
      - - - -
        -
      • -

        getBoolean

        -
        public boolean getBoolean(java.lang.String key)
        -                   throws JSONException
        -
        Get the boolean value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        The truth.
        -
        Throws:
        -
        JSONException - if the value is not a - Boolean or the String "true" or - "false". -
        -
        -
      • -
      - - - -
        -
      • -

        getDouble

        -
        public double getDouble(java.lang.String key)
        -                 throws JSONException
        -
        Get the double value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        The numeric value.
        -
        Throws:
        -
        JSONException - if the key is not - found or if the value is not a Number - object and cannot be converted to a number. -
        -
        -
      • -
      - - - -
        -
      • -

        getInt

        -
        public int getInt(java.lang.String key)
        -           throws JSONException
        -
        Get the int value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        The integer value.
        -
        Throws:
        -
        JSONException - if the key is not - found or if the value cannot be converted - to an integer. -
        -
        -
      • -
      - - - -
        -
      • -

        getJSONArray

        -
        public JSONArray getJSONArray(java.lang.String key)
        -                       throws JSONException
        -
        Get the JSONArray value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        A JSONArray which is the value.
        -
        Throws:
        -
        JSONException - if the key is not - found or if the value is not a JSONArray. -
        -
        -
      • -
      - - - -
        -
      • -

        getJSONObject

        -
        public JSONObject getJSONObject(java.lang.String key)
        -                         throws JSONException
        -
        Get the JSONObject value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        A JSONObject which is the value.
        -
        Throws:
        -
        JSONException - if the key is not - found or if the value is not a JSONObject. -
        -
        -
      • -
      - - - -
        -
      • -

        getLong

        -
        public long getLong(java.lang.String key)
        -             throws JSONException
        -
        Get the long value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        The long value.
        -
        Throws:
        -
        JSONException - if the key is not - found or if the value cannot be converted - to a long. -
        -
        -
      • -
      - - - -
        -
      • -

        getString

        -
        public java.lang.String getString(java.lang.String key)
        -                           throws JSONException
        -
        Get the string associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        A string which is the value.
        -
        Throws:
        -
        JSONException - if there is no string - value for the key. -
        -
        -
      • -
      - - - -
        -
      • -

        has

        -
        public boolean has(java.lang.String key)
        -
        Determine if the JSONObject contains a specific key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        true if the key exists in the JSONObject.
        -
        -
      • -
      - - - -
        -
      • -

        increment

        -
        public JSONObject increment(java.lang.String key)
        -                     throws JSONException
        -
        Increment a property of a JSONObject. If there is no such property, - create one with a value of 1. If there is such a property, and if it is - an Integer, Long, Double, or Float, then add one to it. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If there is already a - property with this name that is not an - Integer, Long, Double, or Float. -
        -
        -
      • -
      - - - -
        -
      • -

        isNull

        -
        public boolean isNull(java.lang.String key)
        -
        Determine if the value associated with the key is null or if there is no - value. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        true if there is no value associated with the key or if the value - is the JSONObject.NULL object. -
        -
        -
      • -
      - - - -
        -
      • -

        keys

        -
        public java.util.Iterator<java.lang.String> keys()
        -
        Get an enumeration of the keys of the JSONObject.
        -
        -
        Returns:
        -
        An iterator of the keys.
        -
        -
      • -
      - - - -
        -
      • -

        keySet

        -
        public java.util.Set<java.lang.String> keySet()
        -
        Get a set of keys of the JSONObject.
        -
        -
        Returns:
        -
        A keySet.
        -
        -
      • -
      - - - -
        -
      • -

        length

        -
        public int length()
        -
        Get the number of keys stored in the JSONObject.
        -
        -
        Returns:
        -
        The number of keys in the JSONObject.
        -
        -
      • -
      - - - -
        -
      • -

        names

        -
        public JSONArray names()
        -
        Produce a JSONArray containing the names of the elements of this - JSONObject. -
        -
        -
        Returns:
        -
        A JSONArray containing the key strings, or null if the JSONObject - is empty. -
        -
        -
      • -
      - - - -
        -
      • -

        opt

        -
        public java.lang.Object opt(java.lang.String key)
        -
        Get an optional value associated with a key.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        An object which is the value, or null if there is no value.
        -
        -
      • -
      - - - -
        -
      • -

        optBoolean

        -
        public boolean optBoolean(java.lang.String key)
        -
        Get an optional boolean associated with a key. It returns false if there - is no such key, or if the value is not Boolean.TRUE or the String "true". -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        The truth.
        -
        -
      • -
      - - - -
        -
      • -

        optBoolean

        -
        public boolean optBoolean(java.lang.String key,
        -                 boolean defaultValue)
        -
        Get an optional boolean associated with a key. It returns the - defaultValue if there is no such key, or if it is not a Boolean or the - String "true" or "false" (case insensitive). -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        defaultValue - The default.
        -
        Returns:
        -
        The truth.
        -
        -
      • -
      - - - -
        -
      • -

        optDouble

        -
        public double optDouble(java.lang.String key)
        -
        Get an optional double associated with a key, or NaN if there is no such - key or if its value is not a number. If the value is a string, an attempt - will be made to evaluate it as a number. -
        -
        -
        Parameters:
        -
        key - A string which is the key.
        -
        Returns:
        -
        An object which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optDouble

        -
        public double optDouble(java.lang.String key,
        -               double defaultValue)
        -
        Get an optional double associated with a key, or the defaultValue if - there is no such key or if its value is not a number. If the value is a - string, an attempt will be made to evaluate it as a number. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        defaultValue - The default.
        -
        Returns:
        -
        An object which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optInt

        -
        public int optInt(java.lang.String key)
        -
        Get an optional int value associated with a key, or zero if there is no - such key or if the value is not a number. If the value is a string, an - attempt will be made to evaluate it as a number. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        An object which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optInt

        -
        public int optInt(java.lang.String key,
        -         int defaultValue)
        -
        Get an optional int value associated with a key, or the default if there - is no such key or if the value is not a number. If the value is a string, - an attempt will be made to evaluate it as a number. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        defaultValue - The default.
        -
        Returns:
        -
        An object which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optJSONArray

        -
        public JSONArray optJSONArray(java.lang.String key)
        -
        Get an optional JSONArray associated with a key. It returns null if there - is no such key, or if its value is not a JSONArray. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        A JSONArray which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optJSONObject

        -
        public JSONObject optJSONObject(java.lang.String key)
        -
        Get an optional JSONObject associated with a key. It returns null if - there is no such key, or if its value is not a JSONObject. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        A JSONObject which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optLong

        -
        public long optLong(java.lang.String key)
        -
        Get an optional long value associated with a key, or zero if there is no - such key or if the value is not a number. If the value is a string, an - attempt will be made to evaluate it as a number. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        An object which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optLong

        -
        public long optLong(java.lang.String key,
        -           long defaultValue)
        -
        Get an optional long value associated with a key, or the default if there - is no such key or if the value is not a number. If the value is a string, - an attempt will be made to evaluate it as a number. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        defaultValue - The default.
        -
        Returns:
        -
        An object which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optString

        -
        public java.lang.String optString(java.lang.String key)
        -
        Get an optional string associated with a key. It returns an empty string - if there is no such key. If the value is not a string and is not null, - then it is converted to a string. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        Returns:
        -
        A string which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        optString

        -
        public java.lang.String optString(java.lang.String key,
        -                         java.lang.String defaultValue)
        -
        Get an optional string associated with a key. It returns the defaultValue - if there is no such key. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        defaultValue - The default.
        -
        Returns:
        -
        A string which is the value.
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             boolean value)
        -               throws JSONException
        -
        Put a key/boolean pair in the JSONObject.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - A boolean which is the value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the key is null. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             java.util.Collection<java.lang.Object> value)
        -               throws JSONException
        -
        Put a key/value pair in the JSONObject, where the value will be a - JSONArray which is produced from a Collection. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - A Collection value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             double value)
        -               throws JSONException
        -
        Put a key/double pair in the JSONObject.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - A double which is the value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the key is null or - if the number is invalid. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             int value)
        -               throws JSONException
        -
        Put a key/int pair in the JSONObject.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - An int which is the value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the key is null. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             long value)
        -               throws JSONException
        -
        Put a key/long pair in the JSONObject.
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - A long which is the value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the key is null. -
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             java.util.Map<java.lang.String,java.lang.Object> value)
        -               throws JSONException
        -
        Put a key/value pair in the JSONObject, where the value will be a - JSONObject which is produced from a Map. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - A Map value.
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        put

        -
        public JSONObject put(java.lang.String key,
        -             java.lang.Object value)
        -               throws JSONException
        -
        Put a key/value pair in the JSONObject. If the value is null, then the - key will be removed from the JSONObject if it is present. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - An object which is the value. It should be of one of these - types: Boolean, Double, Integer, JSONArray, JSONObject, Long, - String, or the JSONObject.NULL object. -
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the value is - non-finite number or if the key is null. -
        -
        -
      • -
      - - - -
        -
      • -

        putOnce

        -
        public JSONObject putOnce(java.lang.String key,
        -                 java.lang.Object value)
        -                   throws JSONException
        -
        Put a key/value pair in the JSONObject, but only if the key and the value - are both non-null, and only if there is not already a member with that - name. -
        -
        -
        Parameters:
        -
        key - string
        -
        value - object
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - if the key is a - duplicate -
        -
        -
      • -
      - - - -
        -
      • -

        putOpt

        -
        public JSONObject putOpt(java.lang.String key,
        -                java.lang.Object value)
        -                  throws JSONException
        -
        Put a key/value pair in the JSONObject, but only if the key and the value - are both non-null. -
        -
        -
        Parameters:
        -
        key - A key string.
        -
        value - An object which is the value. It should be of one of these - types: Boolean, Double, Integer, JSONArray, JSONObject, Long, - String, or the JSONObject.NULL object. -
        -
        Returns:
        -
        this.
        -
        Throws:
        -
        JSONException - If the value is a - non-finite number. -
        -
        -
      • -
      - - - -
        -
      • -

        remove

        -
        public java.lang.Object remove(java.lang.String key)
        -
        Remove a name and its value, if present.
        -
        -
        Parameters:
        -
        key - The name to be removed.
        -
        Returns:
        -
        The value that was associated with the name, or null if there was - no value. -
        -
        -
      • -
      - - - -
        -
      • -

        similar

        -
        public boolean similar(java.lang.Object other)
        -
        Determine if two JSONObjects are similar. - They must contain the same set of names which must be associated with - similar values. -
        -
        -
        Parameters:
        -
        other - The other JSONObject
        -
        Returns:
        -
        true if they are equal
        -
        -
      • -
      - - - -
        -
      • -

        toJSONArray

        -
        public JSONArray toJSONArray(JSONArray names)
        -                      throws JSONException
        -
        Produce a JSONArray containing the values of the members of this - JSONObject. -
        -
        -
        Parameters:
        -
        names - A JSONArray containing a list of key strings. This determines - the sequence of the values in the result. -
        -
        Returns:
        -
        A JSONArray of values.
        -
        Throws:
        -
        JSONException - If any of the values - are non-finite numbers. -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        Make a JSON text of this JSONObject. For compactness, no whitespace is - added. If this would not result in a syntactically correct JSON text, - then null will be returned instead. -

        - Warning: This method assumes that the data structure is acyclical. -

        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        a printable, displayable, portable, transmittable representation - of the object, beginning with {  - (left - brace) - - and ending with }  - (right - brace) - - . -
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString(int indentFactor)
        -                          throws JSONException
        -
        Make a prettyprinted JSON text of this JSONObject. -

        - Warning: This method assumes that the data structure is acyclical. -

        -
        -
        Parameters:
        -
        indentFactor - The number of spaces to add to each level of indentation.
        -
        Returns:
        -
        a printable, displayable, portable, transmittable representation - of the object, beginning with {  - (left - brace) - - and ending with }  - (right - brace) - - . -
        -
        Throws:
        -
        JSONException - If the object - contains an invalid number. -
        -
        -
      • -
      - - - -
        -
      • -

        write

        -
        public java.io.Writer write(java.io.Writer writer)
        -                     throws JSONException
        -
        Write the contents of the JSONObject as JSON text to a writer. For - compactness, no whitespace is added. -

        - Warning: This method assumes that the data structure is acyclical. -

        -
        -
        Returns:
        -
        The writer.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONString.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONString.html deleted file mode 100644 index 5f3192776..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONString.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - JSONString - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Interface JSONString

-
-
-
-
    -
  • -
    -
    -
    public interface JSONString
    -
    The JSONString interface allows a toJSONString() - method so that a class can change the behavior of - JSONObject.toString(), JSONArray.toString(), - and JSONWriter.value(Object). The - toJSONString method will be used instead of the default behavior - of using the Object's toString() method and quoting the result. -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoJSONString() - -
      The toJSONString method allows a class to produce - its own - JSON - serialization. -
      -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toJSONString

        -
        java.lang.String toJSONString()
        -
        The toJSONString method allows a class to produce its - own - JSON - serialization. -
        -
        -
        Returns:
        -
        A strictly syntactically correct JSON text.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html deleted file mode 100644 index 2d5b4d08f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONStringer.html +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - JSONStringer - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONStringer

-
-
- -
-
    -
  • -
    -
    -
    public class JSONStringer
    -extends JSONWriter
    -
    JSONStringer provides a quick and convenient way of producing JSON text. - The texts produced strictly conform to JSON syntax rules. No whitespace is - added, so the results are ready for transmission or storage. Each instance of - JSONStringer can produce one JSON text. -

    - A JSONStringer instance provides a value method for appending - values to the text, and a key method for adding keys before - values in objects. There are array and endArray - methods that make and bound array values, and object and - endObject methods which make and bound object values. All of - these methods return the JSONWriter instance, permitting cascade style. For - example, -

    -

    - myString = new JSONStringer().object().key("JSON").value("Hello, World!").endObject().toString();
    - 
    -

    - which produces the string -

    -

    - {"JSON":"Hello, World!"}
    - 
    -

    - The first method called must be array or object. - There are no methods for adding commas or colons. JSONStringer adds them for - you. Objects and arrays can be nested up to 20 levels deep. -

    - This can sometimes be easier than using a JSONObject to build a string. -

    -
    -
    Version:
    -
    2008-09-18
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONStringer() - -
      Make a fresh JSONStringer.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString() - -
      Return the JSON text.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONStringer

        -
        public JSONStringer()
        -
        Make a fresh JSONStringer. It can be used to build one JSON text. -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        Return the JSON text. This method is used to obtain the product of - the - JSONStringer instance. It will return null if there was a - problem in the construction of the JSON text (such as the calls to - array were not properly balanced with calls to - endArray). -
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        The JSON text.
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html deleted file mode 100644 index a7ec71e1a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONTokener.html +++ /dev/null @@ -1,770 +0,0 @@ - - - - - - JSONTokener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONTokener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.JSONTokener
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    HTTPTokener, XMLTokener
    -
    -
    -
    -
    public class JSONTokener
    -extends java.lang.Object
    -
    A JSONTokener takes a source string and extracts characters and tokens from - it. It is used by the JSONObject and JSONArray constructors to parse - JSON source strings. -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONTokener(java.io.InputStream inputStream) - -
      Construct a JSONTokener from an InputStream.
      -
      JSONTokener(java.io.Reader reader) - -
      Construct a JSONTokener from a Reader.
      -
      JSONTokener(java.lang.String s) - -
      Construct a JSONTokener from a string.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidback() - -
      Back up one character.
      -
      static intdehexchar(char c) - -
      Get the hex value of a character (base16).
      -
      booleanend()  -
      booleanmore() - -
      Determine if the source string still contains characters that next() - can consume. -
      -
      charnext() - -
      Get the next character in the source string.
      -
      charnext(char c) - -
      Consume the next character, and check that it matches a specified - character. -
      -
      java.lang.Stringnext(int n) - -
      Get the next n characters.
      -
      charnextClean() - -
      Get the next char in the string, skipping whitespace.
      -
      java.lang.StringnextString(char quote) - -
      Return the characters up to the next close quote character.
      -
      java.lang.StringnextTo(char delimiter) - -
      Get the text up but not including the specified character or the - end of line, whichever comes first. -
      -
      java.lang.StringnextTo(java.lang.String delimiters) - -
      Get the text up but not including one of the specified delimiter - characters or the end of line, whichever comes first. -
      -
      java.lang.ObjectnextValue() - -
      Get the next value.
      -
      charskipTo(char to) - -
      Skip characters until the next character is the requested - character. -
      -
      JSONExceptionsyntaxError(java.lang.String message) - -
      Make a JSONException to signal a syntax error.
      -
      java.lang.StringtoString() - -
      Make a printable string of this JSONTokener.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONTokener

        -
        public JSONTokener(java.io.Reader reader)
        -
        Construct a JSONTokener from a Reader.
        -
        -
        Parameters:
        -
        reader - A reader.
        -
        -
      • -
      - - - -
        -
      • -

        JSONTokener

        -
        public JSONTokener(java.io.InputStream inputStream)
        -            throws JSONException
        -
        Construct a JSONTokener from an InputStream.
        -
        -
        Parameters:
        -
        inputStream - The source.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        JSONTokener

        -
        public JSONTokener(java.lang.String s)
        -
        Construct a JSONTokener from a string.
        -
        -
        Parameters:
        -
        s - A source string.
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        dehexchar

        -
        public static int dehexchar(char c)
        -
        Get the hex value of a character (base16).
        -
        -
        Parameters:
        -
        c - A character between '0' and '9' or between 'A' and 'F' or - between 'a' and 'f'. -
        -
        Returns:
        -
        An int between 0 and 15, or -1 if c was not a hex digit.
        -
        -
      • -
      - - - -
        -
      • -

        back

        -
        public void back()
        -          throws JSONException
        -
        Back up one character. This provides a sort of lookahead capability, - so that you can test for a digit or letter before attempting to parse - the next number or identifier. -
        -
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        end

        -
        public boolean end()
        -
      • -
      - - - -
        -
      • -

        more

        -
        public boolean more()
        -             throws JSONException
        -
        Determine if the source string still contains characters that next() - can consume. -
        -
        -
        Returns:
        -
        true if not yet at the end of the source.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        next

        -
        public char next()
        -          throws JSONException
        -
        Get the next character in the source string.
        -
        -
        Returns:
        -
        The next character, or 0 if past the end of the source string.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        next

        -
        public char next(char c)
        -          throws JSONException
        -
        Consume the next character, and check that it matches a specified - character. -
        -
        -
        Parameters:
        -
        c - The character to match.
        -
        Returns:
        -
        The character.
        -
        Throws:
        -
        JSONException - if the character does - not match. -
        -
        -
      • -
      - - - -
        -
      • -

        next

        -
        public java.lang.String next(int n)
        -                      throws JSONException
        -
        Get the next n characters.
        -
        -
        Parameters:
        -
        n - The number of characters to take.
        -
        Returns:
        -
        A string of n characters.
        -
        Throws:
        -
        JSONException - Substring bounds - error if there are not - n characters remaining in the source string. -
        -
        -
      • -
      - - - -
        -
      • -

        nextClean

        -
        public char nextClean()
        -               throws JSONException
        -
        Get the next char in the string, skipping whitespace.
        -
        -
        Returns:
        -
        A character, or 0 if there are no more characters.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        nextString

        -
        public java.lang.String nextString(char quote)
        -                            throws JSONException
        -
        Return the characters up to the next close quote character. - Backslash processing is done. The formal JSON format does not - allow strings in single quotes, but an implementation is allowed to - accept them. -
        -
        -
        Parameters:
        -
        quote - The quoting character, either " -   - (double quote) - or ' -   - (single quote) - . -
        -
        Returns:
        -
        A String.
        -
        Throws:
        -
        JSONException - Unterminated string. -
        -
        -
      • -
      - - - -
        -
      • -

        nextTo

        -
        public java.lang.String nextTo(char delimiter)
        -                        throws JSONException
        -
        Get the text up but not including the specified character or the - end of line, whichever comes first. -
        -
        -
        Parameters:
        -
        delimiter - A delimiter character.
        -
        Returns:
        -
        A string.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        nextTo

        -
        public java.lang.String nextTo(java.lang.String delimiters)
        -                        throws JSONException
        -
        Get the text up but not including one of the specified delimiter - characters or the end of line, whichever comes first. -
        -
        -
        Parameters:
        -
        delimiters - A set of delimiter characters.
        -
        Returns:
        -
        A string, trimmed.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        nextValue

        -
        public java.lang.Object nextValue()
        -                           throws JSONException
        -
        Get the next value. The value can be a Boolean, Double, Integer, - JSONArray, JSONObject, Long, or String, or the JSONObject.NULL object. -
        -
        -
        Returns:
        -
        An object.
        -
        Throws:
        -
        JSONException - If syntax error. -
        -
        -
      • -
      - - - -
        -
      • -

        skipTo

        -
        public char skipTo(char to)
        -            throws JSONException
        -
        Skip characters until the next character is the requested character. - If the requested character is not found, no characters are skipped. -
        -
        -
        Parameters:
        -
        to - A character to skip to.
        -
        Returns:
        -
        The requested character, or zero if the requested character - is not found. -
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        syntaxError

        -
        public JSONException syntaxError(java.lang.String message)
        -
        Make a JSONException to signal a syntax error.
        -
        -
        Parameters:
        -
        message - The error message.
        -
        Returns:
        -
        A JSONException object, suitable for throwing
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        Make a printable string of this JSONTokener.
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        " at {index} [character {character} line {line}]"
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html b/PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html deleted file mode 100644 index 0d117769e..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/JSONWriter.html +++ /dev/null @@ -1,687 +0,0 @@ - - - - - - JSONWriter - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class JSONWriter

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.JSONWriter
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    JSONStringer
    -
    -
    -
    -
    public class JSONWriter
    -extends java.lang.Object
    -
    JSONWriter provides a quick and convenient way of producing JSON text. - The texts produced strictly conform to JSON syntax rules. No whitespace is - added, so the results are ready for transmission or storage. Each instance of - JSONWriter can produce one JSON text. -

    - A JSONWriter instance provides a value method for appending - values to the text, and a key method for adding keys before - values in objects. There are array and endArray - methods that make and bound array values, and object and - endObject methods which make and bound object values. All of - these methods return the JSONWriter instance, permitting a cascade style. For - example, -

    -

    - new JSONWriter(myWriter).object().key("JSON").value("Hello, World!").endObject();
    - 
    -

    - which writes -

    -

    - {"JSON":"Hello, World!"}
    - 
    -

    - The first method called must be array or object. - There are no methods for adding commas or colons. JSONWriter adds them for - you. Objects and arrays can be nested up to 20 levels deep. -

    - This can sometimes be easier than using a JSONObject to build a string. -

    -
    -
    Version:
    -
    2011-11-24
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      protected charmode - -
      The current mode.
      -
      protected java.io.Writerwriter - -
      The writer that will receive the output.
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      JSONWriter(java.io.Writer w) - -
      Make a fresh JSONWriter.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      JSONWriter - array() - -
      Begin appending a new array.
      -
      JSONWriter - endArray() - -
      End an array.
      -
      JSONWriter - endObject() - -
      End an object.
      -
      JSONWriter - key(java.lang.String string) - -
      Append a key.
      -
      JSONWriter - object() - -
      Begin appending a new object.
      -
      JSONWriter - value(boolean b) - -
      Append either the value true or the value - false - . -
      -
      JSONWriter - value(double d) - -
      Append a double value.
      -
      JSONWriter - value(long l) - -
      Append a long value.
      -
      JSONWriter - value(java.lang.Object object) - -
      Append an object value.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        mode

        -
        protected char mode
        -
        The current mode. Values: - 'a' (array), - 'd' (done), - 'i' (initial), - 'k' (key), - 'o' (object). -
        -
      • -
      - - - -
        -
      • -

        writer

        -
        protected java.io.Writer writer
        -
        The writer that will receive the output.
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        JSONWriter

        -
        public JSONWriter(java.io.Writer w)
        -
        Make a fresh JSONWriter. It can be used to build one JSON text.
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        array

        -
        public JSONWriter array()
        -                 throws JSONException
        -
        Begin appending a new array. All values until the balancing - endArray will be appended to this array. The - endArray method must be called to mark the array's end. -
        -
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If the - nesting is too deep, or if the object is - started in the wrong place (for example as a key or after the - end of the - outermost array or object). -
        -
        -
      • -
      - - - -
        -
      • -

        endArray

        -
        public JSONWriter endArray()
        -                    throws JSONException
        -
        End an array. This method most be called to balance calls to - array. -
        -
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If - incorrectly nested. -
        -
        -
      • -
      - - - -
        -
      • -

        endObject

        -
        public JSONWriter endObject()
        -                     throws JSONException
        -
        End an object. This method most be called to balance calls to - object. -
        -
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If - incorrectly nested. -
        -
        -
      • -
      - - - -
        -
      • -

        key

        -
        public JSONWriter key(java.lang.String string)
        -               throws JSONException
        -
        Append a key. The key will be associated with the next value. In an - object, every value must be preceded by a key. -
        -
        -
        Parameters:
        -
        string - A key string.
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If the key is - out of place. For example, keys - do not belong in arrays or if the key is null. -
        -
        -
      • -
      - - - -
        -
      • -

        object

        -
        public JSONWriter object()
        -                  throws JSONException
        -
        Begin appending a new object. All keys and values until the balancing - endObject will be appended to this object. The - endObject method must be called to mark the object's end. -
        -
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If the - nesting is too deep, or if the object is - started in the wrong place (for example as a key or after the - end of the - outermost array or object). -
        -
        -
      • -
      - - - -
        -
      • -

        value

        -
        public JSONWriter value(boolean b)
        -                 throws JSONException
        -
        Append either the value true or the value false - . -
        -
        -
        Parameters:
        -
        b - A boolean.
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        value

        -
        public JSONWriter value(double d)
        -                 throws JSONException
        -
        Append a double value.
        -
        -
        Parameters:
        -
        d - A double.
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If the number - is not finite. -
        -
        -
      • -
      - - - - - - - -
        -
      • -

        value

        -
        public JSONWriter value(java.lang.Object object)
        -                 throws JSONException
        -
        Append an object value.
        -
        -
        Parameters:
        -
        object - The object to append. It can be null, or a Boolean, Number, - String, JSONObject, or JSONArray, or an object that implements - JSONString. -
        -
        Returns:
        -
        this
        -
        Throws:
        -
        JSONException - If the value - is out of sequence. -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/Kim.html b/PlotSquared/doc/com/intellectualcrafters/json/Kim.html deleted file mode 100644 index a33b194ad..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/Kim.html +++ /dev/null @@ -1,644 +0,0 @@ - - - - - - Kim - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class Kim

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.Kim
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Kim
    -extends java.lang.Object
    -
    Kim makes immutable eight bit Unicode strings. If the MSB of a byte is set, - then the next byte is a continuation byte. The last byte of a character - never has the MSB reset. Every byte that is not the last byte has the MSB - set. Kim stands for "Keep it minimal". A Unicode character is never longer - than 3 bytes. Every byte contributes 7 bits to the character. ASCII is - unmodified. -

    - Kim UTF-8 - one byte U+007F U+007F - two bytes U+3FFF U+07FF - three bytes U+10FFF U+FFFF - four bytes U+10FFFF -

    - Characters in the ranges U+0800..U+3FFF and U+10000..U+10FFFF will be one - byte smaller when encoded in Kim compared to UTF-8. -

    - Kim is beneficial when using scripts such as Old South Arabian, Aramaic, - Avestan, Balinese, Batak, Bopomofo, Buginese, Buhid, Carian, Cherokee, - Coptic, Cyrillic, Deseret, Egyptian Hieroglyphs, Ethiopic, Georgian, - Glagolitic, Gothic, Hangul Jamo, Hanunoo, Hiragana, Kanbun, Kaithi, - Kannada, Katakana, Kharoshthi, Khmer, Lao, Lepcha, Limbu, Lycian, Lydian, - Malayalam, Mandaic, Meroitic, Miao, Mongolian, Myanmar, New Tai Lue, - Ol Chiki, Old Turkic, Oriya, Osmanya, Pahlavi, Parthian, Phags-Pa, - Phoenician, Samaritan, Sharada, Sinhala, Sora Sompeng, Tagalog, Tagbanwa, - Takri, Tai Le, Tai Tham, Tamil, Telugu, Thai, Tibetan, Tifinagh, UCAS. -

    - A kim object can be constructed from an ordinary UTF-16 string, or from a - byte array. A kim object can produce a UTF-16 string. -

    - As with UTF-8, it is possible to detect character boundaries within a byte - sequence. UTF-8 is one of the world's great inventions. While Kim is more - efficient, it is not clear that it is worth the expense of transition. -

    -
    -
    Version:
    -
    2013-04-18
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      intlength - -
      The number of bytes in the kim.
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      Kim(byte[] bytes, - int length) - -
      Make a kim from a byte array.
      -
      Kim(byte[] bytes, - int from, - int thru) - -
      Make a kim from a portion of a byte array.
      -
      Kim(Kim kim, - int from, - int thru) - -
      Make a new kim from a substring of an existing kim.
      -
      Kim(java.lang.String string) - -
      Make a kim from a string.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      intcharacterAt(int at) - -
      Returns the character at the specified index.
      -
      static intcharacterSize(int character) - -
      Returns the number of bytes needed to contain the character in Kim - format. -
      -
      intcopy(byte[] bytes, - int at) - -
      Copy the contents of this kim to a byte array.
      -
      booleanequals(java.lang.Object obj) - -
      Two kim objects containing exactly the same bytes in the same order - are - equal to each other. -
      -
      intget(int at) - -
      Get a byte from a kim.
      -
      inthashCode() - -
      Returns a hash code value for the kim.
      -
      java.lang.StringtoString() - -
      Produce a UTF-16 String from this kim.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        length

        -
        public int length
        -
        The number of bytes in the kim. The number of bytes can be as much as - three times the number of characters. -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Kim

        -
        public Kim(byte[] bytes,
        -   int from,
        -   int thru)
        -
        Make a kim from a portion of a byte array.
        -
        -
        Parameters:
        -
        bytes - A byte array.
        -
        from - The index of the first byte.
        -
        thru - The index of the last byte plus one.
        -
        -
      • -
      - - - -
        -
      • -

        Kim

        -
        public Kim(byte[] bytes,
        -   int length)
        -
        Make a kim from a byte array.
        -
        -
        Parameters:
        -
        bytes - The byte array.
        -
        length - The number of bytes.
        -
        -
      • -
      - - - -
        -
      • -

        Kim

        -
        public Kim(Kim kim,
        -   int from,
        -   int thru)
        -
        Make a new kim from a substring of an existing kim. The coordinates are - in byte units, not character units. -
        -
        -
        Parameters:
        -
        kim - The source of bytes.
        -
        from - The point at which to take bytes.
        -
        thru - The point at which to stop taking bytes.
        -
        -
      • -
      - - - -
        -
      • -

        Kim

        -
        public Kim(java.lang.String string)
        -    throws JSONException
        -
        Make a kim from a string.
        -
        -
        Parameters:
        -
        string - The string.
        -
        Throws:
        -
        JSONException - if - surrogate pair mismatch. -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        characterSize

        -
        public static int characterSize(int character)
        -                         throws JSONException
        -
        Returns the number of bytes needed to contain the character in Kim - format. -
        -
        -
        Parameters:
        -
        character - a Unicode character between 0 and 0x10FFFF.
        -
        Returns:
        -
        1, 2, or 3
        -
        Throws:
        -
        JSONException - if - the character is not representable in a kim. -
        -
        -
      • -
      - - - -
        -
      • -

        characterAt

        -
        public int characterAt(int at)
        -                throws JSONException
        -
        Returns the character at the specified index. The index refers to byte - values and ranges from 0 to length - 1. The index of the next character - is at index + Kim.characterSize(kim.characterAt(index)). -
        -
        -
        Parameters:
        -
        at - the index of the char value. The first character is at 0.
        -
        Throws:
        -
        JSONException - if at - does not point to a valid character. -
        -
        -
      • -
      - - - -
        -
      • -

        copy

        -
        public int copy(byte[] bytes,
        -       int at)
        -
        Copy the contents of this kim to a byte array.
        -
        -
        Parameters:
        -
        bytes - A byte array of sufficient size.
        -
        at - The position within the byte array to take the byes.
        -
        Returns:
        -
        The position immediately after the copy.
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object obj)
        -
        Two kim objects containing exactly the same bytes in the same order are - equal to each other. -
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        Parameters:
        -
        obj - the other kim with which to compare.
        -
        -
      • -
      - - - -
        -
      • -

        get

        -
        public int get(int at)
        -        throws JSONException
        -
        Get a byte from a kim.
        -
        -
        Parameters:
        -
        at - The position of the byte. The first byte is at 0.
        -
        Returns:
        -
        The byte.
        -
        Throws:
        -
        JSONException - if - there is no byte at that position. -
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        Returns a hash code value for the kim.
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -                          throws JSONException
        -
        Produce a UTF-16 String from this kim. The number of codepoints in the - string will not be greater than the number of bytes in the kim, although - it could be less. -
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        The string. A kim memoizes its string representation.
        -
        Throws:
        -
        JSONException - if - the kim is not valid. -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/Property.html b/PlotSquared/doc/com/intellectualcrafters/json/Property.html deleted file mode 100644 index 0f7d122ba..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/Property.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - Property - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class Property

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.Property
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Property
    -extends java.lang.Object
    -
    Converts a Property file data into JSONObject and back.
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Property()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static JSONObjecttoJSONObject(java.util.Properties properties) - -
      Converts a property file object into a JSONObject.
      -
      static java.util.PropertiestoProperties(JSONObject jo) - -
      Converts the JSONObject into a property file object.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Property

        -
        public Property()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(java.util.Properties properties)
        -                               throws JSONException
        -
        Converts a property file object into a JSONObject. The property file - object is a table of name value pairs. -
        -
        -
        Parameters:
        -
        properties - java.util.Properties
        -
        Returns:
        -
        JSONObject
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        toProperties

        -
        public static java.util.Properties toProperties(JSONObject jo)
        -                                         throws JSONException
        -
        Converts the JSONObject into a property file object.
        -
        -
        Parameters:
        -
        jo - JSONObject
        -
        Returns:
        -
        java.util.Properties
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/XML.html b/PlotSquared/doc/com/intellectualcrafters/json/XML.html deleted file mode 100644 index 1765e2ff7..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/XML.html +++ /dev/null @@ -1,663 +0,0 @@ - - - - - - XML - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class XML

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.json.XML
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class XML
    -extends java.lang.Object
    -
    This provides static methods to convert an XML text into a JSONObject, - and to covert a JSONObject into an XML text. -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.CharacterAMP - -
      The Character '&'.
      -
      static java.lang.CharacterAPOS - -
      The Character '''.
      -
      static java.lang.CharacterBANG - -
      The Character '!'.
      -
      static java.lang.CharacterEQ - -
      The Character '='.
      -
      static java.lang.CharacterGT - -
      The Character '>'.
      -
      static java.lang.CharacterLT - -
      The Character '<'.
      -
      static java.lang.CharacterQUEST - -
      The Character '?'.
      -
      static java.lang.CharacterQUOT - -
      The Character '"'.
      -
      static java.lang.CharacterSLASH - -
      The Character '/'.
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      XML()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringescape(java.lang.String string) - -
      Replace special characters with XML escapes: -

      - - & - (ampersand) - is replaced by &amp; - < - (less than) - is replaced by &lt; - > - (greater than) - is replaced by &gt; - " - (double quote) - is replaced by &quot; -

      -
      static voidnoSpace(java.lang.String string) - -
      Throw an exception if the string contains whitespace.
      -
      static java.lang.ObjectstringToValue(java.lang.String string) - -
      Try to convert a string into a number, boolean, or null.
      -
      static JSONObjecttoJSONObject(java.lang.String string) - -
      Convert a well-formed (but not necessarily valid) XML string into a - JSONObject. -
      -
      static java.lang.StringtoString(java.lang.Object object) - -
      Convert a JSONObject into a well-formed, element-normal XML string. -
      -
      static java.lang.StringtoString(java.lang.Object object, - java.lang.String tagName) - -
      Convert a JSONObject into a well-formed, element-normal XML string. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        AMP

        -
        public static final java.lang.Character AMP
        -
        The Character '&'.
        -
      • -
      - - - -
        -
      • -

        APOS

        -
        public static final java.lang.Character APOS
        -
        The Character '''.
        -
      • -
      - - - -
        -
      • -

        BANG

        -
        public static final java.lang.Character BANG
        -
        The Character '!'.
        -
      • -
      - - - -
        -
      • -

        EQ

        -
        public static final java.lang.Character EQ
        -
        The Character '='.
        -
      • -
      - - - -
        -
      • -

        GT

        -
        public static final java.lang.Character GT
        -
        The Character '>'.
        -
      • -
      - - - -
        -
      • -

        LT

        -
        public static final java.lang.Character LT
        -
        The Character '<'.
        -
      • -
      - - - -
        -
      • -

        QUEST

        -
        public static final java.lang.Character QUEST
        -
        The Character '?'.
        -
      • -
      - - - -
        -
      • -

        QUOT

        -
        public static final java.lang.Character QUOT
        -
        The Character '"'.
        -
      • -
      - - - -
        -
      • -

        SLASH

        -
        public static final java.lang.Character SLASH
        -
        The Character '/'.
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        XML

        -
        public XML()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        escape

        -
        public static java.lang.String escape(java.lang.String string)
        -
        Replace special characters with XML escapes: -

        -

        - & (ampersand) is replaced by &amp;
        - < (less than) is replaced by &lt;
        - > (greater than) is replaced by &gt;
        - " (double quote) is replaced by &quot;
        - 
        -
        -
        -
        Parameters:
        -
        string - The string to be escaped.
        -
        Returns:
        -
        The escaped string.
        -
        -
      • -
      - - - -
        -
      • -

        noSpace

        -
        public static void noSpace(java.lang.String string)
        -                    throws JSONException
        -
        Throw an exception if the string contains whitespace. - Whitespace is not allowed in tagNames and attributes. -
        -
        -
        Parameters:
        -
        string - A string.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        stringToValue

        -
        public static java.lang.Object stringToValue(java.lang.String string)
        -
        Try to convert a string into a number, boolean, or null. If the string - can't be converted, return the string. This is much less ambitious than - JSONObject.stringToValue, especially because it does not attempt to - convert plus forms, octal forms, hex forms, or E forms lacking decimal - points. -
        -
        -
        Parameters:
        -
        string - A String.
        -
        Returns:
        -
        A simple JSON value.
        -
        -
      • -
      - - - -
        -
      • -

        toJSONObject

        -
        public static JSONObject toJSONObject(java.lang.String string)
        -                               throws JSONException
        -
        Convert a well-formed (but not necessarily valid) XML string into a - JSONObject. Some information may be lost in this transformation - because JSON is a data format and XML is a document format. XML uses - elements, attributes, and content text, while JSON uses unordered - collections of name/value pairs and arrays of values. JSON does not - does not like to distinguish between elements and attributes. - Sequences of similar elements are represented as JSONArrays. Content - text may be placed in a "content" member. Comments, prologs, DTDs, and - <[ [ ]]> are ignored. -
        -
        -
        Parameters:
        -
        string - The source string.
        -
        Returns:
        -
        A JSONObject containing the structured data from the XML string.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(java.lang.Object object)
        -                                 throws JSONException
        -
        Convert a JSONObject into a well-formed, element-normal XML string.
        -
        -
        Parameters:
        -
        object - A JSONObject.
        -
        Returns:
        -
        A string.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public static java.lang.String toString(java.lang.Object object,
        -                        java.lang.String tagName)
        -                                 throws JSONException
        -
        Convert a JSONObject into a well-formed, element-normal XML string.
        -
        -
        Parameters:
        -
        object - A JSONObject.
        -
        tagName - The optional name of the enclosing tag.
        -
        Returns:
        -
        A string.
        -
        Throws:
        -
        JSONException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html b/PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html deleted file mode 100644 index 5683e1272..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/XMLTokener.html +++ /dev/null @@ -1,544 +0,0 @@ - - - - - - XMLTokener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.json
-

Class XMLTokener

-
-
- -
-
    -
  • -
    -
    -
    public class XMLTokener
    -extends JSONTokener
    -
    The XMLTokener extends the JSONTokener to provide additional methods - for the parsing of XML texts. -
    -
    -
    Version:
    -
    2014-05-03
    -
    Author:
    -
    JSON.org
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.util.HashMap<java.lang.String,java.lang.Character> - entity - -
      The table of entity values.
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      XMLTokener(java.lang.String s) - -
      Construct an XMLTokener from a string.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringnextCDATA() - -
      Get the text in the CDATA block.
      -
      java.lang.ObjectnextContent() - -
      Get the next XML outer token, trimming whitespace.
      -
      java.lang.ObjectnextEntity(char ampersand) - -
      Return the next entity.
      -
      java.lang.ObjectnextMeta() - -
      Returns the next XML meta token.
      -
      java.lang.ObjectnextToken() - -
      Get the next XML Token.
      -
      booleanskipPast(java.lang.String to) - -
      Skip characters until past the requested string.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        entity

        -
        public static final java.util.HashMap<java.lang.String,java.lang.Character> entity
        -
        The table of entity values. It initially contains Character values for - amp, apos, gt, lt, quot. -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        XMLTokener

        -
        public XMLTokener(java.lang.String s)
        -
        Construct an XMLTokener from a string.
        -
        -
        Parameters:
        -
        s - A source string.
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        nextCDATA

        -
        public java.lang.String nextCDATA()
        -                           throws JSONException
        -
        Get the text in the CDATA block.
        -
        -
        Returns:
        -
        The string up to the ]]>.
        -
        Throws:
        -
        JSONException - - If the ]]> is not found. -
        -
        -
      • -
      - - - -
        -
      • -

        nextContent

        -
        public java.lang.Object nextContent()
        -                             throws JSONException
        -
        Get the next XML outer token, trimming whitespace. There are two kinds - of tokens: the '<' character which begins a markup tag, and the content - text between markup tags. -
        -
        -
        Returns:
        -
        A string, or a '<' Character, or null if there is no more - source text. -
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      - - - -
        -
      • -

        nextEntity

        -
        public java.lang.Object nextEntity(char ampersand)
        -                            throws JSONException
        -
        Return the next entity. These entities are translated to Characters: - & ' > < ". -
        -
        -
        Parameters:
        -
        ampersand - An ampersand character.
        -
        Returns:
        -
        A Character or an entity String if the entity is not recognized.
        -
        Throws:
        -
        JSONException - - If missing ';' in XML entity. -
        -
        -
      • -
      - - - -
        -
      • -

        nextMeta

        -
        public java.lang.Object nextMeta()
        -                          throws JSONException
        -
        Returns the next XML meta token. This is used for skipping over - and structures. -
        -
        -
        Returns:
        -
        Syntax characters (< > / = ! ?) are returned as - Character, and strings and names are returned as Boolean. We - don't care - what the values actually are. -
        -
        Throws:
        -
        JSONException - - If a string is not properly closed or if the XML - is badly structured. -
        -
        -
      • -
      - - - -
        -
      • -

        nextToken

        -
        public java.lang.Object nextToken()
        -                           throws JSONException
        -
        Get the next XML Token. These tokens are found inside of angle - brackets. It may be one of these characters: / > = ! ? or it - may be a string wrapped in single quotes or double quotes, or it may be a - name. -
        -
        -
        Returns:
        -
        a String or a Character.
        -
        Throws:
        -
        JSONException - - If the XML is not well formed. -
        -
        -
      • -
      - - - -
        -
      • -

        skipPast

        -
        public boolean skipPast(java.lang.String to)
        -                 throws JSONException
        -
        Skip characters until past the requested string. - If it is not found, we are left at the end of the source with a result of - false. -
        -
        -
        Parameters:
        -
        to - A string to skip past.
        -
        Throws:
        -
        JSONException -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/json/package-frame.html deleted file mode 100644 index ec70d73b3..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/package-frame.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - com.intellectualcrafters.json - - - - -

com.intellectualcrafters.json -

- -
-

Interfaces

- -

Classes

- -

Exceptions

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/json/package-summary.html deleted file mode 100644 index f0b3232ff..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/package-summary.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - com.intellectualcrafters.json - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.json

-
-
-
    -
  • - - - - - - - - - - - - -
    Interface Summary 
    InterfaceDescription
    JSONString -
    The JSONString interface allows a toJSONString() - method so that a class can change the behavior of - JSONObject.toString(), JSONArray.toString(), - and JSONWriter.value(Object). -
    -
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    CDL -
    This provides static methods to convert comma delimited text into a - JSONArray, and to covert a JSONArray into comma delimited text. -
    -
    Cookie -
    Convert a web browser cookie specification to a JSONObject and back.
    -
    CookieList -
    Convert a web browser cookie list string to a JSONObject and back.
    -
    HTTP -
    Convert an HTTP header to a JSONObject and back.
    -
    HTTPTokener -
    The HTTPTokener extends the JSONTokener to provide additional methods - for the parsing of HTTP headers. -
    -
    JSONArray -
    A JSONArray is an ordered sequence of values.
    -
    JSONML -
    This provides static methods to convert an XML text into a JSONArray or - JSONObject, and to covert a JSONArray or JSONObject into an XML text using - the JsonML transform. -
    -
    JSONObject -
    A JSONObject is an unordered collection of name/value pairs.
    -
    JSONStringer -
    JSONStringer provides a quick and convenient way of producing JSON text. -
    -
    JSONTokener -
    A JSONTokener takes a source string and extracts characters and tokens from - it. -
    -
    JSONWriter -
    JSONWriter provides a quick and convenient way of producing JSON text.
    -
    Kim -
    Kim makes immutable eight bit Unicode strings.
    -
    Property -
    Converts a Property file data into JSONObject and back.
    -
    XML -
    This provides static methods to convert an XML text into a JSONObject, - and to covert a JSONObject into an XML text. -
    -
    XMLTokener -
    The XMLTokener extends the JSONTokener to provide additional methods - for the parsing of XML texts. -
    -
    -
  • -
  • - - - - - - - - - - - - -
    Exception Summary 
    ExceptionDescription
    JSONException -
    The JSONException is thrown by the JSON.org classes when things are amiss. -
    -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/json/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/json/package-tree.html deleted file mode 100644 index e10e86da6..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/json/package-tree.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - com.intellectualcrafters.json Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.json

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.json.CDL
    • -
    • com.intellectualcrafters.json.Cookie
    • -
    • com.intellectualcrafters.json.CookieList
    • -
    • com.intellectualcrafters.json.HTTP
    • -
    • com.intellectualcrafters.json.JSONArray
    • -
    • com.intellectualcrafters.json.JSONML
    • -
    • com.intellectualcrafters.json.JSONObject
    • -
    • com.intellectualcrafters.json.JSONTokener - -
    • -
    • com.intellectualcrafters.json.JSONWriter - -
    • -
    • com.intellectualcrafters.json.Kim
    • -
    • com.intellectualcrafters.json.Property
    • -
    • java.lang.Throwable (implements java.io.Serializable) -
        -
      • java.lang.Exception -
          -
        • java.lang.RuntimeException - -
        • -
        -
      • -
      -
    • -
    • com.intellectualcrafters.json.XML
    • -
    -
  • -
-

Interface Hierarchy

- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html b/PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html deleted file mode 100644 index 48be16651..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/PlotMain.html +++ /dev/null @@ -1,1611 +0,0 @@ - - - - - - PlotMain - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot
-

Class PlotMain

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.plugin.PluginBase
    • -
    • -
        -
      • org.bukkit.plugin.java.JavaPlugin
      • -
      • -
          -
        • com.intellectualcrafters.plot.PlotMain
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter, org.bukkit.command.TabExecutor, - org.bukkit.plugin.Plugin -
    -
    -
    -
    -
    public class PlotMain
    -extends org.bukkit.plugin.java.JavaPlugin
    -
    PlotMain class.
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringADMIN_PERMISSION  -
      static me.confuser.barapi.BarAPIbarAPI - -
      BarAPI object
      -
      static java.util.HashMap<org.bukkit.Material,java.lang.String> - booleanFlags - -
      Boolean Flags (material)
      -
      static org.bukkit.configuration.file.YamlConfigurationconfig - -
      The main configuration file
      -
      static java.io.FileconfigFile - -
      settings.properties
      -
      static java.sql.Connectionconnection - -
      MySQL Connection
      -
      static net.milkbowl.vault.economy.Economyeconomy - -
      Economy Object (vault)
      -
      static org.bukkit.configuration.file.YamlConfigurationstorage - -
      Contains storage options
      -
      static intstorage_ver - -
      Storage version
      -
      static java.io.FilestorageFile - -
      storage.properties
      -
      static booleanuseEconomy - -
      Use Economy?
      -
      static com.sk89q.worldedit.bukkit.WorldEditPluginworldEdit - -
      WorldEdit object
      -
      static com.sk89q.worldguard.bukkit.WorldGuardPluginworldGuard - -
      World Guard Object
      -
      static WorldGuardListenerworldGuardListener - -
      World Guard Listener
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotMain()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidaddPlotWorld(java.lang.String world, - PlotWorld plotworld, - PlotManager manager) 
      static voidBroadcast(C c) - -
      Broadcast publicly
      -
      static voidBroadcastWithPerms(C c) - -
      Broadcast a message to all admins
      -
      static voidcheckForExpiredPlots() - -
      Check for expired plots
      -
      static voidconfigs() - -
      Load configuration files
      -
      static voidcreateConfiguration(PlotWorld plotworld) 
      static java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getAllPlotsRaw()  -
      static java.sql.ConnectiongetConnection() - -
      Get MySQL Connection
      -
      org.bukkit.generator.ChunkGeneratorgetDefaultWorldGenerator(java.lang.String world, - java.lang.String id) - -
      !!
      -
      static longgetLastPlayed(java.util.UUID uuid)  -
      static PlotMaingetMain() - -
      Returns the main class.
      -
      static PlotManager - getPlotManager(java.lang.String world)  -
      static PlotManager - getPlotManager(org.bukkit.World world)  -
      static java.util.Set<Plot> - getPlots() - -
      Get all plots
      -
      static java.util.Set<Plot> - getPlots(org.bukkit.entity.Player player)  -
      static java.util.HashMap<PlotId,Plot>getPlots(java.lang.String world)  -
      static java.util.HashMap<PlotId,Plot>getPlots(org.bukkit.World world)  -
      static java.util.Set<Plot> - getPlots(org.bukkit.World world, - org.bukkit.entity.Player player) 
      static java.util.LinkedHashSet<Plot>getPlotsSorted() - -
      Get a sorted list of plots
      -
      static java.lang.String[]getPlotWorlds() - -
      get all plot worlds
      -
      static java.lang.String[]getPlotWorldsString()  -
      static UUIDSaver - getUUIDSaver() - -
      Get the uuid saver
      -
      static Plot[]getWorldPlots(org.bukkit.World world)  -
      static PlotWorldgetWorldSettings(java.lang.String world)  -
      static PlotWorldgetWorldSettings(org.bukkit.World world)  -
      static booleanhasPermission(org.bukkit.entity.Player player, - java.lang.String perm) - -
      Check a player for a permission
      - - Op has all permissions
      - - checks for '*' nodes -
      -
      static inthasPermissionRange(org.bukkit.entity.Player player, - java.lang.String stub, - int range) - -
      Check a range of permissions e.g.
      -
      static booleanhasPermissions(org.bukkit.entity.Player player, - java.lang.String[] perms) - -
      Check a player for a permission
      - - Op has all permissions
      - - checks for '*' nodes -
      -
      static booleanisPlotWorld(java.lang.String world)  -
      static booleanisPlotWorld(org.bukkit.World world)  -
      static voidkillAllEntities() - -
      Kill all entities on roads
      -
      static voidloadWorld(java.lang.String world, - org.bukkit.generator.ChunkGenerator generator) 
      static voidloadWorld(org.bukkit.World world) - -
      Adds an external world as a recognized PlotSquared world - The PlotWorld - class created is based off the configuration in the settings.yml - Do not - use this method unless the required world is preconfigured in the - settings.yml -
      -
      voidonDisable() - -
      On unload
      -
      voidonEnable() - -
      On Load.
      -
      static voidreloadTranslations()  -
      static booleanremovePlot(java.lang.String world, - PlotId id, - boolean callEvent) 
      static voidremovePlotWorld(java.lang.String world)  -
      static voidsendConsoleSenderMessage(C c) - -
      Send a message to the console
      -
      static voidsendConsoleSenderMessage(java.lang.String string) - -
      Send a message to the console.
      -
      static voidsetAllPlotsRaw(java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots) 
      static voidsetAllPlotsRaw(java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots) 
      static voidsetUUIDSaver(UUIDSaver saver) - -
      Set the uuid saver
      -
      static booleanteleportPlayer(org.bukkit.entity.Player player, - org.bukkit.Location from, - Plot plot) - -
      ..
      -
      static voidupdatePlot(Plot plot) - -
      Replace the plot object with an updated version
      -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.plugin.java.JavaPlugin

        - getClassLoader, getCommand, getConfig, getDatabase, getDatabaseClasses, getDataFolder, getDescription, - getFile, getLogger, getPlugin, getPluginLoader, getProvidingPlugin, getResource, getServer, getTextResource, - initialize, installDDL, isEnabled, isInitialized, isNaggable, onCommand, onLoad, onTabComplete, - reloadConfig, removeDDL, saveConfig, saveDefaultConfig, saveResource, setEnabled, setNaggable, - toString
      • -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.plugin.PluginBase

        - equals, getName, hashCode
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        ADMIN_PERMISSION

        -
        public static final java.lang.String ADMIN_PERMISSION
        -
        -
        See Also:
        -
        Constant - Field Values
        -
        -
      • -
      - - - -
        -
      • -

        configFile

        -
        public static java.io.File configFile
        -
        settings.properties
        -
      • -
      - - - -
        -
      • -

        config

        -
        public static org.bukkit.configuration.file.YamlConfiguration config
        -
        The main configuration file
        -
      • -
      - - - -
        -
      • -

        storageFile

        -
        public static java.io.File storageFile
        -
        storage.properties
        -
      • -
      - - - -
        -
      • -

        storage

        -
        public static org.bukkit.configuration.file.YamlConfiguration storage
        -
        Contains storage options
        -
      • -
      - - - -
        -
      • -

        storage_ver

        -
        public static int storage_ver
        -
        Storage version
        -
      • -
      - - - -
        -
      • -

        connection

        -
        public static java.sql.Connection connection
        -
        MySQL Connection
        -
      • -
      - - - -
        -
      • -

        worldEdit

        -
        public static com.sk89q.worldedit.bukkit.WorldEditPlugin worldEdit
        -
        WorldEdit object
        -
      • -
      - - - -
        -
      • -

        barAPI

        -
        public static me.confuser.barapi.BarAPI barAPI
        -
        BarAPI object
        -
      • -
      - - - -
        -
      • -

        worldGuard

        -
        public static com.sk89q.worldguard.bukkit.WorldGuardPlugin worldGuard
        -
        World Guard Object
        -
      • -
      - - - -
        -
      • -

        worldGuardListener

        -
        public static WorldGuardListener worldGuardListener
        -
        World Guard Listener
        -
      • -
      - - - -
        -
      • -

        economy

        -
        public static net.milkbowl.vault.economy.Economy economy
        -
        Economy Object (vault)
        -
      • -
      - - - -
        -
      • -

        useEconomy

        -
        public static boolean useEconomy
        -
        Use Economy?
        -
      • -
      - - - -
        -
      • -

        booleanFlags

        -
        public static java.util.HashMap<org.bukkit.Material,java.lang.String> booleanFlags
        -
        Boolean Flags (material)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotMain

        -
        public PlotMain()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        checkForExpiredPlots

        -
        public static void checkForExpiredPlots()
        -
        Check for expired plots
        -
      • -
      - - - -
        -
      • -

        hasPermissionRange

        -
        public static int hasPermissionRange(org.bukkit.entity.Player player,
        -                     java.lang.String stub,
        -                     int range)
        -
        Check a range of permissions e.g. 'plots.plot.<0-100>'
        - Returns highest integer in range. -
        -
        -
        Parameters:
        -
        player - to check
        -
        stub - to check
        -
        range - tp check
        -
        Returns:
        -
        permitted range
        -
        -
      • -
      - - - -
        -
      • -

        hasPermissions

        -
        public static boolean hasPermissions(org.bukkit.entity.Player player,
        -                     java.lang.String[] perms)
        -
        Check a player for a permission
        - - Op has all permissions
        - - checks for '*' nodes -
        -
        -
        Parameters:
        -
        player - to check
        -
        perms - to check
        -
        Returns:
        -
        true of player has permissions
        -
        -
      • -
      - - - -
        -
      • -

        getUUIDSaver

        -
        public static UUIDSaver getUUIDSaver()
        -
        Get the uuid saver
        -
        -
        Returns:
        -
        uuid saver
        -
        See Also:
        -
        com.intellectualcrafters.plot.uuid.UUIDSaver;
        -
        -
      • -
      - - - -
        -
      • -

        setUUIDSaver

        -
        public static void setUUIDSaver(UUIDSaver saver)
        -
        Set the uuid saver
        -
        -
        Parameters:
        -
        saver - new saver
        -
        -
      • -
      - - - -
        -
      • -

        hasPermission

        -
        public static boolean hasPermission(org.bukkit.entity.Player player,
        -                    java.lang.String perm)
        -
        Check a player for a permission
        - - Op has all permissions
        - - checks for '*' nodes -
        -
        -
        Parameters:
        -
        player - to check
        -
        perm - to check
        -
        Returns:
        -
        true if player has the permission
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public static java.util.Set<Plot> getPlots()
        -
        Get all plots
        -
        -
        Returns:
        -
        HashMap containing the plot ID and the plot object.
        -
        -
      • -
      - - - -
        -
      • -

        getPlotsSorted

        -
        public static java.util.LinkedHashSet<Plot> getPlotsSorted()
        -
        Get a sorted list of plots
        -
        -
        Returns:
        -
        sorted list
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public static java.util.Set<Plot> getPlots(org.bukkit.entity.Player player)
        -
        -
        Parameters:
        -
        player - player
        -
        Returns:
        -
        Set Containing the players plots
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public static java.util.Set<Plot> getPlots(org.bukkit.World world,
        -                           org.bukkit.entity.Player player)
        -
        -
        Parameters:
        -
        world - plot world
        -
        player - plot owner
        -
        Returns:
        -
        players plots
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public static java.util.HashMap<PlotId,Plot> getPlots(java.lang.String world)
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public static java.util.HashMap<PlotId,Plot> getPlots(org.bukkit.World world)
        -
        -
        Parameters:
        -
        world - plot world
        -
        Returns:
        -
        plots in world
        -
        -
      • -
      - - - -
        -
      • -

        getPlotWorlds

        -
        public static java.lang.String[] getPlotWorlds()
        -
        get all plot worlds
        -
      • -
      - - - -
        -
      • -

        getPlotWorldsString

        -
        public static java.lang.String[] getPlotWorldsString()
        -
        -
        Returns:
        -
        plots worlds
        -
        -
      • -
      - - - -
        -
      • -

        isPlotWorld

        -
        public static boolean isPlotWorld(org.bukkit.World world)
        -
        -
        Parameters:
        -
        world - plotworld(?)
        -
        Returns:
        -
        true if the world is a plotworld
        -
        -
      • -
      - - - -
        -
      • -

        isPlotWorld

        -
        public static boolean isPlotWorld(java.lang.String world)
        -
        -
        Parameters:
        -
        world - plotworld(?)
        -
        Returns:
        -
        true if the world is a plotworld
        -
        -
      • -
      - - - -
        -
      • -

        getPlotManager

        -
        public static PlotManager getPlotManager(org.bukkit.World world)
        -
        -
        Parameters:
        -
        world - World to get manager for
        -
        Returns:
        -
        manager for world
        -
        -
      • -
      - - - -
        -
      • -

        getPlotManager

        -
        public static PlotManager getPlotManager(java.lang.String world)
        -
        -
        Parameters:
        -
        world - world
        -
        Returns:
        -
        PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        getWorldSettings

        -
        public static PlotWorld getWorldSettings(org.bukkit.World world)
        -
        -
        Parameters:
        -
        world - to search
        -
        Returns:
        -
        PlotWorld object
        -
        -
      • -
      - - - -
        -
      • -

        getWorldSettings

        -
        public static PlotWorld getWorldSettings(java.lang.String world)
        -
        -
        Parameters:
        -
        world - to search
        -
        Returns:
        -
        PlotWorld object
        -
        -
      • -
      - - - -
        -
      • -

        getWorldPlots

        -
        public static Plot[] getWorldPlots(org.bukkit.World world)
        -
        -
        Parameters:
        -
        world - world to search
        -
        Returns:
        -
        set containing the plots for a world
        -
        -
      • -
      - - - -
        -
      • -

        removePlot

        -
        public static boolean removePlot(java.lang.String world,
        -                 PlotId id,
        -                 boolean callEvent)
        -
      • -
      - - - -
        -
      • -

        updatePlot

        -
        public static void updatePlot(Plot plot)
        -
        Replace the plot object with an updated version
        -
        -
        Parameters:
        -
        plot - plot object
        -
        -
      • -
      - - - -
        -
      • -

        getConnection

        -
        public static java.sql.Connection getConnection()
        -
        Get MySQL Connection
        -
        -
        Returns:
        -
        connection MySQL Connection.
        -
        -
      • -
      - - - -
        -
      • -

        sendConsoleSenderMessage

        -
        public static void sendConsoleSenderMessage(java.lang.String string)
        -
        Send a message to the console.
        -
        -
        Parameters:
        -
        string - message
        -
        -
      • -
      - - - -
        -
      • -

        teleportPlayer

        -
        public static boolean teleportPlayer(org.bukkit.entity.Player player,
        -                     org.bukkit.Location from,
        -                     Plot plot)
        -
        ..
        -
      • -
      - - - -
        -
      • -

        sendConsoleSenderMessage

        -
        public static void sendConsoleSenderMessage(C c)
        -
        Send a message to the console
        -
        -
        Parameters:
        -
        c - message
        -
        -
      • -
      - - - -
        -
      • -

        Broadcast

        -
        public static void Broadcast(C c)
        -
        Broadcast publicly
        -
        -
        Parameters:
        -
        c - message
        -
        -
      • -
      - - - -
        -
      • -

        getMain

        -
        public static PlotMain getMain()
        -
        Returns the main class.
        -
        -
        Returns:
        -
        (this class)
        -
        -
      • -
      - - - -
        -
      • -

        BroadcastWithPerms

        -
        public static void BroadcastWithPerms(C c)
        -
        Broadcast a message to all admins
        -
        -
        Parameters:
        -
        c - message
        -
        -
      • -
      - - - -
        -
      • -

        reloadTranslations

        -
        public static void reloadTranslations()
        -                               throws java.io.IOException
        -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      - - - -
        -
      • -

        getLastPlayed

        -
        public static long getLastPlayed(java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        configs

        -
        public static void configs()
        -
        Load configuration files
        -
      • -
      - - - -
        -
      • -

        killAllEntities

        -
        public static void killAllEntities()
        -
        Kill all entities on roads
        -
      • -
      - - - -
        -
      • -

        createConfiguration

        -
        public static void createConfiguration(PlotWorld plotworld)
        -
      • -
      - - - -
        -
      • -

        loadWorld

        -
        public static void loadWorld(java.lang.String world,
        -             org.bukkit.generator.ChunkGenerator generator)
        -
      • -
      - - - -
        -
      • -

        loadWorld

        -
        public static void loadWorld(org.bukkit.World world)
        -
        Adds an external world as a recognized PlotSquared world - The PlotWorld - class created is based off the configuration in the settings.yml - Do not - use this method unless the required world is preconfigured in the - settings.yml -
        -
        -
        Parameters:
        -
        world - to load
        -
        -
      • -
      - - - -
        -
      • -

        addPlotWorld

        -
        public static void addPlotWorld(java.lang.String world,
        -                PlotWorld plotworld,
        -                PlotManager manager)
        -
      • -
      - - - -
        -
      • -

        removePlotWorld

        -
        public static void removePlotWorld(java.lang.String world)
        -
      • -
      - - - -
        -
      • -

        getAllPlotsRaw

        -
        public static java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getAllPlotsRaw()
        -
      • -
      - - - -
        -
      • -

        setAllPlotsRaw

        -
        public static void setAllPlotsRaw(java.util.HashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots)
        -
      • -
      - - - -
        -
      • -

        setAllPlotsRaw

        -
        public static void setAllPlotsRaw(java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> plots)
        -
      • -
      - - - -
        -
      • -

        getDefaultWorldGenerator

        -
        public org.bukkit.generator.ChunkGenerator getDefaultWorldGenerator(java.lang.String world,
        -                                                           java.lang.String id)
        -
        !!WorldGeneration!!
        -
        -
        Specified by:
        -
        getDefaultWorldGenerator in interface org.bukkit.plugin.Plugin
        -
        Overrides:
        -
        getDefaultWorldGenerator in class org.bukkit.plugin.java.JavaPlugin -
        -
        -
      • -
      - - - -
        -
      • -

        onEnable

        -
        public void onEnable()
        -
        On Load.
        -
        -
        Specified by:
        -
        onEnable in interface org.bukkit.plugin.Plugin
        -
        Overrides:
        -
        onEnable in class org.bukkit.plugin.java.JavaPlugin
        -
        -
      • -
      - - - -
        -
      • -

        onDisable

        -
        public void onDisable()
        -
        On unload
        -
        -
        Specified by:
        -
        onDisable in interface org.bukkit.plugin.Plugin
        -
        Overrides:
        -
        onDisable in class org.bukkit.plugin.java.JavaPlugin
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html deleted file mode 100644 index dbe0d1e1f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/api/PlotAPI.html +++ /dev/null @@ -1,1509 +0,0 @@ - - - - - - PlotAPI - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.api
-

Class PlotAPI

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.api.PlotAPI
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotAPI
    -extends java.lang.Object
    -
    PlotSquared API
    -
    -
    Version:
    -
    API 2.0
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringADMIN_PERMISSION - -
      Permission that allows for admin access, - this permission node will allow the player - to use any part of the plugin, without limitations. -
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotAPI(org.bukkit.plugin.java.JavaPlugin plugin) - -
      Constructor.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidaddFlag(AbstractFlag flag) - -
      Register a flag for use in plots
      -
      voidaddPlotWorld(java.lang.String world, - PlotWorld plotWorld, - PlotManager manager) - -
      Add a plot world
      -
      intgetAllowedPlots(org.bukkit.entity.Player player) - -
      Get the numbers of plots, which the player is able to build in
      -
      java.util.Set<Plot> - getAllPlots() - -
      Get all plots
      -
      org.bukkit.LocationgetBottomLocation(Plot p) - -
      Get Bottom Location (min, min, min)
      -
      CgetCaptions() - -
      C class contains all the captions from the translations.yml file.
      -
      org.bukkit.configuration.file.YamlConfigurationgetConfig()  -
      FlagManagergetFlagManager() - -
      FlagManager class contains methods relating to plot flags
      -
      AbstractFlag[]getFlags() - -
      get all the currently registered flags
      -
      org.bukkit.LocationgetHomeLocation(Plot p) - -
      Get home location
      -
      org.bukkit.Location[]getLocations(Plot p) - -
      Get plot locations
      -
      PlotMaingetMain() - -
      Get the main class for this plugin
      - - Contains a lot of fields and methods - not very well organized
      - Only use this if you really need it -
      -
      PlayerFunctionsgetPlayerFunctions() - -
      PlayerFunctions class contains useful methods relating to players - Some - player/plot methods are here as well -
      -
      intgetPlayerPlotCount(org.bukkit.World world, - org.bukkit.entity.Player player) - -
      Get the player plot count
      -
      java.util.Set<Plot> - getPlayerPlots(org.bukkit.entity.Player player) - -
      Return all plots for a player
      -
      java.util.Set<Plot> - getPlayerPlots(org.bukkit.World world, - org.bukkit.entity.Player player) - -
      Get a collection containing the players plots
      -
      PlotgetPlot(org.bukkit.Location l) - -
      Get a plot based on the location
      -
      PlotgetPlot(org.bukkit.entity.Player player) - -
      Get a plot based on the player location
      -
      PlotgetPlot(org.bukkit.World world, - int x, - int z) - -
      Get a plot based on the ID
      -
      PlotHelpergetPlotHelper() - -
      PlotHelper class contains useful methods relating to plots.
      -
      PlotMaingetPlotMain() - -
      Get the plotMain class
      -
      PlotManagergetPlotManager(java.lang.String world) - -
      Get the plot manager for a world. - Contains useful low level methods for - plot merging, clearing, and tessellation -
      -
      PlotManagergetPlotManager(org.bukkit.World world) - -
      Get the plot manager for a world. - Most of these methods can be accessed - through the PlotHelper -
      -
      Plot[]getPlots(org.bukkit.World world) - -
      Get all plots for the world
      -
      Plot[]getPlots(org.bukkit.World world, - org.bukkit.entity.Player plr, - boolean just_owner) - -
      Get all plots for the player
      -
      java.lang.String[]getPlotWorlds() - -
      Get all plot worlds
      -
      SchematicHandlergetSchematicHandler() - -
      SchematicHandler class contains methods related to pasting schematics
      -
      org.bukkit.configuration.file.YamlConfigurationgetStorage()  -
      org.bukkit.LocationgetTopLocation(Plot p) - -
      Get Top Location (max, max, max)
      -
      PlotWorldgetWorldSettings(java.lang.String world) - -
      Get the settings for a world (settings bundled in PlotWorld class)
      -
      PlotWorldgetWorldSettings(org.bukkit.World world) - -
      Get the settings for a world (settings bundled in PlotWorld class) - You - will need to downcast for the specific settings a Generator has. e.g. -
      -
      booleanhasPlot(org.bukkit.World world, - org.bukkit.entity.Player player) - -
      Check whether or not a player has a plot
      -
      booleanisInPlot(org.bukkit.entity.Player player) - -
      Check whether or not a player is in a plot
      -
      booleanisPlotWorld(org.bukkit.World world) - -
      Get if plot world
      -
      voidregisterCommand(SubCommand c) - -
      Register a subcommand
      -
      voidsendConsoleMessage(C c) - -
      Send a message to the console
      -
      voidsendConsoleMessage(java.lang.String msg) - -
      Send a message to the console. - Supports color codes
      -
      voidsendMessage(org.bukkit.entity.Player player, - C c) - -
      Send a message to a player.
      -
      voidsendMessage(org.bukkit.entity.Player player, - java.lang.String string) - -
      Send a message to a player. - Supports color codes
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        ADMIN_PERMISSION

        -
        public static final java.lang.String ADMIN_PERMISSION
        -
        Permission that allows for admin access, - this permission node will allow the player - to use any part of the plugin, without limitations. -
        -
        -
        See Also:
        -
        - Constant - Field Values
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotAPI

        -
        public PlotAPI(org.bukkit.plugin.java.JavaPlugin plugin)
        -
        Constructor. Insert any Plugin. - (Optimally the plugin that is accessing the method) -
        -
        -
        Parameters:
        -
        plugin - Plugin used to access this method
        -
        Throws:
        -
        PlotSquaredException - - if the program fails to fetch the PlotMain instance -
        -
        See Also:
        -
        PlotMain
        -
        -
      • -
      -
    • -
    - - -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html deleted file mode 100644 index c1373ecaa..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-frame.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - com.intellectualcrafters.plot.api - - - - -

com.intellectualcrafters.plot.api -

- -
-

Classes

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html deleted file mode 100644 index 183d9b2e0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-summary.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - com.intellectualcrafters.plot.api - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.api

-
-
-
    -
  • - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    PlotAPI -
    PlotSquared API
    -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html deleted file mode 100644 index b55341c6f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/api/package-tree.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - com.intellectualcrafters.plot.api Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.api

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.api.PlotAPI
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html deleted file mode 100644 index 196e8272f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Auto.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - Auto - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Auto

-
-
- -
-
    -
  • -
    -
    -
    public class Auto
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Auto()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      static PlotIdgetNextPlot(PlotId id, - int step) 
      booleanisUnowned(org.bukkit.World world, - PlotId pos1, - PlotId pos2)  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        lastPlot

        -
        public static PlotId lastPlot
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Auto

        -
        public Auto()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getNextPlot

        -
        public static PlotId getNextPlot(PlotId id,
        -                 int step)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      - - - -
        -
      • -

        isUnowned

        -
        public boolean isUnowned(org.bukkit.World world,
        -                PlotId pos1,
        -                PlotId pos2)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html deleted file mode 100644 index d4c41ac99..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Ban.html +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - Ban - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Ban

-
-
- -
-
    -
  • -
    -
    -
    public class Ban
    -extends SubCommand
    -
    Created 2014-11-09 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Ban()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Ban

        -
        public Ban()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html deleted file mode 100644 index 4b085c84b..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Claim.html +++ /dev/null @@ -1,422 +0,0 @@ - - - - - - Claim - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Claim

-
-
- -
-
    -
  • -
    -
    -
    public class Claim
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Claim()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static booleanclaimPlot(org.bukkit.entity.Player player, - Plot plot, - boolean teleport, - boolean auto) 
      static booleanclaimPlot(org.bukkit.entity.Player player, - Plot plot, - boolean teleport, - java.lang.String schematic, - boolean auto) 
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Claim

        -
        public Claim()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        claimPlot

        -
        public static boolean claimPlot(org.bukkit.entity.Player player,
        -                Plot plot,
        -                boolean teleport,
        -                boolean auto)
        -
      • -
      - - - -
        -
      • -

        claimPlot

        -
        public static boolean claimPlot(org.bukkit.entity.Player player,
        -                Plot plot,
        -                boolean teleport,
        -                java.lang.String schematic,
        -                boolean auto)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html deleted file mode 100644 index 4c4a68e47..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clear.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Clear - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Clear

-
-
- -
-
    -
  • -
    -
    -
    public class Clear
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Clear()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Clear

        -
        public Clear()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html deleted file mode 100644 index 79c13c881..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Clipboard.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Clipboard - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Clipboard

-
-
- -
-
    -
  • -
    -
    -
    public class Clipboard
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Clipboard()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Clipboard

        -
        public Clipboard()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html deleted file mode 100644 index 1dca7cdfc..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Command.html +++ /dev/null @@ -1,850 +0,0 @@ - - - - - - Command - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Enum Command

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Enum<Command>
    • -
    • -
        -
      • com.intellectualcrafters.plot.commands.Command
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable, java.lang.Comparable<Command>
    -
    -
    -
    -
    public enum Command
    -extends java.lang.Enum<Command>
    -
    Created by Citymonstret on 2014-08-03.
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetAlias()  -
      java.lang.StringgetCommand()  -
      CommandPermission - getPermission()  -
      static CommandvalueOf(java.lang.String name) - -
      Returns the enum constant of this type with the specified name.
      -
      static Command[]values() - -
      Returns an array containing the constants of this enum type, in - the order they are declared. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Enum

        - clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, - toString, valueOf
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Enum Constant Detail

      - - - -
        -
      • -

        SWAP

        -
        public static final Command SWAP
        -
      • -
      - - - -
        -
      • -

        INBOX

        -
        public static final Command INBOX
        -
      • -
      - - - -
        -
      • -

        DEBUGCLAIMTEST

        -
        public static final Command DEBUGCLAIMTEST
        -
      • -
      - - - -
        -
      • -

        COMMENT

        -
        public static final Command COMMENT
        -
      • -
      - - - -
        -
      • -

        TRUSTED

        -
        public static final Command TRUSTED
        -
      • -
      - - - -
        -
      • -

        PASTE

        -
        public static final Command PASTE
        -
      • -
      - - - -
        -
      • -

        CLIPBOARD

        -
        public static final Command CLIPBOARD
        -
      • -
      - - - -
        -
      • -

        COPY

        -
        public static final Command COPY
        -
      • -
      - - - -
        -
      • -

        KICK

        -
        public static final Command KICK
        -
      • -
      - - - -
        -
      • -

        HELPERS

        -
        public static final Command HELPERS
        -
      • -
      - - - -
        -
      • -

        DENIED

        -
        public static final Command DENIED
        -
      • -
      - - - -
        -
      • -

        CLAIM

        -
        public static final Command CLAIM
        -
      • -
      - - - -
        -
      • -

        MERGE

        -
        public static final Command MERGE
        -
      • -
      - - - -
        -
      • -

        UNLINK

        -
        public static final Command UNLINK
        -
      • -
      - - - -
        -
      • -

        CLEAR

        -
        public static final Command CLEAR
        -
      • -
      - - - -
        -
      • -

        DELETE

        -
        public static final Command DELETE
        -
      • -
      - - - -
        -
      • -

        DEBUG

        -
        public static final Command DEBUG
        -
      • -
      - - - -
        -
      • -

        INTERFACE

        -
        public static final Command INTERFACE
        -
      • -
      - - - -
        -
      • -

        HOME

        -
        public static final Command HOME
        -
      • -
      - - - -
        -
      • -

        INFO

        -
        public static final Command INFO
        -
      • -
      - - - -
        -
      • -

        LIST

        -
        public static final Command LIST
        -
      • -
      - - - -
        -
      • -

        SET

        -
        public static final Command SET
        -
      • -
      - - - -
        -
      • -

        PURGE

        -
        public static final Command PURGE
        -
      • -
      - - - -
        -
      • -

        SETUP

        -
        public static final Command SETUP
        -
      • -
      - - - -
        -
      • -

        OP

        -
        public static final Command OP
        -
      • -
      - - - -
        -
      • -

        DEOP

        -
        public static final Command DEOP
        -
      • -
      - - - -
        -
      • -

        BAN

        -
        public static final Command BAN
        -
      • -
      - - - -
        -
      • -

        UNBAN

        -
        public static final Command UNBAN
        -
      • -
      - - - -
        -
      • -

        DATABASE

        -
        public static final Command DATABASE
        -
      • -
      - - - -
        -
      • -

        TP

        -
        public static final Command TP
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static Command[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (Command c : Command.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are declared
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static Command valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant with the - specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        getCommand

        -
        public java.lang.String getCommand()
        -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getAlias

        -
        public java.lang.String getAlias()
        -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPermission

        -
        public CommandPermission getPermission()
        -
        -
        Returns:
        -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html deleted file mode 100644 index 70641617a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/CommandPermission.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - CommandPermission - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class CommandPermission

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.commands.CommandPermission
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class CommandPermission
    -extends java.lang.Object
    -
    Created by Citymonstret on 2014-08-03.
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      java.lang.Stringpermission  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      CommandPermission(java.lang.String permission)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanhasPermission(org.bukkit.entity.Player player)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        permission

        -
        public java.lang.String permission
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        CommandPermission

        -
        public CommandPermission(java.lang.String permission)
        -
        -
        Parameters:
        -
        permission - Command Permission
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        hasPermission

        -
        public boolean hasPermission(org.bukkit.entity.Player player)
        -
        -
        Parameters:
        -
        player - Does the player have the permission?
        -
        Returns:
        -
        true of player has the required permission node
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html deleted file mode 100644 index 9a1e8b811..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Comment.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Comment - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Comment

-
-
- -
-
    -
  • -
    -
    -
    public class Comment
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Comment()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Comment

        -
        public Comment()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html deleted file mode 100644 index 920217bb6..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Copy.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Copy - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Copy

-
-
- -
-
    -
  • -
    -
    -
    public class Copy
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Copy()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Copy

        -
        public Copy()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html deleted file mode 100644 index ba0bb0331..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DEOP.html +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - DEOP - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class DEOP

-
-
- -
-
    -
  • -
    -
    -
    public class DEOP
    -extends SubCommand
    -
    Created 2014-11-09 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      DEOP()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DEOP

        -
        public DEOP()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html deleted file mode 100644 index a3233f5e7..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Database.html +++ /dev/null @@ -1,400 +0,0 @@ - - - - - - Database - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Database

-
-
- -
-
    -
  • -
    -
    -
    public class Database
    -extends SubCommand
    -
    Created 2014-11-15 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Database()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      static voidinsertPlots(SQLManager manager, - java.util.UUID requester, - java.sql.Connection c) 
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Database

        -
        public Database()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        insertPlots

        -
        public static void insertPlots(SQLManager manager,
        -               java.util.UUID requester,
        -               java.sql.Connection c)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html deleted file mode 100644 index 541813592..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Debug.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Debug - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Debug

-
-
- -
-
    -
  • -
    -
    -
    public class Debug
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Debug()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Debug

        -
        public Debug()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html deleted file mode 100644 index c1e4f0b04..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugClaimTest.html +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - DebugClaimTest - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class DebugClaimTest

-
-
- -
-
    -
  • -
    -
    -
    public class DebugClaimTest
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      DebugClaimTest()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static booleanclaimPlot(org.bukkit.entity.Player player, - Plot plot, - boolean teleport) 
      static booleanclaimPlot(org.bukkit.entity.Player player, - Plot plot, - boolean teleport, - java.lang.String schematic) 
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DebugClaimTest

        -
        public DebugClaimTest()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        claimPlot

        -
        public static boolean claimPlot(org.bukkit.entity.Player player,
        -                Plot plot,
        -                boolean teleport)
        -
      • -
      - - - -
        -
      • -

        claimPlot

        -
        public static boolean claimPlot(org.bukkit.entity.Player player,
        -                Plot plot,
        -                boolean teleport,
        -                java.lang.String schematic)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html deleted file mode 100644 index 477b559b1..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugLoadTest.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - DebugLoadTest - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class DebugLoadTest

-
-
- -
-
    -
  • -
    -
    -
    public class DebugLoadTest
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      DebugLoadTest()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DebugLoadTest

        -
        public DebugLoadTest()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html deleted file mode 100644 index 69975f67c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/DebugSaveTest.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - DebugSaveTest - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class DebugSaveTest

-
-
- -
-
    -
  • -
    -
    -
    public class DebugSaveTest
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      DebugSaveTest()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DebugSaveTest

        -
        public DebugSaveTest()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html deleted file mode 100644 index 8c1e68f4c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Delete.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Delete - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Delete

-
-
- -
-
    -
  • -
    -
    -
    public class Delete
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Delete()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Delete

        -
        public Delete()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html deleted file mode 100644 index 21e00b989..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Denied.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Denied - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Denied

-
-
- -
-
    -
  • -
    -
    -
    public class Denied
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Denied()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Denied

        -
        public Denied()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html deleted file mode 100644 index 045057e21..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Help.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Help - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Help

-
-
- -
-
    -
  • -
    -
    -
    public class Help
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Help()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Help

        -
        public Help()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html deleted file mode 100644 index fddd94e41..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Helpers.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Helpers - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Helpers

-
-
- -
-
    -
  • -
    -
    -
    public class Helpers
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Helpers()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Helpers

        -
        public Helpers()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html deleted file mode 100644 index 07836eff9..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Home.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - Home - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Home

-
-
- -
-
    -
  • -
    -
    -
    public class Home
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Home()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Home

        -
        public Home()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html deleted file mode 100644 index bef8b924a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inbox.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Inbox - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Inbox

-
-
- -
-
    -
  • -
    -
    -
    public class Inbox
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Inbox()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Inbox

        -
        public Inbox()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html deleted file mode 100644 index e69a058b0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Info.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - Info - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Info

-
-
- -
-
    -
  • -
    -
    -
    public class Info
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Info()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player player, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Info

        -
        public Info()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player player,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        player - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html deleted file mode 100644 index 0adb5e8c1..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Inventory.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Inventory - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Inventory

-
-
- -
-
    -
  • -
    -
    -
    public class Inventory
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Inventory()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Inventory

        -
        public Inventory()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html deleted file mode 100644 index c6cd442f7..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Kick.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Kick - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Kick

-
-
- -
-
    -
  • -
    -
    -
    public class Kick
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Kick()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Kick

        -
        public Kick()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html deleted file mode 100644 index 1ee984238..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/MainCommand.html +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - MainCommand - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class MainCommand

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.commands.MainCommand
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter
    -
    -
    -
    -
    public class MainCommand
    -extends java.lang.Object
    -implements org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter
    -
    PlotMain command class
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringMAIN_PERMISSION  -
      static java.util.ArrayList<SubCommand> - subCommands  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      MainCommand()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static java.util.List<SubCommand> - getCommands(SubCommand.CommandCategory category, - org.bukkit.entity.Player player) 
      static java.util.List<java.lang.String>helpMenu(org.bukkit.entity.Player player, - SubCommand.CommandCategory category, - int page) 
      static booleanno_permission(org.bukkit.entity.Player player, - java.lang.String permission) 
      booleanonCommand(org.bukkit.command.CommandSender sender, - org.bukkit.command.Command cmd, - java.lang.String commandLabel, - java.lang.String[] args) 
      java.util.List<java.lang.String>onTabComplete(org.bukkit.command.CommandSender commandSender, - org.bukkit.command.Command command, - java.lang.String s, - java.lang.String[] strings) 
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        MAIN_PERMISSION

        -
        public static final java.lang.String MAIN_PERMISSION
        -
        -
        See Also:
        -
        - Constant - Field Values
        -
        -
      • -
      - - - -
        -
      • -

        subCommands

        -
        public static java.util.ArrayList<SubCommand> subCommands
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        MainCommand

        -
        public MainCommand()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        no_permission

        -
        public static boolean no_permission(org.bukkit.entity.Player player,
        -                    java.lang.String permission)
        -
      • -
      - - - - - - - -
        -
      • -

        helpMenu

        -
        public static java.util.List<java.lang.String> helpMenu(org.bukkit.entity.Player player,
        -                                        SubCommand.CommandCategory category,
        -                                        int page)
        -
      • -
      - - - -
        -
      • -

        onCommand

        -
        public boolean onCommand(org.bukkit.command.CommandSender sender,
        -                org.bukkit.command.Command cmd,
        -                java.lang.String commandLabel,
        -                java.lang.String[] args)
        -
        -
        Specified by:
        -
        onCommand in interface org.bukkit.command.CommandExecutor -
        -
        -
      • -
      - - - -
        -
      • -

        onTabComplete

        -
        public java.util.List<java.lang.String> onTabComplete(org.bukkit.command.CommandSender commandSender,
        -                                             org.bukkit.command.Command command,
        -                                             java.lang.String s,
        -                                             java.lang.String[] strings)
        -
        -
        Specified by:
        -
        onTabComplete in interface org.bukkit.command.TabCompleter -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html deleted file mode 100644 index 8ce918e80..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Merge.html +++ /dev/null @@ -1,436 +0,0 @@ - - - - - - Merge - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Merge

-
-
- -
-
    -
  • -
    -
    -
    public class Merge
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Merge()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static java.lang.Stringdirection(float yaw)  -
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        values

        -
        public static java.lang.String[] values
        -
      • -
      - - - -
        -
      • -

        aliases

        -
        public static java.lang.String[] aliases
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Merge

        -
        public Merge()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        direction

        -
        public static java.lang.String direction(float yaw)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html deleted file mode 100644 index 99342e8e8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/MusicSubcommand.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - MusicSubcommand - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class MusicSubcommand

-
-
- -
-
    -
  • -
    -
    -
    public class MusicSubcommand
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      MusicSubcommand()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player player, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        MusicSubcommand

        -
        public MusicSubcommand()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player player,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        player - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html deleted file mode 100644 index 4b0cbe738..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/OP.html +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - OP - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class OP

-
-
- -
-
    -
  • -
    -
    -
    public class OP
    -extends SubCommand
    -
    Created 2014-11-09 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      OP()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        OP

        -
        public OP()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html deleted file mode 100644 index 7fa757a31..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Paste.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Paste - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Paste

-
-
- -
-
    -
  • -
    -
    -
    public class Paste
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Paste()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Paste

        -
        public Paste()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html deleted file mode 100644 index 2286cd173..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Purge.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Purge - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Purge

-
-
- -
-
    -
  • -
    -
    -
    public class Purge
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Purge()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Purge

        -
        public Purge()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html deleted file mode 100644 index 81457cde5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Rate.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Rate - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Rate

-
-
- -
-
    -
  • -
    -
    -
    public class Rate
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Rate()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Rate

        -
        public Rate()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html deleted file mode 100644 index 459a49c5e..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Reload.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Reload - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Reload

-
-
- -
-
    -
  • -
    -
    -
    public class Reload
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Reload()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Reload

        -
        public Reload()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html deleted file mode 100644 index 55923cff8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Schematic.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Schematic - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Schematic

-
-
- -
-
    -
  • -
    -
    -
    public class Schematic
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Schematic()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Schematic

        -
        public Schematic()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html deleted file mode 100644 index d9f8b9871..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Set.html +++ /dev/null @@ -1,421 +0,0 @@ - - - - - - Set - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Set

-
-
- -
-
    -
  • -
    -
    -
    public class Set
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Set()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        values

        -
        public static java.lang.String[] values
        -
      • -
      - - - -
        -
      • -

        aliases

        -
        public static java.lang.String[] aliases
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Set

        -
        public Set()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html deleted file mode 100644 index 1bc2a2acb..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SetOwner.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - SetOwner - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class SetOwner

-
-
- -
-
    -
  • -
    -
    -
    public class SetOwner
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SetOwner()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SetOwner

        -
        public SetOwner()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html deleted file mode 100644 index 6d54c1183..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Setup.html +++ /dev/null @@ -1,414 +0,0 @@ - - - - - - Setup - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Setup

-
-
- -
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class Setup
    -extends SubCommand
    -implements org.bukkit.event.Listener
    -
    Created 2014-09-26 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Setup()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        setupMap

        -
        public static java.util.Map<java.lang.String,com.intellectualcrafters.plot.commands.Setup.SetupObject> setupMap
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Setup

        -
        public Setup()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html deleted file mode 100644 index 07cf64970..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.CommandCategory.html +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - SubCommand.CommandCategory - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Enum SubCommand.CommandCategory

-
-
-
    -
  • java.lang.Object
  • -
  • - -
  • -
-
- -
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString()  -
      static SubCommand.CommandCategory - valueOf(java.lang.String name) - -
      Returns the enum constant of this type with the specified name.
      -
      static SubCommand.CommandCategory[] - values() - -
      Returns an array containing the constants of this enum type, in - the order they are declared. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Enum

        - clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, - valueOf
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static SubCommand.CommandCategory[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (SubCommand.CommandCategory c : SubCommand.CommandCategory.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are - declared -
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static SubCommand.CommandCategory valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant - with the specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Enum<SubCommand.CommandCategory> -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html deleted file mode 100644 index bc377d7bd..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/SubCommand.html +++ /dev/null @@ -1,656 +0,0 @@ - - - - - - SubCommand - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class SubCommand

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.commands.SubCommand
    • -
    -
  • -
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      static class SubCommand.CommandCategory  -
      -
    • -
    - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      SubCommand(Command command, - java.lang.String description, - java.lang.String usage, - SubCommand.CommandCategory category, - boolean isPlayer) 
      SubCommand(java.lang.String cmd, - java.lang.String permission, - java.lang.String description, - java.lang.String usage, - java.lang.String alias, - SubCommand.CommandCategory category, - boolean isPlayer) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      abstract booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      voidexecuteConsole(java.lang.String... args)  -
      booleansendMessage(org.bukkit.entity.Player plr, - C c, - java.lang.String... args) - -
      Send a message
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        isPlayer

        -
        public boolean isPlayer
        -
      • -
      - - - -
        -
      • -

        cmd

        -
        public java.lang.String cmd
        -
        Command
        -
      • -
      - - - - - - - -
        -
      • -

        description

        -
        public java.lang.String description
        -
        Simple description
        -
      • -
      - - - -
        -
      • -

        alias

        -
        public java.lang.String alias
        -
        Alias
        -
      • -
      - - - -
        -
      • -

        usage

        -
        public java.lang.String usage
        -
        Command usage
        -
      • -
      - - - - -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SubCommand

        -
        public SubCommand(java.lang.String cmd,
        -          java.lang.String permission,
        -          java.lang.String description,
        -          java.lang.String usage,
        -          java.lang.String alias,
        -          SubCommand.CommandCategory category,
        -          boolean isPlayer)
        -
        -
        Parameters:
        -
        cmd - Command /plot {cmd} <-- That!
        -
        permission - Permission Node
        -
        description - Simple description
        -
        usage - Usage description: /plot command {args...}
        -
        alias - Command alias
        -
        category - CommandCategory. Pick whichever closests to what you want. -
        -
        -
      • -
      - - - -
        -
      • -

        SubCommand

        -
        public SubCommand(Command command,
        -          java.lang.String description,
        -          java.lang.String usage,
        -          SubCommand.CommandCategory category,
        -          boolean isPlayer)
        -
        -
        Parameters:
        -
        command - Command /plot {cmd} <-- That!
        -
        description - Simple description
        -
        usage - Usage description: /plot command {args...}
        -
        category - CommandCategory. Pick whichever closests to what you want. -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public abstract boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Execute.
        -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      - - - -
        -
      • -

        executeConsole

        -
        public void executeConsole(java.lang.String... args)
        -
      • -
      - - - -
        -
      • -

        sendMessage

        -
        public boolean sendMessage(org.bukkit.entity.Player plr,
        -                  C c,
        -                  java.lang.String... args)
        -
        Send a message
        -
        -
        Parameters:
        -
        plr -
        -
        c -
        -
        args -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html deleted file mode 100644 index f63d50abe..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Swap.html +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - Swap - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Swap

-
-
- -
-
    -
  • -
    -
    -
    public class Swap
    -extends SubCommand
    -
    Created by Citymonstret on 2014-08-01.
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Swap()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Swap

        -
        public Swap()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html deleted file mode 100644 index 06285e5f0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/TP.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - TP - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class TP

-
-
- -
-
    -
  • -
    -
    -
    public class TP
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      TP()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        TP

        -
        public TP()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html deleted file mode 100644 index 41bed0e67..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Trusted.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - Trusted - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Trusted

-
-
- -
-
    -
  • -
    -
    -
    public class Trusted
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Trusted()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Trusted

        -
        public Trusted()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html deleted file mode 100644 index 20fb461e4..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unban.html +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - Unban - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Unban

-
-
- -
-
    -
  • -
    -
    -
    public class Unban
    -extends SubCommand
    -
    Created 2014-11-09 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Unban()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Unban

        -
        public Unban()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html deleted file mode 100644 index 04093b32f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Unlink.html +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - Unlink - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Unlink

-
-
- -
-
    -
  • -
    -
    -
    public class Unlink
    -extends SubCommand
    -
    Created 2014-08-01 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Unlink()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Unlink

        -
        public Unlink()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html deleted file mode 100644 index e07cb9d0d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/Visit.html +++ /dev/null @@ -1,390 +0,0 @@ - - - - - - Visit - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class Visit

-
-
- -
-
    -
  • -
    -
    -
    public class Visit
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Visit()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      java.util.List<Plot>getPlots(java.util.UUID uuid)  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Visit

        -
        public Visit()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getPlots

        -
        public java.util.List<Plot> getPlots(java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html deleted file mode 100644 index 999d2bdfc..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/list.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - list - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class list

-
-
- -
-
    -
  • -
    -
    -
    public class list
    -extends SubCommand
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      list()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        list

        -
        public list()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html deleted file mode 100644 index d568fbbce..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-frame.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - com.intellectualcrafters.plot.commands - - - - -

com.intellectualcrafters.plot.commands -

- -
-

Classes

- -

Enums

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html deleted file mode 100644 index 006adf85c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-summary.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - com.intellectualcrafters.plot.commands - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.commands

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html deleted file mode 100644 index 2b3f1d504..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/package-tree.html +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - com.intellectualcrafters.plot.commands Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.commands

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.commands.CommandPermission
    • -
    • com.intellectualcrafters.plot.commands.MainCommand - (implements org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter) -
    • -
    • com.intellectualcrafters.plot.commands.SubCommand -
        -
      • com.intellectualcrafters.plot.commands.Auto -
      • -
      • com.intellectualcrafters.plot.commands.Ban -
      • -
      • com.intellectualcrafters.plot.commands.Claim
      • -
      • com.intellectualcrafters.plot.commands.Clear
      • -
      • com.intellectualcrafters.plot.commands.Clipboard
      • -
      • com.intellectualcrafters.plot.commands.Comment
      • -
      • com.intellectualcrafters.plot.commands.Copy -
      • -
      • com.intellectualcrafters.plot.commands.Database
      • -
      • com.intellectualcrafters.plot.commands.Debug
      • -
      • com.intellectualcrafters.plot.commands.DebugClaimTest -
      • -
      • com.intellectualcrafters.plot.commands.DebugLoadTest -
      • -
      • com.intellectualcrafters.plot.commands.DebugSaveTest -
      • -
      • com.intellectualcrafters.plot.commands.Delete
      • -
      • com.intellectualcrafters.plot.commands.Denied
      • -
      • com.intellectualcrafters.plot.commands.DEOP -
      • -
      • com.intellectualcrafters.plot.commands.Help -
      • -
      • com.intellectualcrafters.plot.commands.Helpers
      • -
      • com.intellectualcrafters.plot.commands.Home -
      • -
      • com.intellectualcrafters.plot.commands.Inbox
      • -
      • com.intellectualcrafters.plot.commands.Info -
      • -
      • com.intellectualcrafters.plot.commands.Inventory
      • -
      • com.intellectualcrafters.plot.commands.Kick -
      • -
      • com.intellectualcrafters.plot.commands.list -
      • -
      • com.intellectualcrafters.plot.commands.Merge
      • -
      • com.intellectualcrafters.plot.commands.MusicSubcommand -
      • -
      • com.intellectualcrafters.plot.commands.OP
      • -
      • com.intellectualcrafters.plot.commands.Paste
      • -
      • com.intellectualcrafters.plot.commands.plugin
      • -
      • com.intellectualcrafters.plot.commands.Purge
      • -
      • com.intellectualcrafters.plot.commands.Rate -
      • -
      • com.intellectualcrafters.plot.commands.Reload
      • -
      • com.intellectualcrafters.plot.commands.Schematic
      • -
      • com.intellectualcrafters.plot.commands.Set -
      • -
      • com.intellectualcrafters.plot.commands.SetOwner
      • -
      • com.intellectualcrafters.plot.commands.Setup (implements org.bukkit.event.Listener) -
      • -
      • com.intellectualcrafters.plot.commands.Swap -
      • -
      • com.intellectualcrafters.plot.commands.TP
      • -
      • com.intellectualcrafters.plot.commands.Trusted
      • -
      • com.intellectualcrafters.plot.commands.Unban
      • -
      • com.intellectualcrafters.plot.commands.Unlink
      • -
      • com.intellectualcrafters.plot.commands.Visit
      • -
      -
    • -
    -
  • -
-

Enum Hierarchy

-
    -
  • java.lang.Object -
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, - java.io.Serializable) - -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html b/PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html deleted file mode 100644 index ab7afc7b1..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/commands/plugin.html +++ /dev/null @@ -1,432 +0,0 @@ - - - - - - plugin - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.commands
-

Class plugin

-
-
- -
-
    -
  • -
    -
    -
    public class plugin
    -extends SubCommand
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      plugin()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanexecute(org.bukkit.entity.Player plr, - java.lang.String... args) - -
      Execute.
      -
      static voidsetup(org.bukkit.plugin.java.JavaPlugin plugin)  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        downloads

        -
        public static java.lang.String downloads
        -
      • -
      - - - -
        -
      • -

        version

        -
        public static java.lang.String version
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        plugin

        -
        public plugin()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setup

        -
        public static void setup(org.bukkit.plugin.java.JavaPlugin plugin)
        -
      • -
      - - - -
        -
      • -

        execute

        -
        public boolean execute(org.bukkit.entity.Player plr,
        -              java.lang.String... args)
        -
        Description copied from class: SubCommand -
        -
        Execute.
        -
        -
        Specified by:
        -
        execute in - class SubCommand -
        -
        Parameters:
        -
        plr - executor
        -
        args - arguments
        -
        Returns:
        -
        true on success, false on failure
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/C.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/C.html deleted file mode 100644 index 4817c58a5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/C.html +++ /dev/null @@ -1,2915 +0,0 @@ - - - - - - C - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.config
-

Enum C

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Enum<C>
    • -
    • -
        -
      • com.intellectualcrafters.plot.config.C
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable, java.lang.Comparable<C>
    -
    -
    -
    -
    public enum C
    -extends java.lang.Enum<C>
    -
    Captions class.
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Enum Constant Detail

      - - - -
        -
      • -

        RECORD_PLAY

        -
        public static final C RECORD_PLAY
        -
      • -
      - - - -
        -
      • -

        NOTIFY_ENTER

        -
        public static final C NOTIFY_ENTER
        -
      • -
      - - - -
        -
      • -

        NOTIFY_LEAVE

        -
        public static final C NOTIFY_LEAVE
        -
      • -
      - - - -
        -
      • -

        SWAP_SYNTAX

        -
        public static final C SWAP_SYNTAX
        -
      • -
      - - - -
        -
      • -

        SWAP_SUCCESS

        -
        public static final C SWAP_SUCCESS
        -
      • -
      - - - -
        -
      • -

        COMMENT_SYNTAX

        -
        public static final C COMMENT_SYNTAX
        -
      • -
      - - - -
        -
      • -

        INVALID_INBOX

        -
        public static final C INVALID_INBOX
        -
      • -
      - - - -
        -
      • -

        NO_PERM_INBOX

        -
        public static final C NO_PERM_INBOX
        -
      • -
      - - - -
        -
      • -

        COMMENT_REMOVED

        -
        public static final C COMMENT_REMOVED
        -
      • -
      - - - -
        -
      • -

        NOT_CONSOLE

        -
        public static final C NOT_CONSOLE
        -
      • -
      - - - -
        -
      • -

        IS_CONSOLE

        -
        public static final C IS_CONSOLE
        -
      • -
      - - - -
        -
      • -

        CLIPBOARD_SET

        -
        public static final C CLIPBOARD_SET
        -
      • -
      - - - -
        -
      • -

        PASTED

        -
        public static final C PASTED
        -
      • -
      - - - -
        -
      • -

        PASTE_FAILED

        -
        public static final C PASTE_FAILED
        -
      • -
      - - - -
        -
      • -

        NO_CLIPBOARD

        -
        public static final C NO_CLIPBOARD
        -
      • -
      - - - -
        -
      • -

        CLIPBOARD_INFO

        -
        public static final C CLIPBOARD_INFO
        -
      • -
      - - - -
        -
      • -

        RATING_NOT_VALID

        -
        public static final C RATING_NOT_VALID
        -
      • -
      - - - -
        -
      • -

        RATING_ALREADY_EXISTS

        -
        public static final C RATING_ALREADY_EXISTS
        -
      • -
      - - - -
        -
      • -

        RATING_APPLIED

        -
        public static final C RATING_APPLIED
        -
      • -
      - - - -
        -
      • -

        RATING_NOT_YOUR_OWN

        -
        public static final C RATING_NOT_YOUR_OWN
        -
      • -
      - - - -
        -
      • -

        RATING_NOT_OWNED

        -
        public static final C RATING_NOT_OWNED
        -
      • -
      - - - -
        -
      • -

        CANNOT_AFFORD_PLOT

        -
        public static final C CANNOT_AFFORD_PLOT
        -
      • -
      - - - -
        -
      • -

        CANNOT_AFFORD_MERGE

        -
        public static final C CANNOT_AFFORD_MERGE
        -
      • -
      - - - -
        -
      • -

        ADDED_BALANCE

        -
        public static final C ADDED_BALANCE
        -
      • -
      - - - -
        -
      • -

        REMOVED_BALANCE

        -
        public static final C REMOVED_BALANCE
        -
      • -
      - - - -
        -
      • -

        SETUP_INIT

        -
        public static final C SETUP_INIT
        -
      • -
      - - - -
        -
      • -

        SETUP_STEP

        -
        public static final C SETUP_STEP
        -
      • -
      - - - -
        -
      • -

        SETUP_INVALID_ARG

        -
        public static final C SETUP_INVALID_ARG
        -
      • -
      - - - -
        -
      • -

        SETUP_VALID_ARG

        -
        public static final C SETUP_VALID_ARG
        -
      • -
      - - - -
        -
      • -

        SETUP_FINISHED

        -
        public static final C SETUP_FINISHED
        -
      • -
      - - - -
        -
      • -

        SETUP_WORLD_TAKEN

        -
        public static final C SETUP_WORLD_TAKEN
        -
      • -
      - - - -
        -
      • -

        SETUP_MISSING_WORLD

        -
        public static final C SETUP_MISSING_WORLD
        -
      • -
      - - - -
        -
      • -

        SETUP_MISSING_GENERATOR

        -
        public static final C SETUP_MISSING_GENERATOR
        -
      • -
      - - - -
        -
      • -

        SETUP_INVALID_GENERATOR

        -
        public static final C SETUP_INVALID_GENERATOR
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_MISSING_ARG

        -
        public static final C SCHEMATIC_MISSING_ARG
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_INVALID

        -
        public static final C SCHEMATIC_INVALID
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_VALID

        -
        public static final C SCHEMATIC_VALID
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_PASTE_FAILED

        -
        public static final C SCHEMATIC_PASTE_FAILED
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_PASTE_SUCCESS

        -
        public static final C SCHEMATIC_PASTE_SUCCESS
        -
      • -
      - - - -
        -
      • -

        TITLE_ENTERED_PLOT

        -
        public static final C TITLE_ENTERED_PLOT
        -
      • -
      - - - -
        -
      • -

        TITLE_ENTERED_PLOT_COLOR

        -
        public static final C TITLE_ENTERED_PLOT_COLOR
        -
      • -
      - - - -
        -
      • -

        TITLE_ENTERED_PLOT_SUB

        -
        public static final C TITLE_ENTERED_PLOT_SUB
        -
      • -
      - - - -
        -
      • -

        TITLE_ENTERED_PLOT_SUB_COLOR

        -
        public static final C TITLE_ENTERED_PLOT_SUB_COLOR
        -
      • -
      - - - -
        -
      • -

        TITLE_LEFT_PLOT

        -
        public static final C TITLE_LEFT_PLOT
        -
      • -
      - - - -
        -
      • -

        TITLE_LEFT_PLOT_COLOR

        -
        public static final C TITLE_LEFT_PLOT_COLOR
        -
      • -
      - - - -
        -
      • -

        TITLE_LEFT_PLOT_SUB

        -
        public static final C TITLE_LEFT_PLOT_SUB
        -
      • -
      - - - -
        -
      • -

        TITLE_LEFT_PLOT_SUB_COLOR

        -
        public static final C TITLE_LEFT_PLOT_SUB_COLOR
        -
      • -
      - - - -
        -
      • -

        PREFIX

        -
        public static final C PREFIX
        -
      • -
      - - - -
        -
      • -

        ENABLED

        -
        public static final C ENABLED
        -
      • -
      - - - -
        -
      • -

        EXAMPLE_MESSAGE

        -
        public static final C EXAMPLE_MESSAGE
        -
      • -
      - - - -
        -
      • -

        RELOADED_CONFIGS

        -
        public static final C RELOADED_CONFIGS
        -
      • -
      - - - -
        -
      • -

        RELOAD_FAILED

        -
        public static final C RELOAD_FAILED
        -
      • -
      - - - -
        -
      • -

        BOSSBAR_CLEARING

        -
        public static final C BOSSBAR_CLEARING
        -
      • -
      - - - -
        -
      • -

        ALIAS_SET_TO

        -
        public static final C ALIAS_SET_TO
        -
      • -
      - - - -
        -
      • -

        MISSING_ALIAS

        -
        public static final C MISSING_ALIAS
        -
      • -
      - - - -
        -
      • -

        ALIAS_IS_TAKEN

        -
        public static final C ALIAS_IS_TAKEN
        -
      • -
      - - - -
        -
      • -

        MISSING_POSITION

        -
        public static final C MISSING_POSITION
        -
      • -
      - - - -
        -
      • -

        POSITION_SET

        -
        public static final C POSITION_SET
        -
      • -
      - - - -
        -
      • -

        INVALID_POSITION

        -
        public static final C INVALID_POSITION
        -
      • -
      - - - -
        -
      • -

        TIME_FORMAT

        -
        public static final C TIME_FORMAT
        -
      • -
      - - - -
        -
      • -

        NO_SCHEMATIC_PERMISSION

        -
        public static final C NO_SCHEMATIC_PERMISSION
        -
      • -
      - - - -
        -
      • -

        NO_PERMISSION

        -
        public static final C NO_PERMISSION
        -
      • -
      - - - -
        -
      • -

        NO_PLOT_PERMS

        -
        public static final C NO_PLOT_PERMS
        -
      • -
      - - - -
        -
      • -

        CANT_CLAIM_MORE_PLOTS

        -
        public static final C CANT_CLAIM_MORE_PLOTS
        -
      • -
      - - - -
        -
      • -

        YOU_BE_DENIED

        -
        public static final C YOU_BE_DENIED
        -
      • -
      - - - -
        -
      • -

        NO_PERM_MERGE

        -
        public static final C NO_PERM_MERGE
        -
      • -
      - - - -
        -
      • -

        UNLINK_REQUIRED

        -
        public static final C UNLINK_REQUIRED
        -
      • -
      - - - -
        -
      • -

        UNLINK_IMPOSSIBLE

        -
        public static final C UNLINK_IMPOSSIBLE
        -
      • -
      - - - -
        -
      • -

        NO_MERGE_TO_MEGA

        -
        public static final C NO_MERGE_TO_MEGA
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_SUBCOMMAND

        -
        public static final C NOT_VALID_SUBCOMMAND
        -
      • -
      - - - -
        -
      • -

        DID_YOU_MEAN

        -
        public static final C DID_YOU_MEAN
        -
      • -
      - - - -
        -
      • -

        NAME_LITTLE

        -
        public static final C NAME_LITTLE
        -
      • -
      - - - -
        -
      • -

        NO_COMMANDS

        -
        public static final C NO_COMMANDS
        -
      • -
      - - - -
        -
      • -

        SUBCOMMAND_SET_OPTIONS_HEADER

        -
        public static final C SUBCOMMAND_SET_OPTIONS_HEADER
        -
      • -
      - - - -
        -
      • -

        INVALID_PLAYER

        -
        public static final C INVALID_PLAYER
        -
      • -
      - - - -
        -
      • -

        COMMAND_WENT_WRONG

        -
        public static final C COMMAND_WENT_WRONG
        -
      • -
      - - - -
        -
      • -

        PURGE_SYNTAX

        -
        public static final C PURGE_SYNTAX
        -
      • -
      - - - -
        -
      • -

        PURGE_SUCCESS

        -
        public static final C PURGE_SUCCESS
        -
      • -
      - - - -
        -
      • -

        NOT_IN_PLOT

        -
        public static final C NOT_IN_PLOT
        -
      • -
      - - - -
        -
      • -

        NOT_IN_PLOT_WORLD

        -
        public static final C NOT_IN_PLOT_WORLD
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_WORLD

        -
        public static final C NOT_VALID_WORLD
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_PLOT_WORLD

        -
        public static final C NOT_VALID_PLOT_WORLD
        -
      • -
      - - - -
        -
      • -

        NO_PLOTS

        -
        public static final C NO_PLOTS
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_BLOCK_LIST_HEADER

        -
        public static final C NOT_VALID_BLOCK_LIST_HEADER
        -
      • -
      - - - -
        -
      • -

        BLOCK_LIST_ITEM

        -
        public static final C BLOCK_LIST_ITEM
        -
      • -
      - - - -
        -
      • -

        BLOCK_LIST_SEPARATER

        -
        public static final C BLOCK_LIST_SEPARATER
        -
      • -
      - - - -
        -
      • -

        NEED_BIOME

        -
        public static final C NEED_BIOME
        -
      • -
      - - - -
        -
      • -

        BIOME_SET_TO

        -
        public static final C BIOME_SET_TO
        -
      • -
      - - - -
        -
      • -

        TELEPORTED_TO_PLOT

        -
        public static final C TELEPORTED_TO_PLOT
        -
      • -
      - - - -
        -
      • -

        SET_BLOCK_ACTION_FINISHED

        -
        public static final C SET_BLOCK_ACTION_FINISHED
        -
      • -
      - - - -
        -
      • -

        DEUBG_HEADER

        -
        public static final C DEUBG_HEADER
        -
      • -
      - - - -
        -
      • -

        DEBUG_SECTION

        -
        public static final C DEBUG_SECTION
        -
      • -
      - - - -
        -
      • -

        DEBUG_LINE

        -
        public static final C DEBUG_LINE
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_DATA

        -
        public static final C NOT_VALID_DATA
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_BLOCK

        -
        public static final C NOT_VALID_BLOCK
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_NUMBER

        -
        public static final C NOT_VALID_NUMBER
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_PLOT_ID

        -
        public static final C NOT_VALID_PLOT_ID
        -
      • -
      - - - -
        -
      • -

        NOT_YOUR_PLOT

        -
        public static final C NOT_YOUR_PLOT
        -
      • -
      - - - -
        -
      • -

        NO_SUCH_PLOT

        -
        public static final C NO_SUCH_PLOT
        -
      • -
      - - - -
        -
      • -

        PLAYER_HAS_NOT_BEEN_ON

        -
        public static final C PLAYER_HAS_NOT_BEEN_ON
        -
      • -
      - - - -
        -
      • -

        FOUND_NO_PLOTS

        -
        public static final C FOUND_NO_PLOTS
        -
      • -
      - - - -
        -
      • -

        CAMERA_STARTED

        -
        public static final C CAMERA_STARTED
        -
      • -
      - - - -
        -
      • -

        CAMERA_STOPPED

        -
        public static final C CAMERA_STOPPED
        -
      • -
      - - - -
        -
      • -

        NEED_PLOT_NUMBER

        -
        public static final C NEED_PLOT_NUMBER
        -
      • -
      - - - -
        -
      • -

        NEED_BLOCK

        -
        public static final C NEED_BLOCK
        -
      • -
      - - - -
        -
      • -

        NEED_PLOT_ID

        -
        public static final C NEED_PLOT_ID
        -
      • -
      - - - -
        -
      • -

        NEED_USER

        -
        public static final C NEED_USER
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_UNCLAIMED

        -
        public static final C PLOT_INFO_UNCLAIMED
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO

        -
        public static final C PLOT_INFO
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_HELPERS

        -
        public static final C PLOT_INFO_HELPERS
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_TRUSTED

        -
        public static final C PLOT_INFO_TRUSTED
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_DENIED

        -
        public static final C PLOT_INFO_DENIED
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_FLAGS

        -
        public static final C PLOT_INFO_FLAGS
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_BIOME

        -
        public static final C PLOT_INFO_BIOME
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_RATING

        -
        public static final C PLOT_INFO_RATING
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_OWNER

        -
        public static final C PLOT_INFO_OWNER
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_ID

        -
        public static final C PLOT_INFO_ID
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_ALIAS

        -
        public static final C PLOT_INFO_ALIAS
        -
      • -
      - - - -
        -
      • -

        PLOT_INFO_SIZE

        -
        public static final C PLOT_INFO_SIZE
        -
      • -
      - - - -
        -
      • -

        PLOT_USER_LIST

        -
        public static final C PLOT_USER_LIST
        -
      • -
      - - - -
        -
      • -

        INFO_SYNTAX_CONSOLE

        -
        public static final C INFO_SYNTAX_CONSOLE
        -
      • -
      - - - -
        -
      • -

        GENERATING_FLOOR

        -
        public static final C GENERATING_FLOOR
        -
      • -
      - - - -
        -
      • -

        GENERATING_WALL

        -
        public static final C GENERATING_WALL
        -
      • -
      - - - -
        -
      • -

        GENERATING_WALL_FILLING

        -
        public static final C GENERATING_WALL_FILLING
        -
      • -
      - - - -
        -
      • -

        CLEARING_PLOT

        -
        public static final C CLEARING_PLOT
        -
      • -
      - - - -
        -
      • -

        CLEARING_DONE

        -
        public static final C CLEARING_DONE
        -
      • -
      - - - -
        -
      • -

        CLEARING_DONE_PACKETS

        -
        public static final C CLEARING_DONE_PACKETS
        -
      • -
      - - - -
        -
      • -

        PLOT_NOT_CLAIMED

        -
        public static final C PLOT_NOT_CLAIMED
        -
      • -
      - - - -
        -
      • -

        PLOT_IS_CLAIMED

        -
        public static final C PLOT_IS_CLAIMED
        -
      • -
      - - - -
        -
      • -

        CLAIMED

        -
        public static final C CLAIMED
        -
      • -
      - - - -
        -
      • -

        PLOT_LIST_HEADER_PAGED

        -
        public static final C PLOT_LIST_HEADER_PAGED
        -
      • -
      - - - -
        -
      • -

        PLOT_LIST_HEADER

        -
        public static final C PLOT_LIST_HEADER
        -
      • -
      - - - -
        -
      • -

        PLOT_LIST_ITEM

        -
        public static final C PLOT_LIST_ITEM
        -
      • -
      - - - -
        -
      • -

        PLOT_LIST_ITEM_ORDERED

        -
        public static final C PLOT_LIST_ITEM_ORDERED
        -
      • -
      - - - -
        -
      • -

        PLOT_LIST_FOOTER

        -
        public static final C PLOT_LIST_FOOTER
        -
      • -
      - - - -
        -
      • -

        LEFT_PLOT

        -
        public static final C LEFT_PLOT
        -
      • -
      - - - -
        -
      • -

        WAIT_FOR_TIMER

        -
        public static final C WAIT_FOR_TIMER
        -
      • -
      - - - -
        -
      • -

        PLOT_CHAT_FORMAT

        -
        public static final C PLOT_CHAT_FORMAT
        -
      • -
      - - - -
        -
      • -

        DENIED_REMOVED

        -
        public static final C DENIED_REMOVED
        -
      • -
      - - - -
        -
      • -

        DENIED_ADDED

        -
        public static final C DENIED_ADDED
        -
      • -
      - - - -
        -
      • -

        DENIED_NEED_ARGUMENT

        -
        public static final C DENIED_NEED_ARGUMENT
        -
      • -
      - - - -
        -
      • -

        WAS_NOT_DENIED

        -
        public static final C WAS_NOT_DENIED
        -
      • -
      - - - -
        -
      • -

        NEED_ON_OFF

        -
        public static final C NEED_ON_OFF
        -
      • -
      - - - -
        -
      • -

        SETTING_UPDATED

        -
        public static final C SETTING_UPDATED
        -
      • -
      - - - -
        -
      • -

        NEED_KEY

        -
        public static final C NEED_KEY
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_FLAG

        -
        public static final C NOT_VALID_FLAG
        -
      • -
      - - - -
        -
      • -

        NOT_VALID_VALUE

        -
        public static final C NOT_VALID_VALUE
        -
      • -
      - - - -
        -
      • -

        FLAG_NOT_IN_PLOT

        -
        public static final C FLAG_NOT_IN_PLOT
        -
      • -
      - - - -
        -
      • -

        FLAG_NOT_REMOVED

        -
        public static final C FLAG_NOT_REMOVED
        -
      • -
      - - - -
        -
      • -

        FLAG_NOT_ADDED

        -
        public static final C FLAG_NOT_ADDED
        -
      • -
      - - - -
        -
      • -

        FLAG_REMOVED

        -
        public static final C FLAG_REMOVED
        -
      • -
      - - - -
        -
      • -

        FLAG_ADDED

        -
        public static final C FLAG_ADDED
        -
      • -
      - - - -
        -
      • -

        HELPER_ADDED

        -
        public static final C HELPER_ADDED
        -
      • -
      - - - -
        -
      • -

        HELPER_REMOVED

        -
        public static final C HELPER_REMOVED
        -
      • -
      - - - -
        -
      • -

        HELPER_NEED_ARGUMENT

        -
        public static final C HELPER_NEED_ARGUMENT
        -
      • -
      - - - -
        -
      • -

        WAS_NOT_ADDED

        -
        public static final C WAS_NOT_ADDED
        -
      • -
      - - - -
        -
      • -

        ALREADY_OWNER

        -
        public static final C ALREADY_OWNER
        -
      • -
      - - - -
        -
      • -

        ALREADY_ADDED

        -
        public static final C ALREADY_ADDED
        -
      • -
      - - - -
        -
      • -

        TRUSTED_ADDED

        -
        public static final C TRUSTED_ADDED
        -
      • -
      - - - -
        -
      • -

        TRUSTED_REMOVED

        -
        public static final C TRUSTED_REMOVED
        -
      • -
      - - - -
        -
      • -

        TRUSTED_NEED_ARGUMENT

        -
        public static final C TRUSTED_NEED_ARGUMENT
        -
      • -
      - - - -
        -
      • -

        T_WAS_NOT_ADDED

        -
        public static final C T_WAS_NOT_ADDED
        -
      • -
      - - - -
        -
      • -

        SET_OWNER

        -
        public static final C SET_OWNER
        -
      • -
      - - - -
        -
      • -

        OWNER_SIGN_LINE_1

        -
        public static final C OWNER_SIGN_LINE_1
        -
      • -
      - - - -
        -
      • -

        OWNER_SIGN_LINE_2

        -
        public static final C OWNER_SIGN_LINE_2
        -
      • -
      - - - -
        -
      • -

        OWNER_SIGN_LINE_3

        -
        public static final C OWNER_SIGN_LINE_3
        -
      • -
      - - - -
        -
      • -

        OWNER_SIGN_LINE_4

        -
        public static final C OWNER_SIGN_LINE_4
        -
      • -
      - - - -
        -
      • -

        HELP_HEADER

        -
        public static final C HELP_HEADER
        -
      • -
      - - - -
        -
      • -

        HELP_CATEGORY

        -
        public static final C HELP_CATEGORY
        -
      • -
      - - - -
        -
      • -

        HELP_INFO

        -
        public static final C HELP_INFO
        -
      • -
      - - - -
        -
      • -

        HELP_INFO_ITEM

        -
        public static final C HELP_INFO_ITEM
        -
      • -
      - - - -
        -
      • -

        HELP_ITEM

        -
        public static final C HELP_ITEM
        -
      • -
      - - - -
        -
      • -

        DIRECTION

        -
        public static final C DIRECTION
        -
      • -
      - - - -
        -
      • -

        CUSTOM_STRING

        -
        public static final C CUSTOM_STRING
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static C[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (C c : C.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are declared
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static C valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant with the - specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        setupTranslations

        -
        public static void setupTranslations()
        -
      • -
      - - - -
        -
      • -

        saveTranslations

        -
        public static void saveTranslations()
        -
      • -
      - - - -
        -
      • -

        d

        -
        public java.lang.String d()
        -
        Get the default string
        -
        -
        Returns:
        -
        default
        -
        -
      • -
      - - - -
        -
      • -

        s

        -
        public java.lang.String s()
        -
        Get translated if exists
        -
        -
        Returns:
        -
        translated if exists else default
        -
        -
      • -
      - - - -
        -
      • -

        translated

        -
        public java.lang.String translated()
        -
        -
        Returns:
        -
        translated and color decoded
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html deleted file mode 100644 index c3049c1c1..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.SettingValue.html +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - Configuration.SettingValue - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.config
-

Class Configuration.SettingValue

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.config.Configuration.SettingValue
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    Configuration
    -
    -
    -
    -
    public abstract static class Configuration.SettingValue
    -extends java.lang.Object
    -
    Create your own SettingValue object to make the management of plotworld - configuration easier -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetType()  -
      java.lang.ObjectparseObject(java.lang.Object object)  -
      abstract java.lang.ObjectparseString(java.lang.String string)  -
      abstract booleanvalidateValue(java.lang.String string)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Configuration.SettingValue

        -
        public Configuration.SettingValue(java.lang.String type)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getType

        -
        public java.lang.String getType()
        -
      • -
      - - - -
        -
      • -

        parseObject

        -
        public java.lang.Object parseObject(java.lang.Object object)
        -
      • -
      - - - -
        -
      • -

        parseString

        -
        public abstract java.lang.Object parseString(java.lang.String string)
        -
      • -
      - - - -
        -
      • -

        validateValue

        -
        public abstract boolean validateValue(java.lang.String string)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html deleted file mode 100644 index 5937fc540..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/Configuration.html +++ /dev/null @@ -1,493 +0,0 @@ - - - - - - Configuration - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.config
-

Class Configuration

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.config.Configuration
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Configuration
    -extends java.lang.Object
    -
    Main Configuration Utility
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
- -
-
- -
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html deleted file mode 100644 index 755e773d8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/ConfigurationNode.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - - - ConfigurationNode - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.config
-

Class ConfigurationNode

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.config.ConfigurationNode
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ConfigurationNode
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      ConfigurationNode(java.lang.String constant, - java.lang.Object default_value, - java.lang.String description, - Configuration.SettingValue type, - boolean required) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetConstant()  -
      java.lang.ObjectgetDefaultValue()  -
      java.lang.StringgetDescription()  -
      Configuration.SettingValue - getType()  -
      java.lang.ObjectgetValue()  -
      booleanisValid(java.lang.String string)  -
      booleansetValue(java.lang.String string)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ConfigurationNode

        -
        public ConfigurationNode(java.lang.String constant,
        -                 java.lang.Object default_value,
        -                 java.lang.String description,
        -                 Configuration.SettingValue type,
        -                 boolean required)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - - - - - -
        -
      • -

        isValid

        -
        public boolean isValid(java.lang.String string)
        -
      • -
      - - - -
        -
      • -

        setValue

        -
        public boolean setValue(java.lang.String string)
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public java.lang.Object getValue()
        -
      • -
      - - - -
        -
      • -

        getConstant

        -
        public java.lang.String getConstant()
        -
      • -
      - - - -
        -
      • -

        getDefaultValue

        -
        public java.lang.Object getDefaultValue()
        -
      • -
      - - - -
        -
      • -

        getDescription

        -
        public java.lang.String getDescription()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html deleted file mode 100644 index b11935a76..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.DB.html +++ /dev/null @@ -1,454 +0,0 @@ - - - - - - Settings.DB - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.config
-

Class Settings.DB

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.config.Settings.DB
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    Settings
    -
    -
    -
    -
    public static class Settings.DB
    -extends java.lang.Object
    -
    Database settings
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringDATABASE - -
      MySQL DB
      -
      static java.lang.StringHOST_NAME - -
      MySQL Host name
      -
      static java.lang.StringPASSWORD - -
      MySQL Password
      -
      static java.lang.StringPORT - -
      MySQL Port
      -
      static java.lang.StringPREFIX - -
      MySQL Prefix
      -
      static java.lang.StringSQLITE_DB - -
      SQLite Database name
      -
      static booleanUSE_MONGO - -
      MongoDB enabled?
      -
      static booleanUSE_MYSQL - -
      MySQL Enabled?
      -
      static booleanUSE_SQLITE - -
      SQLite enabled?
      -
      static java.lang.StringUSER - -
      MySQL User
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Settings.DB()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        USE_MONGO

        -
        public static boolean USE_MONGO
        -
        MongoDB enabled?
        -
      • -
      - - - -
        -
      • -

        USE_SQLITE

        -
        public static boolean USE_SQLITE
        -
        SQLite enabled?
        -
      • -
      - - - -
        -
      • -

        USE_MYSQL

        -
        public static boolean USE_MYSQL
        -
        MySQL Enabled?
        -
      • -
      - - - -
        -
      • -

        SQLITE_DB

        -
        public static java.lang.String SQLITE_DB
        -
        SQLite Database name
        -
      • -
      - - - -
        -
      • -

        HOST_NAME

        -
        public static java.lang.String HOST_NAME
        -
        MySQL Host name
        -
      • -
      - - - -
        -
      • -

        PORT

        -
        public static java.lang.String PORT
        -
        MySQL Port
        -
      • -
      - - - -
        -
      • -

        DATABASE

        -
        public static java.lang.String DATABASE
        -
        MySQL DB
        -
      • -
      - - - -
        -
      • -

        USER

        -
        public static java.lang.String USER
        -
        MySQL User
        -
      • -
      - - - -
        -
      • -

        PASSWORD

        -
        public static java.lang.String PASSWORD
        -
        MySQL Password
        -
      • -
      - - - -
        -
      • -

        PREFIX

        -
        public static java.lang.String PREFIX
        -
        MySQL Prefix
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Settings.DB

        -
        public Settings.DB()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html deleted file mode 100644 index 2615235ed..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/Settings.html +++ /dev/null @@ -1,612 +0,0 @@ - - - - - - Settings - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.config
-

Class Settings

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.config.Settings
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Settings
    -extends java.lang.Object
    -
    Updater and DB settings
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      static class Settings.DB - -
      Database settings
      -
      -
    • -
    - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Settings()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        MOB_CAP_ENABLED

        -
        public static boolean MOB_CAP_ENABLED
        -
      • -
      - - - -
        -
      • -

        MOB_CAP

        -
        public static int MOB_CAP
        -
      • -
      - - - -
        -
      • -

        TITLES

        -
        public static boolean TITLES
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_SAVE_PATH

        -
        public static java.lang.String SCHEMATIC_SAVE_PATH
        -
        Schematic Save Path
        -
      • -
      - - - -
        -
      • -

        MAX_PLOTS

        -
        public static int MAX_PLOTS
        -
        Max allowed plots
        -
      • -
      - - - -
        -
      • -

        WORLDGUARD

        -
        public static boolean WORLDGUARD
        -
        WorldGuard region on claimed plots
        -
      • -
      - - - -
        -
      • -

        METRICS

        -
        public static boolean METRICS
        -
        metrics
        -
      • -
      - - - -
        -
      • -

        PLOT_SPECIFIC_RESOURCE_PACK

        -
        public static java.lang.String PLOT_SPECIFIC_RESOURCE_PACK
        -
        plot specific resource pack
        -
      • -
      - - - -
        -
      • -

        KILL_ROAD_MOBS

        -
        public static boolean KILL_ROAD_MOBS
        -
        Kill road mobs?
        -
      • -
      - - - -
        -
      • -

        KILL_ROAD_MOBS_DEFAULT

        -
        public static boolean KILL_ROAD_MOBS_DEFAULT
        -
        Default kill road mobs: true
        -
      • -
      - - - -
        -
      • -

        MOB_PATHFINDING

        -
        public static boolean MOB_PATHFINDING
        -
        mob pathfinding?
        -
      • -
      - - - -
        -
      • -

        MOB_PATHFINDING_DEFAULT

        -
        public static boolean MOB_PATHFINDING_DEFAULT
        -
        Default mob pathfinding: true
        -
      • -
      - - - -
        -
      • -

        DELETE_PLOTS_ON_BAN

        -
        public static boolean DELETE_PLOTS_ON_BAN
        -
        Delete plots on ban?
        -
      • -
      - - - -
        -
      • -

        DEBUG

        -
        public static boolean DEBUG
        -
        Verbose?
        -
      • -
      - - - -
        -
      • -

        AUTO_CLEAR

        -
        public static boolean AUTO_CLEAR
        -
        Auto clear enabled
        -
      • -
      - - - -
        -
      • -

        AUTO_CLEAR_DAYS

        -
        public static int AUTO_CLEAR_DAYS
        -
        Days until a plot gets cleared
        -
      • -
      - - - -
        -
      • -

        API_URL

        -
        public static java.lang.String API_URL
        -
        API Location
        -
      • -
      - - - -
        -
      • -

        CUSTOM_API

        -
        public static boolean CUSTOM_API
        -
        Use the custom API
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Settings

        -
        public Settings()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html deleted file mode 100644 index 1ff23d331..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - com.intellectualcrafters.plot.config - - - - -

com.intellectualcrafters.plot.config -

- -
-

Classes

- -

Enums

-
    -
  • C
  • -
-
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html deleted file mode 100644 index a21de4ddc..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-summary.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - com.intellectualcrafters.plot.config - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.config

-
-
-
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    Configuration -
    Main Configuration Utility
    -
    Configuration.SettingValue -
    Create your own SettingValue object to make the management of plotworld - configuration easier -
    -
    ConfigurationNode 
    Settings -
    Updater and DB settings
    -
    Settings.DB -
    Database settings
    -
    -
  • -
  • - - - - - - - - - - - - -
    Enum Summary 
    EnumDescription
    C -
    Captions class.
    -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html deleted file mode 100644 index e62c06b37..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/config/package-tree.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - com.intellectualcrafters.plot.config Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.config

- Package Hierarchies: - -
-
-

Class Hierarchy

- -

Enum Hierarchy

-
    -
  • java.lang.Object -
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, - java.io.Serializable) -
        -
      • com.intellectualcrafters.plot.config.C -
      • -
      -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html deleted file mode 100644 index 084e9ed98..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/AbstractDB.html +++ /dev/null @@ -1,959 +0,0 @@ - - - - - - AbstractDB - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Interface AbstractDB

-
-
-
-
    -
  • -
    -
    All Known Implementing Classes:
    -
    SQLManager
    -
    -
    -
    -
    public interface AbstractDB
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.util.UUIDeveryone - -
      The UUID that will count as everyone
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidcreateAllSettingsAndHelpers(java.util.ArrayList<Plot> plots) - -
      Create all settings, and create default helpers, trusted + denied lists
      -
      voidcreatePlot(Plot plot) - -
      Create a plot
      -
      voidcreatePlots(java.util.ArrayList<Plot> plots) - -
      Create a plot
      -
      voidcreatePlotSettings(int id, - Plot plot) - -
      Create plot settings
      -
      voidcreateTables(java.lang.String database, - boolean add_constraint) - -
      Create tables
      -
      voiddelete(java.lang.String world, - Plot plot) - -
      Delete a plot
      -
      java.util.ArrayList<PlotComment>getComments(java.lang.String world, - Plot plot, - int tier) - -
      Get Plot Comments
      -
      intgetId(java.lang.String world, - PlotId id2) - -
      Get the table entry ID
      -
      java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getPlots()  -
      doublegetRatings(Plot plot) - -
      Get Plots ratings
      -
      java.util.HashMap<java.lang.String,java.lang.Object>getSettings(int id)  -
      voidpurge(java.lang.String world) - -
      Purge a whole world
      -
      voidpurge(java.lang.String world, - PlotId id) - -
      Purgle a plot
      -
      voidremoveComment(java.lang.String world, - Plot plot, - PlotComment comment) - -
      Remove a plot comment
      -
      voidremoveDenied(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidremoveHelper(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidremoveTrusted(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidsetAlias(java.lang.String world, - Plot plot, - java.lang.String alias) - -
      Set the plot alias
      -
      voidsetComment(java.lang.String world, - Plot plot, - PlotComment comment) - -
      Set a plot comment
      -
      voidsetDenied(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidsetFlags(java.lang.String world, - Plot plot, - Flag[] flags) - -
      Set plot flags
      -
      voidsetHelper(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidsetMerged(java.lang.String world, - Plot plot, - boolean[] merged) - -
      Set the merged status for a plot
      -
      voidsetOwner(Plot plot, - java.util.UUID uuid) - -
      Set Plot owner
      -
      voidsetPosition(java.lang.String world, - Plot plot, - java.lang.String position) - -
      Set Plot Home Position
      -
      voidsetTrusted(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        everyone

        -
        static final java.util.UUID everyone
        -
        The UUID that will count as everyone
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setOwner

        -
        void setOwner(Plot plot,
        -            java.util.UUID uuid)
        -
        Set Plot owner
        -
        -
        Parameters:
        -
        plot - Plot in which the owner should be set
        -
        uuid - The uuid of the new owner
        -
        -
      • -
      - - - -
        -
      • -

        createAllSettingsAndHelpers

        -
        void createAllSettingsAndHelpers(java.util.ArrayList<Plot> plots)
        -
        Create all settings, and create default helpers, trusted + denied lists
        -
        -
        Parameters:
        -
        plots - Plots for which the default table entries should be created
        -
        -
      • -
      - - - -
        -
      • -

        createPlots

        -
        void createPlots(java.util.ArrayList<Plot> plots)
        -
        Create a plot
        -
        -
        Parameters:
        -
        plots - Plots that should be created
        -
        -
      • -
      - - - -
        -
      • -

        createPlot

        -
        void createPlot(Plot plot)
        -
        Create a plot
        -
        -
        Parameters:
        -
        plot - That should be created
        -
        -
      • -
      - - - -
        -
      • -

        createTables

        -
        void createTables(java.lang.String database,
        -                boolean add_constraint)
        -                  throws java.lang.Exception
        -
        Create tables
        -
        -
        Parameters:
        -
        database - Database in which the tables will be created
        -
        Throws:
        -
        java.sql.SQLException - If the database manager is unable to create the tables
        -
        java.lang.Exception
        -
        -
      • -
      - - - -
        -
      • -

        delete

        -
        void delete(java.lang.String world,
        -          Plot plot)
        -
        Delete a plot
        -
        -
        Parameters:
        -
        plot - Plot that should be deleted
        -
        -
      • -
      - - - -
        -
      • -

        createPlotSettings

        -
        void createPlotSettings(int id,
        -                      Plot plot)
        -
        Create plot settings
        -
        -
        Parameters:
        -
        id - Plot Entry ID
        -
        plot - Plot Object
        -
        -
      • -
      - - - -
        -
      • -

        getId

        -
        int getId(java.lang.String world,
        -        PlotId id2)
        -
        Get the table entry ID
        -
        -
        Parameters:
        -
        world - Which the plot is located in
        -
        id2 - Plot ID
        -
        Returns:
        -
        Integer = Plot Entry Id
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getPlots()
        -
        -
        Returns:
        -
        A linked hashmap containing all plots
        -
        -
      • -
      - - - -
        -
      • -

        setMerged

        -
        void setMerged(java.lang.String world,
        -             Plot plot,
        -             boolean[] merged)
        -
        Set the merged status for a plot
        -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        merged - boolean[]
        -
        -
      • -
      - - - -
        -
      • -

        setFlags

        -
        void setFlags(java.lang.String world,
        -            Plot plot,
        -            Flag[] flags)
        -
        Set plot flags
        -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        flags - flags to set (flag[])
        -
        -
      • -
      - - - -
        -
      • -

        setAlias

        -
        void setAlias(java.lang.String world,
        -            Plot plot,
        -            java.lang.String alias)
        -
        Set the plot alias
        -
        -
        Parameters:
        -
        plot - Plot for which the alias should be set
        -
        alias - Plot Alias
        -
        -
      • -
      - - - -
        -
      • -

        purge

        -
        void purge(java.lang.String world,
        -         PlotId id)
        -
        Purgle a plot
        -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        id - Plot ID
        -
        -
      • -
      - - - -
        -
      • -

        purge

        -
        void purge(java.lang.String world)
        -
        Purge a whole world
        -
        -
        Parameters:
        -
        world - World in which the plots should be purged
        -
        -
      • -
      - - - -
        -
      • -

        setPosition

        -
        void setPosition(java.lang.String world,
        -               Plot plot,
        -               java.lang.String position)
        -
        Set Plot Home Position
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        position - Plot Home Position
        -
        -
      • -
      - - - -
        -
      • -

        getSettings

        -
        java.util.HashMap<java.lang.String,java.lang.Object> getSettings(int id)
        -
        -
        Parameters:
        -
        id - Plot Entry ID
        -
        Returns:
        -
        Plot Settings
        -
        -
      • -
      - - - -
        -
      • -

        removeHelper

        -
        void removeHelper(java.lang.String world,
        -                Plot plot,
        -                org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        player - Player that should be removed
        -
        -
      • -
      - - - -
        -
      • -

        removeTrusted

        -
        void removeTrusted(java.lang.String world,
        -                 Plot plot,
        -                 org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        player - Player that should be removed
        -
        -
      • -
      - - - -
        -
      • -

        setHelper

        -
        void setHelper(java.lang.String world,
        -             Plot plot,
        -             org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        player - Player that should be removed
        -
        -
      • -
      - - - -
        -
      • -

        setTrusted

        -
        void setTrusted(java.lang.String world,
        -              Plot plot,
        -              org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        player - Player that should be added
        -
        -
      • -
      - - - -
        -
      • -

        removeDenied

        -
        void removeDenied(java.lang.String world,
        -                Plot plot,
        -                org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        player - Player that should be added
        -
        -
      • -
      - - - -
        -
      • -

        setDenied

        -
        void setDenied(java.lang.String world,
        -             Plot plot,
        -             org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        player - Player that should be added
        -
        -
      • -
      - - - -
        -
      • -

        getRatings

        -
        double getRatings(Plot plot)
        -
        Get Plots ratings
        -
        -
        Parameters:
        -
        plot - Plot Object
        -
        Returns:
        -
        Plot Ratings (pre-calculated)
        -
        -
      • -
      - - - -
        -
      • -

        removeComment

        -
        void removeComment(java.lang.String world,
        -                 Plot plot,
        -                 PlotComment comment)
        -
        Remove a plot comment
        -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        comment - Comment to remove
        -
        -
      • -
      - - - -
        -
      • -

        setComment

        -
        void setComment(java.lang.String world,
        -              Plot plot,
        -              PlotComment comment)
        -
        Set a plot comment
        -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        comment - Comment to add
        -
        -
      • -
      - - - -
        -
      • -

        getComments

        -
        java.util.ArrayList<PlotComment> getComments(java.lang.String world,
        -                                           Plot plot,
        -                                           int tier)
        -
        Get Plot Comments
        -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        tier - Comment Tier
        -
        Returns:
        -
        Plot Comments within the specified tier
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html deleted file mode 100644 index 15b2e3833..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/DBFunc.html +++ /dev/null @@ -1,932 +0,0 @@ - - - - - - DBFunc - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class DBFunc

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.DBFunc
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class DBFunc
    -extends java.lang.Object
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static AbstractDBdbManager  -
      static java.util.UUIDeveryone  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      DBFunc()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidcreateAllSettingsAndHelpers(java.util.ArrayList<Plot> plots) 
      static voidcreatePlot(Plot plot) - -
      Create a plot
      -
      static voidcreatePlots(java.util.ArrayList<Plot> plots) 
      static voidcreatePlotSettings(int id, - Plot plot) - -
      Create plot settings
      -
      static voidcreateTables(java.lang.String database, - boolean add_constraint) - -
      Create tables
      -
      static voiddelete(java.lang.String world, - Plot plot) - -
      Delete a plot
      -
      static java.util.ArrayList<PlotComment>getCommenst(java.lang.String world, - Plot plot, - int tier) 
      static intgetId(java.lang.String world, - PlotId id2) - -
      Get a plot id
      -
      static java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getPlots()  -
      static doublegetRatings(Plot plot) 
      static java.util.HashMap<java.lang.String,java.lang.Object>getSettings(int id)  -
      static voidpurge(java.lang.String world)  -
      static voidpurge(java.lang.String world, - PlotId id) 
      static voidremoveComment(java.lang.String world, - Plot plot, - PlotComment comment)  -
      static voidremoveDenied(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      static voidremoveHelper(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      static voidremoveTrusted(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      static voidsetAlias(java.lang.String world, - Plot plot, - java.lang.String alias) 
      static voidsetComment(java.lang.String world, - Plot plot, - PlotComment comment)  -
      static voidsetDenied(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      static voidsetFlags(java.lang.String world, - Plot plot, - Flag[] flags) 
      static voidsetHelper(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      static voidsetMerged(java.lang.String world, - Plot plot, - boolean[] merged) 
      static voidsetOwner(Plot plot, - java.util.UUID uuid) 
      static voidsetPosition(java.lang.String world, - Plot plot, - java.lang.String position) 
      static voidsetTrusted(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait -
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        dbManager

        -
        public static AbstractDB dbManager
        -
      • -
      - - - -
        -
      • -

        everyone

        -
        public static java.util.UUID everyone
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DBFunc

        -
        public DBFunc()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setOwner

        -
        public static void setOwner(Plot plot,
        -            java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        createAllSettingsAndHelpers

        -
        public static void createAllSettingsAndHelpers(java.util.ArrayList<Plot> plots)
        -
      • -
      - - - -
        -
      • -

        createPlots

        -
        public static void createPlots(java.util.ArrayList<Plot> plots)
        -
      • -
      - - - -
        -
      • -

        createPlot

        -
        public static void createPlot(Plot plot)
        -
        Create a plot
        -
        -
        Parameters:
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        createTables

        -
        public static void createTables(java.lang.String database,
        -                boolean add_constraint)
        -                         throws java.lang.Exception
        -
        Create tables
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      - - - -
        -
      • -

        delete

        -
        public static void delete(java.lang.String world,
        -          Plot plot)
        -
        Delete a plot
        -
        -
        Parameters:
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        createPlotSettings

        -
        public static void createPlotSettings(int id,
        -                      Plot plot)
        -
        Create plot settings
        -
        -
        Parameters:
        -
        id -
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        getId

        -
        public static int getId(java.lang.String world,
        -        PlotId id2)
        -
        Get a plot id
        -
        -
        Parameters:
        -
        plot_id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public static java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getPlots()
        -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        setMerged

        -
        public static void setMerged(java.lang.String world,
        -             Plot plot,
        -             boolean[] merged)
        -
      • -
      - - - -
        -
      • -

        setFlags

        -
        public static void setFlags(java.lang.String world,
        -            Plot plot,
        -            Flag[] flags)
        -
      • -
      - - - -
        -
      • -

        setAlias

        -
        public static void setAlias(java.lang.String world,
        -            Plot plot,
        -            java.lang.String alias)
        -
        -
        Parameters:
        -
        plot -
        -
        alias -
        -
        -
      • -
      - - - -
        -
      • -

        purge

        -
        public static void purge(java.lang.String world,
        -         PlotId id)
        -
      • -
      - - - -
        -
      • -

        purge

        -
        public static void purge(java.lang.String world)
        -
      • -
      - - - -
        -
      • -

        setPosition

        -
        public static void setPosition(java.lang.String world,
        -               Plot plot,
        -               java.lang.String position)
        -
        -
        Parameters:
        -
        plot -
        -
        position -
        -
        -
      • -
      - - - -
        -
      • -

        getSettings

        -
        public static java.util.HashMap<java.lang.String,java.lang.Object> getSettings(int id)
        -
        -
        Parameters:
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        removeComment

        -
        public static void removeComment(java.lang.String world,
        -                 Plot plot,
        -                 PlotComment comment)
        -
        -
        Parameters:
        -
        plot -
        -
        comment -
        -
        -
      • -
      - - - -
        -
      • -

        setComment

        -
        public static void setComment(java.lang.String world,
        -              Plot plot,
        -              PlotComment comment)
        -
        -
        Parameters:
        -
        plot -
        -
        comment -
        -
        -
      • -
      - - - -
        -
      • -

        getCommenst

        -
        public static java.util.ArrayList<PlotComment> getCommenst(java.lang.String world,
        -                                           Plot plot,
        -                                           int tier)
        -
        -
        Parameters:
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        removeHelper

        -
        public static void removeHelper(java.lang.String world,
        -                Plot plot,
        -                org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        removeTrusted

        -
        public static void removeTrusted(java.lang.String world,
        -                 Plot plot,
        -                 org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        setHelper

        -
        public static void setHelper(java.lang.String world,
        -             Plot plot,
        -             org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        setTrusted

        -
        public static void setTrusted(java.lang.String world,
        -              Plot plot,
        -              org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        removeDenied

        -
        public static void removeDenied(java.lang.String world,
        -                Plot plot,
        -                org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        setDenied

        -
        public static void setDenied(java.lang.String world,
        -             Plot plot,
        -             org.bukkit.OfflinePlayer player)
        -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        getRatings

        -
        public static double getRatings(Plot plot)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html deleted file mode 100644 index d14b892b9..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/Database.html +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - Database - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class Database

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.Database
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    MySQL, SQLite
    -
    -
    -
    -
    public abstract class Database
    -extends java.lang.Object
    -
    Abstract Database class, serves as a base for any connection method (MySQL, - SQLite, etc.) -
    -
    -
    Author:
    -
    -_Husky_-, tips48
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      protected org.bukkit.plugin.Pluginplugin - -
      Plugin instance, use for plugin.getDataFolder()
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - -
      Constructors 
      ModifierConstructor and Description
      protected Database(org.bukkit.plugin.Plugin plugin) - -
      Creates a new Database
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      abstract booleancheckConnection() - -
      Checks if a connection is open with the database
      -
      abstract booleancloseConnection() - -
      Closes the connection with the database
      -
      abstract java.sql.ConnectiongetConnection() - -
      Gets the connection with the database
      -
      abstract java.sql.ConnectionopenConnection() - -
      Opens a connection with the database
      -
      abstract java.sql.ResultSetquerySQL(java.lang.String query) - -
      Executes a SQL Query
      - If the connection is closed, it will be opened -
      -
      abstract intupdateSQL(java.lang.String query) - -
      Executes an Update SQL Query
      - See Statement.executeUpdate(String)
      - If the connection is closed, it will be opened -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        plugin

        -
        protected org.bukkit.plugin.Plugin plugin
        -
        Plugin instance, use for plugin.getDataFolder()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Database

        -
        protected Database(org.bukkit.plugin.Plugin plugin)
        -
        Creates a new Database
        -
        -
        Parameters:
        -
        plugin - Plugin instance
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        openConnection

        -
        public abstract java.sql.Connection openConnection()
        -                                            throws java.sql.SQLException,
        -                                                   java.lang.ClassNotFoundException
        -
        Opens a connection with the database
        -
        -
        Returns:
        -
        Opened connection
        -
        Throws:
        -
        java.sql.SQLException - if the connection can not be opened
        -
        java.lang.ClassNotFoundException - if the driver cannot be found
        -
        -
      • -
      - - - -
        -
      • -

        checkConnection

        -
        public abstract boolean checkConnection()
        -                                 throws java.sql.SQLException
        -
        Checks if a connection is open with the database
        -
        -
        Returns:
        -
        true if the connection is open
        -
        Throws:
        -
        java.sql.SQLException - if the connection cannot be checked
        -
        -
      • -
      - - - -
        -
      • -

        getConnection

        -
        public abstract java.sql.Connection getConnection()
        -
        Gets the connection with the database
        -
        -
        Returns:
        -
        Connection with the database, null if none
        -
        -
      • -
      - - - -
        -
      • -

        closeConnection

        -
        public abstract boolean closeConnection()
        -                                 throws java.sql.SQLException
        -
        Closes the connection with the database
        -
        -
        Returns:
        -
        true if successful
        -
        Throws:
        -
        java.sql.SQLException - if the connection cannot be closed
        -
        -
      • -
      - - - -
        -
      • -

        querySQL

        -
        public abstract java.sql.ResultSet querySQL(java.lang.String query)
        -                                     throws java.sql.SQLException,
        -                                            java.lang.ClassNotFoundException
        -
        Executes a SQL Query
        - If the connection is closed, it will be opened -
        -
        -
        Parameters:
        -
        query - Query to be run
        -
        Returns:
        -
        the results of the query
        -
        Throws:
        -
        java.sql.SQLException - If the query cannot be executed
        -
        java.lang.ClassNotFoundException - If the driver cannot be found; see - openConnection() -
        -
        -
      • -
      - - - -
        -
      • -

        updateSQL

        -
        public abstract int updateSQL(java.lang.String query)
        -                       throws java.sql.SQLException,
        -                              java.lang.ClassNotFoundException
        -
        Executes an Update SQL Query
        - See Statement.executeUpdate(String)
        - If the connection is closed, it will be opened -
        -
        -
        Parameters:
        -
        query - Query to be run
        -
        Returns:
        -
        Result Code, see Statement.executeUpdate(String)
        -
        Throws:
        -
        java.sql.SQLException - If the query cannot be executed
        -
        java.lang.ClassNotFoundException - If the driver cannot be found; see - openConnection() -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html deleted file mode 100644 index 3c1464f05..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/FlatFileManager.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - FlatFileManager - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class FlatFileManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.FlatFileManager
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class FlatFileManager
    -extends java.lang.Object
    -
    Created by Citymonstret on 2014-09-23.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      FlatFileManager()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        FlatFileManager

        -
        public FlatFileManager()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html deleted file mode 100644 index 98cb26841..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/MySQL.html +++ /dev/null @@ -1,546 +0,0 @@ - - - - - - MySQL - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class MySQL

-
-
- -
-
    -
  • -
    -
    -
    public class MySQL
    -extends Database
    -
    Connects to and uses a MySQL database
    -
    -
    Author:
    -
    -_Husky_-, tips48
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      -
        -
      • - - - -

        Fields inherited from class com.intellectualcrafters.plot.database.Database

        - plugin -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      MySQL(org.bukkit.plugin.Plugin plugin, - java.lang.String hostname, - java.lang.String port, - java.lang.String database, - java.lang.String username, - java.lang.String password) - -
      Creates a new MySQL instance
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleancheckConnection() - -
      Checks if a connection is open with the database
      -
      booleancloseConnection() - -
      Closes the connection with the database
      -
      java.sql.ConnectiongetConnection() - -
      Gets the connection with the database
      -
      java.sql.ConnectionopenConnection() - -
      Opens a connection with the database
      -
      java.sql.ResultSetquerySQL(java.lang.String query) - -
      Executes a SQL Query
      - If the connection is closed, it will be opened -
      -
      intupdateSQL(java.lang.String query) - -
      Executes an Update SQL Query
      - See Statement.executeUpdate(String)
      - If the connection is closed, it will be opened -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        MySQL

        -
        public MySQL(org.bukkit.plugin.Plugin plugin,
        -     java.lang.String hostname,
        -     java.lang.String port,
        -     java.lang.String database,
        -     java.lang.String username,
        -     java.lang.String password)
        -
        Creates a new MySQL instance
        -
        -
        Parameters:
        -
        plugin - Plugin instance
        -
        hostname - Name of the host
        -
        port - Port number
        -
        database - Database name
        -
        username - Username
        -
        password - Password
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        openConnection

        -
        public java.sql.Connection openConnection()
        -                                   throws java.sql.SQLException,
        -                                          java.lang.ClassNotFoundException
        -
        Description copied from class: Database -
        -
        Opens a connection with the database
        -
        -
        Specified by:
        -
        openConnection in - class Database -
        -
        Returns:
        -
        Opened connection
        -
        Throws:
        -
        java.sql.SQLException - if the connection can not be opened
        -
        java.lang.ClassNotFoundException - if the driver cannot be found
        -
        -
      • -
      - - - -
        -
      • -

        checkConnection

        -
        public boolean checkConnection()
        -                        throws java.sql.SQLException
        -
        Description copied from class: Database -
        -
        Checks if a connection is open with the database
        -
        -
        Specified by:
        -
        checkConnection in - class Database -
        -
        Returns:
        -
        true if the connection is open
        -
        Throws:
        -
        java.sql.SQLException - if the connection cannot be checked
        -
        -
      • -
      - - - -
        -
      • -

        getConnection

        -
        public java.sql.Connection getConnection()
        -
        Description copied from class: Database -
        -
        Gets the connection with the database
        -
        -
        Specified by:
        -
        getConnection in - class Database -
        -
        Returns:
        -
        Connection with the database, null if none
        -
        -
      • -
      - - - -
        -
      • -

        closeConnection

        -
        public boolean closeConnection()
        -                        throws java.sql.SQLException
        -
        Description copied from class: Database -
        -
        Closes the connection with the database
        -
        -
        Specified by:
        -
        closeConnection in - class Database -
        -
        Returns:
        -
        true if successful
        -
        Throws:
        -
        java.sql.SQLException - if the connection cannot be closed
        -
        -
      • -
      - - - -
        -
      • -

        querySQL

        -
        public java.sql.ResultSet querySQL(java.lang.String query)
        -                            throws java.sql.SQLException,
        -                                   java.lang.ClassNotFoundException
        -
        Description copied from class: Database -
        -
        Executes a SQL Query
        - If the connection is closed, it will be opened -
        -
        -
        Specified by:
        -
        querySQL in - class Database -
        -
        Parameters:
        -
        query - Query to be run
        -
        Returns:
        -
        the results of the query
        -
        Throws:
        -
        java.sql.SQLException - If the query cannot be executed
        -
        java.lang.ClassNotFoundException - If the driver cannot be found; see - Database.openConnection() -
        -
        -
      • -
      - - - -
        -
      • -

        updateSQL

        -
        public int updateSQL(java.lang.String query)
        -              throws java.sql.SQLException,
        -                     java.lang.ClassNotFoundException
        -
        Description copied from class: Database -
        -
        Executes an Update SQL Query
        - See Statement.executeUpdate(String)
        - If the connection is closed, it will be opened -
        -
        -
        Specified by:
        -
        updateSQL in - class Database -
        -
        Parameters:
        -
        query - Query to be run
        -
        Returns:
        -
        Result Code, see Statement.executeUpdate(String)
        -
        Throws:
        -
        java.sql.SQLException - If the query cannot be executed
        -
        java.lang.ClassNotFoundException - If the driver cannot be found; see - Database.openConnection() -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html deleted file mode 100644 index 98f32bd33..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/PlotMeConverter.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - PlotMeConverter - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class PlotMeConverter

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.PlotMeConverter
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotMeConverter
    -extends java.lang.Object
    -
    Created 2014-08-17 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotMeConverter(PlotMain plugin) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidrunAsync()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotMeConverter

        -
        public PlotMeConverter(PlotMain plugin)
        -
        Constructor
        -
        -
        Parameters:
        -
        plugin - Plugin Used to run the converter
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        runAsync

        -
        public void runAsync()
        -              throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html deleted file mode 100644 index aa69fe5e8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLManager.html +++ /dev/null @@ -1,1320 +0,0 @@ - - - - - - SQLManager - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class SQLManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.SQLManager
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    AbstractDB
    -
    -
    -
    -
    public class SQLManager
    -extends java.lang.Object
    -implements AbstractDB
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SQLManager(java.sql.Connection c, - java.lang.String p) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidcreateAllSettingsAndHelpers(java.util.ArrayList<Plot> plots) - -
      Create all settings, and create default helpers, trusted + denied lists
      -
      voidcreatePlot(Plot plot) - -
      Create a plot
      -
      voidcreatePlots(java.util.ArrayList<Plot> plots) - -
      Create a plot
      -
      voidcreatePlotSettings(int id, - Plot plot) - -
      Create plot settings
      -
      voidcreateTables(java.lang.String database, - boolean add_constraint) - -
      Create tables
      -
      voiddelete(java.lang.String world, - Plot plot) - -
      Delete a plot
      -
      java.util.ArrayList<PlotComment>getComments(java.lang.String world, - Plot plot, - int tier) - -
      Get Plot Comments
      -
      intgetId(java.lang.String world, - PlotId id2) - -
      Get the table entry ID
      -
      java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>>getPlots()  -
      doublegetRatings(Plot plot) - -
      Get Plots ratings
      -
      java.util.HashMap<java.lang.String,java.lang.Object>getSettings(int id)  -
      voidpurge(java.lang.String world) - -
      Purge a whole world
      -
      voidpurge(java.lang.String world, - PlotId id) - -
      Purgle a plot
      -
      voidremoveComment(java.lang.String world, - Plot plot, - PlotComment comment) - -
      Remove a plot comment
      -
      voidremoveDenied(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidremoveHelper(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidremoveTrusted(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidsetAlias(java.lang.String world, - Plot plot, - java.lang.String alias) - -
      Set the plot alias
      -
      voidsetComment(java.lang.String world, - Plot plot, - PlotComment comment) - -
      Set a plot comment
      -
      voidsetDenied(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidsetFlags(int id, - Flag[] flags) 
      voidsetFlags(java.lang.String world, - Plot plot, - Flag[] flags) - -
      Set plot flags
      -
      voidsetHelper(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      voidsetMerged(java.lang.String world, - Plot plot, - boolean[] merged) - -
      Set the merged status for a plot
      -
      voidsetOwner(Plot plot, - java.util.UUID uuid) - -
      Set Plot owner
      -
      voidsetPosition(java.lang.String world, - Plot plot, - java.lang.String position) - -
      Set Plot Home Position
      -
      voidsetTrusted(java.lang.String world, - Plot plot, - org.bukkit.OfflinePlayer player) 
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait -
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        SET_OWNER

        -
        public final java.lang.String SET_OWNER
        -
      • -
      - - - -
        -
      • -

        GET_ALL_PLOTS

        -
        public final java.lang.String GET_ALL_PLOTS
        -
      • -
      - - - -
        -
      • -

        CREATE_PLOTS

        -
        public final java.lang.String CREATE_PLOTS
        -
      • -
      - - - -
        -
      • -

        CREATE_SETTINGS

        -
        public final java.lang.String CREATE_SETTINGS
        -
      • -
      - - - -
        -
      • -

        CREATE_HELPERS

        -
        public final java.lang.String CREATE_HELPERS
        -
      • -
      - - - -
        -
      • -

        CREATE_PLOT

        -
        public final java.lang.String CREATE_PLOT
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SQLManager

        -
        public SQLManager(java.sql.Connection c,
        -          java.lang.String p)
        -
        Constructor
        -
        -
        Parameters:
        -
        c - connection
        -
        p - prefix
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setOwner

        -
        public void setOwner(Plot plot,
        -            java.util.UUID uuid)
        -
        Set Plot owner
        -
        -
        Specified by:
        -
        setOwner in - interface AbstractDB -
        -
        Parameters:
        -
        plot - Plot Object
        -
        uuid - Owner UUID
        -
        -
      • -
      - - - -
        -
      • -

        createAllSettingsAndHelpers

        -
        public void createAllSettingsAndHelpers(java.util.ArrayList<Plot> plots)
        -
        Description copied from interface: AbstractDB -
        -
        Create all settings, and create default helpers, trusted + denied lists
        -
        -
        Specified by:
        -
        createAllSettingsAndHelpers in - interface AbstractDB -
        -
        Parameters:
        -
        plots - Plots for which the default table entries should be created
        -
        -
      • -
      - - - -
        -
      • -

        createPlots

        -
        public void createPlots(java.util.ArrayList<Plot> plots)
        -
        Create a plot
        -
        -
        Specified by:
        -
        createPlots in - interface AbstractDB -
        -
        Parameters:
        -
        plots -
        -
        -
      • -
      - - - -
        -
      • -

        createPlot

        -
        public void createPlot(Plot plot)
        -
        Create a plot
        -
        -
        Specified by:
        -
        createPlot in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        createTables

        -
        public void createTables(java.lang.String database,
        -                boolean add_constraint)
        -                  throws java.sql.SQLException
        -
        Create tables
        -
        -
        Specified by:
        -
        createTables in - interface AbstractDB -
        -
        Parameters:
        -
        database - Database in which the tables will be created
        -
        Throws:
        -
        java.sql.SQLException
        -
        -
      • -
      - - - -
        -
      • -

        delete

        -
        public void delete(java.lang.String world,
        -          Plot plot)
        -
        Delete a plot
        -
        -
        Specified by:
        -
        delete in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        createPlotSettings

        -
        public void createPlotSettings(int id,
        -                      Plot plot)
        -
        Create plot settings
        -
        -
        Specified by:
        -
        createPlotSettings in - interface AbstractDB -
        -
        Parameters:
        -
        id -
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        getId

        -
        public int getId(java.lang.String world,
        -        PlotId id2)
        -
        Description copied from interface: AbstractDB -
        -
        Get the table entry ID
        -
        -
        Specified by:
        -
        getId in - interface AbstractDB -
        -
        Parameters:
        -
        world - Which the plot is located in
        -
        id2 - Plot ID
        -
        Returns:
        -
        Integer = Plot Entry Id
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public java.util.LinkedHashMap<java.lang.String,java.util.HashMap<PlotId,Plot>> getPlots()
        -
        -
        Specified by:
        -
        getPlots in - interface AbstractDB -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        setMerged

        -
        public void setMerged(java.lang.String world,
        -             Plot plot,
        -             boolean[] merged)
        -
        Description copied from interface: AbstractDB -
        -
        Set the merged status for a plot
        -
        -
        Specified by:
        -
        setMerged in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        merged - boolean[]
        -
        -
      • -
      - - - -
        -
      • -

        setFlags

        -
        public void setFlags(java.lang.String world,
        -            Plot plot,
        -            Flag[] flags)
        -
        Description copied from interface: AbstractDB -
        -
        Set plot flags
        -
        -
        Specified by:
        -
        setFlags in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        flags - flags to set (flag[])
        -
        -
      • -
      - - - -
        -
      • -

        setFlags

        -
        public void setFlags(int id,
        -            Flag[] flags)
        -
      • -
      - - - -
        -
      • -

        setAlias

        -
        public void setAlias(java.lang.String world,
        -            Plot plot,
        -            java.lang.String alias)
        -
        Description copied from interface: AbstractDB -
        -
        Set the plot alias
        -
        -
        Specified by:
        -
        setAlias in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        alias -
        -
        -
      • -
      - - - -
        -
      • -

        purge

        -
        public void purge(java.lang.String world,
        -         PlotId id)
        -
        Description copied from interface: AbstractDB -
        -
        Purgle a plot
        -
        -
        Specified by:
        -
        purge in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        id - Plot ID
        -
        -
      • -
      - - - -
        -
      • -

        purge

        -
        public void purge(java.lang.String world)
        -
        Description copied from interface: AbstractDB -
        -
        Purge a whole world
        -
        -
        Specified by:
        -
        purge in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plots should be purged
        -
        -
      • -
      - - - -
        -
      • -

        setPosition

        -
        public void setPosition(java.lang.String world,
        -               Plot plot,
        -               java.lang.String position)
        -
        Description copied from interface: AbstractDB -
        -
        Set Plot Home Position
        -
        -
        Specified by:
        -
        setPosition in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        position -
        -
        -
      • -
      - - - -
        -
      • -

        getSettings

        -
        public java.util.HashMap<java.lang.String,java.lang.Object> getSettings(int id)
        -
        -
        Specified by:
        -
        getSettings in - interface AbstractDB -
        -
        Parameters:
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        removeComment

        -
        public void removeComment(java.lang.String world,
        -                 Plot plot,
        -                 PlotComment comment)
        -
        Description copied from interface: AbstractDB -
        -
        Remove a plot comment
        -
        -
        Specified by:
        -
        removeComment in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        comment - Comment to remove
        -
        -
      • -
      - - - -
        -
      • -

        getComments

        -
        public java.util.ArrayList<PlotComment> getComments(java.lang.String world,
        -                                           Plot plot,
        -                                           int tier)
        -
        Description copied from interface: AbstractDB -
        -
        Get Plot Comments
        -
        -
        Specified by:
        -
        getComments in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        tier - Comment Tier
        -
        Returns:
        -
        Plot Comments within the specified tier
        -
        -
      • -
      - - - -
        -
      • -

        setComment

        -
        public void setComment(java.lang.String world,
        -              Plot plot,
        -              PlotComment comment)
        -
        Description copied from interface: AbstractDB -
        -
        Set a plot comment
        -
        -
        Specified by:
        -
        setComment in - interface AbstractDB -
        -
        Parameters:
        -
        world - World in which the plot is located
        -
        plot - Plot Object
        -
        comment - Comment to add
        -
        -
      • -
      - - - -
        -
      • -

        removeHelper

        -
        public void removeHelper(java.lang.String world,
        -                Plot plot,
        -                org.bukkit.OfflinePlayer player)
        -
        -
        Specified by:
        -
        removeHelper in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        removeTrusted

        -
        public void removeTrusted(java.lang.String world,
        -                 Plot plot,
        -                 org.bukkit.OfflinePlayer player)
        -
        -
        Specified by:
        -
        removeTrusted in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        setHelper

        -
        public void setHelper(java.lang.String world,
        -             Plot plot,
        -             org.bukkit.OfflinePlayer player)
        -
        -
        Specified by:
        -
        setHelper in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        setTrusted

        -
        public void setTrusted(java.lang.String world,
        -              Plot plot,
        -              org.bukkit.OfflinePlayer player)
        -
        -
        Specified by:
        -
        setTrusted in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        removeDenied

        -
        public void removeDenied(java.lang.String world,
        -                Plot plot,
        -                org.bukkit.OfflinePlayer player)
        -
        -
        Specified by:
        -
        removeDenied in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        setDenied

        -
        public void setDenied(java.lang.String world,
        -             Plot plot,
        -             org.bukkit.OfflinePlayer player)
        -
        -
        Specified by:
        -
        setDenied in - interface AbstractDB -
        -
        Parameters:
        -
        plot -
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        getRatings

        -
        public double getRatings(Plot plot)
        -
        Description copied from interface: AbstractDB -
        -
        Get Plots ratings
        -
        -
        Specified by:
        -
        getRatings in - interface AbstractDB -
        -
        Parameters:
        -
        plot - Plot Object
        -
        Returns:
        -
        Plot Ratings (pre-calculated)
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html deleted file mode 100644 index 3fdb5335a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/SQLite.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - - - SQLite - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database
-

Class SQLite

-
-
- -
-
    -
  • -
    -
    -
    public class SQLite
    -extends Database
    -
    Connects to and uses a SQLite database
    -
    -
    Author:
    -
    Citymonstret, tips48
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      -
        -
      • - - - -

        Fields inherited from class com.intellectualcrafters.plot.database.Database

        - plugin -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SQLite(org.bukkit.plugin.Plugin plugin, - java.lang.String dbLocation) - -
      Creates a new SQLite instance
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleancheckConnection() - -
      Checks if a connection is open with the database
      -
      booleancloseConnection() - -
      Closes the connection with the database
      -
      java.sql.ConnectiongetConnection() - -
      Gets the connection with the database
      -
      java.sql.ConnectionopenConnection() - -
      Opens a connection with the database
      -
      java.sql.ResultSetquerySQL(java.lang.String query) - -
      Executes a SQL Query
      - If the connection is closed, it will be opened -
      -
      intupdateSQL(java.lang.String query) - -
      Executes an Update SQL Query
      - See Statement.executeUpdate(String)
      - If the connection is closed, it will be opened -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SQLite

        -
        public SQLite(org.bukkit.plugin.Plugin plugin,
        -      java.lang.String dbLocation)
        -
        Creates a new SQLite instance
        -
        -
        Parameters:
        -
        plugin - Plugin instance
        -
        dbLocation - Location of the Database (Must end in .db)
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        openConnection

        -
        public java.sql.Connection openConnection()
        -                                   throws java.sql.SQLException,
        -                                          java.lang.ClassNotFoundException
        -
        Description copied from class: Database -
        -
        Opens a connection with the database
        -
        -
        Specified by:
        -
        openConnection in - class Database -
        -
        Returns:
        -
        Opened connection
        -
        Throws:
        -
        java.sql.SQLException - if the connection can not be opened
        -
        java.lang.ClassNotFoundException - if the driver cannot be found
        -
        -
      • -
      - - - -
        -
      • -

        checkConnection

        -
        public boolean checkConnection()
        -                        throws java.sql.SQLException
        -
        Description copied from class: Database -
        -
        Checks if a connection is open with the database
        -
        -
        Specified by:
        -
        checkConnection in - class Database -
        -
        Returns:
        -
        true if the connection is open
        -
        Throws:
        -
        java.sql.SQLException - if the connection cannot be checked
        -
        -
      • -
      - - - -
        -
      • -

        getConnection

        -
        public java.sql.Connection getConnection()
        -
        Description copied from class: Database -
        -
        Gets the connection with the database
        -
        -
        Specified by:
        -
        getConnection in - class Database -
        -
        Returns:
        -
        Connection with the database, null if none
        -
        -
      • -
      - - - -
        -
      • -

        closeConnection

        -
        public boolean closeConnection()
        -                        throws java.sql.SQLException
        -
        Description copied from class: Database -
        -
        Closes the connection with the database
        -
        -
        Specified by:
        -
        closeConnection in - class Database -
        -
        Returns:
        -
        true if successful
        -
        Throws:
        -
        java.sql.SQLException - if the connection cannot be closed
        -
        -
      • -
      - - - -
        -
      • -

        querySQL

        -
        public java.sql.ResultSet querySQL(java.lang.String query)
        -                            throws java.sql.SQLException,
        -                                   java.lang.ClassNotFoundException
        -
        Description copied from class: Database -
        -
        Executes a SQL Query
        - If the connection is closed, it will be opened -
        -
        -
        Specified by:
        -
        querySQL in - class Database -
        -
        Parameters:
        -
        query - Query to be run
        -
        Returns:
        -
        the results of the query
        -
        Throws:
        -
        java.sql.SQLException - If the query cannot be executed
        -
        java.lang.ClassNotFoundException - If the driver cannot be found; see - Database.openConnection() -
        -
        -
      • -
      - - - -
        -
      • -

        updateSQL

        -
        public int updateSQL(java.lang.String query)
        -              throws java.sql.SQLException,
        -                     java.lang.ClassNotFoundException
        -
        Description copied from class: Database -
        -
        Executes an Update SQL Query
        - See Statement.executeUpdate(String)
        - If the connection is closed, it will be opened -
        -
        -
        Specified by:
        -
        updateSQL in - class Database -
        -
        Parameters:
        -
        query - Query to be run
        -
        Returns:
        -
        Result Code, see Statement.executeUpdate(String)
        -
        Throws:
        -
        java.sql.SQLException - If the query cannot be executed
        -
        java.lang.ClassNotFoundException - If the driver cannot be found; see - Database.openConnection() -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html deleted file mode 100644 index bbecbb306..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-frame.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - com.intellectualcrafters.plot.database - - - - -

com.intellectualcrafters.plot.database -

- -
-

Interfaces

- -

Classes

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html deleted file mode 100644 index 5befad407..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-summary.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - com.intellectualcrafters.plot.database - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.database

-
-
-
    -
  • - - - - - - - - - - - - -
    Interface Summary 
    InterfaceDescription
    AbstractDB -  
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    Database -
    Abstract Database class, serves as a base for any connection method (MySQL, - SQLite, etc.) -
    -
    DBFunc 
    FlatFileManager -
    Created by Citymonstret on 2014-09-23.
    -
    MySQL -
    Connects to and uses a MySQL database
    -
    PlotMeConverter -
    Created 2014-08-17 for PlotSquared
    -
    SQLite -
    Connects to and uses a SQLite database
    -
    SQLManager 
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html deleted file mode 100644 index 4973f546c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/package-tree.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - com.intellectualcrafters.plot.database Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.database

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.database.Database -
        -
      • com.intellectualcrafters.plot.database.MySQL
      • -
      • com.intellectualcrafters.plot.database.SQLite
      • -
      -
    • -
    • com.intellectualcrafters.plot.database.DBFunc -
    • -
    • com.intellectualcrafters.plot.database.FlatFileManager
    • -
    • com.intellectualcrafters.plot.database.PlotMeConverter
    • -
    • com.intellectualcrafters.plot.database.SQLManager (implements com.intellectualcrafters.plot.database.AbstractDB) -
    • -
    -
  • -
-

Interface Hierarchy

-
    -
  • com.intellectualcrafters.plot.database.AbstractDB -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html deleted file mode 100644 index 4633b4db2..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/PlotTable.html +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - PlotTable - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database.sqlobjects
-

Class PlotTable

-
-
- -
-
    -
  • -
    -
    -
    public class PlotTable
    -extends SQLTable
    -
    Created by Citymonstret on 2014-10-28.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotTable()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidcreate()  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotTable

        -
        public PlotTable()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        create

        -
        public void create()
        -
        -
        Specified by:
        -
        create in - class SQLTable -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html deleted file mode 100644 index 579c1469a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLField.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - SQLField - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database.sqlobjects
-

Class SQLField

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.sqlobjects.SQLField
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class SQLField
    -extends java.lang.Object
    -
    Created by Citymonstret on 2014-10-28.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SQLField(SQLType type, - java.lang.Object value) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      SQLType - getType()  -
      java.lang.ObjectgetValue()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SQLField

        -
        public SQLField(SQLType type,
        -        java.lang.Object value)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getType

        -
        public SQLType getType()
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public java.lang.Object getValue()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html deleted file mode 100644 index 1aebaa7d3..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLTable.html +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - SQLTable - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database.sqlobjects
-

Class SQLTable

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.database.sqlobjects.SQLTable
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    PlotTable
    -
    -
    -
    -
    public abstract class SQLTable
    -extends java.lang.Object
    -
    Created by Citymonstret on 2014-10-28.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SQLTable(java.lang.String name, - java.lang.String primaryKey, - SQLField... fields)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      abstract voidcreate()  -
      SQLField[] - getFields()  -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SQLTable

        -
        public SQLTable(java.lang.String name,
        -        java.lang.String primaryKey,
        -        SQLField... fields)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        getFields

        -
        public SQLField[] getFields()
        -
      • -
      - - - -
        -
      • -

        create

        -
        public abstract void create()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html deleted file mode 100644 index 2cc890c38..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/SQLType.html +++ /dev/null @@ -1,457 +0,0 @@ - - - - - - SQLType - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.database.sqlobjects
-

Enum SQLType

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Enum<SQLType>
    • -
    • -
        -
      • com.intellectualcrafters.plot.database.sqlobjects.SQLType
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable, java.lang.Comparable<SQLType>
    -
    -
    -
    -
    public enum SQLType
    -extends java.lang.Enum<SQLType>
    -
    Created by Citymonstret on 2014-10-28.
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Enum Constant Summary

      - - - - - - - - - - - - - - -
      Enum Constants 
      Enum Constant and Description
      BOOL  -
      INTEGER  -
      VARCHAR  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.ObjectgetDefaultValue()  -
      java.lang.ClassgetJavaClass()  -
      intgetLength()  -
      java.lang.StringtoString()  -
      static SQLType - valueOf(java.lang.String name) - -
      Returns the enum constant of this type with the specified name.
      -
      static SQLType[] - values() - -
      Returns an array containing the constants of this enum type, in - the order they are declared. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Enum

        - clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, - valueOf
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Enum Constant Detail

      - - - -
        -
      • -

        INTEGER

        -
        public static final SQLType INTEGER
        -
      • -
      - - - -
        -
      • -

        VARCHAR

        -
        public static final SQLType VARCHAR
        -
      • -
      - - - -
        -
      • -

        BOOL

        -
        public static final SQLType BOOL
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static SQLType[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (SQLType c : SQLType.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are - declared -
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static SQLType valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant - with the specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        getLength

        -
        public int getLength()
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Enum<SQLType> -
        -
        -
      • -
      - - - -
        -
      • -

        getJavaClass

        -
        public java.lang.Class getJavaClass()
        -
      • -
      - - - -
        -
      • -

        getDefaultValue

        -
        public java.lang.Object getDefaultValue()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html deleted file mode 100644 index 2a64f8d08..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-frame.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - com.intellectualcrafters.plot.database.sqlobjects - - - - -

com.intellectualcrafters.plot.database.sqlobjects

- -
-

Classes

- -

Enums

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html deleted file mode 100644 index 4bf28db50..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-summary.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - com.intellectualcrafters.plot.database.sqlobjects - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.database.sqlobjects

-
-
-
    -
  • - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    PlotTable -
    Created by Citymonstret on 2014-10-28.
    -
    SQLField -
    Created by Citymonstret on 2014-10-28.
    -
    SQLTable -
    Created by Citymonstret on 2014-10-28.
    -
    -
  • -
  • - - - - - - - - - - - - -
    Enum Summary 
    EnumDescription
    SQLType -
    Created by Citymonstret on 2014-10-28.
    -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html deleted file mode 100644 index 2eaf14d82..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/database/sqlobjects/package-tree.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - com.intellectualcrafters.plot.database.sqlobjects Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.database.sqlobjects

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.database.sqlobjects.SQLField
    • -
    • com.intellectualcrafters.plot.database.sqlobjects.SQLTable -
        -
      • com.intellectualcrafters.plot.database.sqlobjects.PlotTable -
      • -
      -
    • -
    -
  • -
-

Enum Hierarchy

-
    -
  • java.lang.Object -
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, - java.io.Serializable) -
        -
      • com.intellectualcrafters.plot.database.sqlobjects.SQLType -
      • -
      -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html deleted file mode 100644 index 70a5af797..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerClaimPlotEvent.html +++ /dev/null @@ -1,457 +0,0 @@ - - - - - - PlayerClaimPlotEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerClaimPlotEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • org.bukkit.event.player.PlayerEvent
      • -
      • -
          -
        • com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlayerClaimPlotEvent
    -extends org.bukkit.event.player.PlayerEvent
    -implements org.bukkit.event.Cancellable
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Field Summary

      -
        -
      • - - - -

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        - player
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerClaimPlotEvent(org.bukkit.entity.Player player, - Plot plot, - boolean auto) - -
      PlayerClaimPlotEvent: Called when a plot is claimed
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the plot involved
      -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      booleanwasAuto()  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        - getPlayer
      • -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerClaimPlotEvent

        -
        public PlayerClaimPlotEvent(org.bukkit.entity.Player player,
        -                    Plot plot,
        -                    boolean auto)
        -
        PlayerClaimPlotEvent: Called when a plot is claimed
        -
        -
        Parameters:
        -
        player - Player that claimed the plot
        -
        plot - Plot that was claimed
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        wasAuto

        -
        public boolean wasAuto()
        -
        -
        Returns:
        -
        true if it was an automated claim, else false
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html deleted file mode 100644 index 1cba26322..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerEnterPlotEvent.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - PlayerEnterPlotEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerEnterPlotEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • org.bukkit.event.player.PlayerEvent
      • -
      • -
          -
        • com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlayerEnterPlotEvent
    -extends org.bukkit.event.player.PlayerEvent
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Field Summary

      -
        -
      • - - - -

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        - player
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerEnterPlotEvent(org.bukkit.entity.Player player, - Plot plot) - -
      PlayerEnterPlotEvent: Called when a player leaves a plot
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the plot involved
      -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        - getPlayer
      • -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerEnterPlotEvent

        -
        public PlayerEnterPlotEvent(org.bukkit.entity.Player player,
        -                    Plot plot)
        -
        PlayerEnterPlotEvent: Called when a player leaves a plot
        -
        -
        Parameters:
        -
        player - Player that entered the plot
        -
        plot - Plot that was entered
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html deleted file mode 100644 index e0d4260f8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerLeavePlotEvent.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - PlayerLeavePlotEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerLeavePlotEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • org.bukkit.event.player.PlayerEvent
      • -
      • -
          -
        • com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlayerLeavePlotEvent
    -extends org.bukkit.event.player.PlayerEvent
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Field Summary

      -
        -
      • - - - -

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        - player
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerLeavePlotEvent(org.bukkit.entity.Player player, - Plot plot) - -
      PlayerLeavePlotEvent: Called when a player leaves a plot
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the plot involved
      -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        - getPlayer
      • -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerLeavePlotEvent

        -
        public PlayerLeavePlotEvent(org.bukkit.entity.Player player,
        -                    Plot plot)
        -
        PlayerLeavePlotEvent: Called when a player leaves a plot
        -
        -
        Parameters:
        -
        player - Player that left the plot
        -
        plot - Plot that was left
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html deleted file mode 100644 index 73f29ca73..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotDeniedEvent.html +++ /dev/null @@ -1,439 +0,0 @@ - - - - - - PlayerPlotDeniedEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerPlotDeniedEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlayerPlotDeniedEvent
    -extends org.bukkit.event.Event
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerPlotDeniedEvent(org.bukkit.entity.Player initiator, - Plot plot, - java.util.UUID player, - boolean added) - -
      PlayerPlotDeniedEvent: Called when the denied UUID list is modified - for a - plot -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      org.bukkit.entity.PlayergetInitiator() - -
      The player initiating the action
      -
      java.util.UUIDgetPlayer() - -
      The player added/removed
      -
      PlotgetPlot() - -
      The plot involved
      -
      booleanwasAdded() - -
      If a user was added
      -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerPlotDeniedEvent

        -
        public PlayerPlotDeniedEvent(org.bukkit.entity.Player initiator,
        -                     Plot plot,
        -                     java.util.UUID player,
        -                     boolean added)
        -
        PlayerPlotDeniedEvent: Called when the denied UUID list is modified for a - plot -
        -
        -
        Parameters:
        -
        initiator - Player that initiated the event
        -
        plot - Plot in which the event occurred
        -
        player - Player that was denied/un-denied
        -
        added - true of add to deny list, false if removed
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        wasAdded

        -
        public boolean wasAdded()
        -
        If a user was added
        -
        -
        Returns:
        -
        boolean
        -
        -
      • -
      - - - -
        -
      • -

        getPlayer

        -
        public java.util.UUID getPlayer()
        -
        The player added/removed
        -
        -
        Returns:
        -
        UUID
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        The plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getInitiator

        -
        public org.bukkit.entity.Player getInitiator()
        -
        The player initiating the action
        -
        -
        Returns:
        -
        Player
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html deleted file mode 100644 index 9206bd48a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotHelperEvent.html +++ /dev/null @@ -1,436 +0,0 @@ - - - - - - PlayerPlotHelperEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerPlotHelperEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlayerPlotHelperEvent
    -extends org.bukkit.event.Event
    -
    -
    Author:
    -
    Empire92, Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerPlotHelperEvent(org.bukkit.entity.Player initiator, - Plot plot, - java.util.UUID player, - boolean added) - -
      PlayerPlotHelperEvent: Called when a plot helper is added/removed -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      org.bukkit.entity.PlayergetInitiator() - -
      The player initiating the action
      -
      java.util.UUIDgetPlayer() - -
      The UUID added/removed
      -
      PlotgetPlot() - -
      The plot involved
      -
      booleanwasAdded() - -
      If a player was added
      -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerPlotHelperEvent

        -
        public PlayerPlotHelperEvent(org.bukkit.entity.Player initiator,
        -                     Plot plot,
        -                     java.util.UUID player,
        -                     boolean added)
        -
        PlayerPlotHelperEvent: Called when a plot helper is added/removed
        -
        -
        Parameters:
        -
        initiator - Player that initiated the event
        -
        plot - Plot in which the event occurred
        -
        player - Player that was added/removed from the helper list
        -
        added - true of the player was added, false if the player was removed -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        wasAdded

        -
        public boolean wasAdded()
        -
        If a player was added
        -
        -
        Returns:
        -
        boolean
        -
        -
      • -
      - - - -
        -
      • -

        getPlayer

        -
        public java.util.UUID getPlayer()
        -
        The UUID added/removed
        -
        -
        Returns:
        -
        UUID
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        The plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getInitiator

        -
        public org.bukkit.entity.Player getInitiator()
        -
        The player initiating the action
        -
        -
        Returns:
        -
        Player
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html deleted file mode 100644 index 1e6ff4967..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerPlotTrustedEvent.html +++ /dev/null @@ -1,439 +0,0 @@ - - - - - - PlayerPlotTrustedEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerPlotTrustedEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlayerPlotTrustedEvent
    -extends org.bukkit.event.Event
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerPlotTrustedEvent(org.bukkit.entity.Player initiator, - Plot plot, - java.util.UUID player, - boolean added) - -
      PlayerPlotTrustedEvent: Called when a plot trusted user is - added/removed -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      org.bukkit.entity.PlayergetInitiator() - -
      The player initiating the action
      -
      java.util.UUIDgetPlayer() - -
      The UUID added/removed
      -
      PlotgetPlot() - -
      The plot involved
      -
      booleanwasAdded() - -
      If a player was added
      -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerPlotTrustedEvent

        -
        public PlayerPlotTrustedEvent(org.bukkit.entity.Player initiator,
        -                      Plot plot,
        -                      java.util.UUID player,
        -                      boolean added)
        -
        PlayerPlotTrustedEvent: Called when a plot trusted user is - added/removed -
        -
        -
        Parameters:
        -
        initiator - Player that initiated the event
        -
        plot - Plot in which the event occurred
        -
        player - Player that was added/removed from the trusted list
        -
        added - true of the player was added, false if the player was removed -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        wasAdded

        -
        public boolean wasAdded()
        -
        If a player was added
        -
        -
        Returns:
        -
        boolean
        -
        -
      • -
      - - - -
        -
      • -

        getPlayer

        -
        public java.util.UUID getPlayer()
        -
        The UUID added/removed
        -
        -
        Returns:
        -
        UUID
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        The plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getInitiator

        -
        public org.bukkit.entity.Player getInitiator()
        -
        The player initiating the action
        -
        -
        Returns:
        -
        Player
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html deleted file mode 100644 index cc8767cd5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlayerTeleportToPlotEvent.html +++ /dev/null @@ -1,465 +0,0 @@ - - - - - - PlayerTeleportToPlotEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlayerTeleportToPlotEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • org.bukkit.event.player.PlayerEvent
      • -
      • -
          -
        • com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlayerTeleportToPlotEvent
    -extends org.bukkit.event.player.PlayerEvent
    -implements org.bukkit.event.Cancellable
    -
    Called when a player teleports to a plot
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Field Summary

      -
        -
      • - - - -

        Fields inherited from class org.bukkit.event.player.PlayerEvent

        - player
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerTeleportToPlotEvent(org.bukkit.entity.Player player, - org.bukkit.Location from, - Plot plot) - -
      PlayerTeleportToPlotEvent: Called when a player teleports to a plot -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.LocationgetFrom() - -
      Get the from location
      -
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the plot involved
      -
      booleanisCancelled()  -
      voidsetCancelled(boolean cancelled)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.player.PlayerEvent

        - getPlayer
      • -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerTeleportToPlotEvent

        -
        public PlayerTeleportToPlotEvent(org.bukkit.entity.Player player,
        -                         org.bukkit.Location from,
        -                         Plot plot)
        -
        PlayerTeleportToPlotEvent: Called when a player teleports to a plot
        -
        -
        Parameters:
        -
        player - That was teleported
        -
        from - Start location
        -
        plot - Plot to which the player was teleported
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        getFrom

        -
        public org.bukkit.Location getFrom()
        -
        Get the from location
        -
        -
        Returns:
        -
        Location
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean cancelled)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html deleted file mode 100644 index 78135c829..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotClearEvent.html +++ /dev/null @@ -1,430 +0,0 @@ - - - - - - PlotClearEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlotClearEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlotClearEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlotClearEvent
    -extends org.bukkit.event.Event
    -implements org.bukkit.event.Cancellable
    -
    Called when a plot is cleared
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotClearEvent(java.lang.String world, - PlotId id) - -
      PlotDeleteEvent: Called when a plot is cleared
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotIdgetPlotId() - -
      Get the PlotId
      -
      java.lang.StringgetWorld() - -
      Get the world name
      -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotClearEvent

        -
        public PlotClearEvent(java.lang.String world,
        -              PlotId id)
        -
        PlotDeleteEvent: Called when a plot is cleared
        -
        -
        Parameters:
        -
        world - The world in which the plot was cleared
        -
        id - The plot that was cleared
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlotId

        -
        public PlotId getPlotId()
        -
        Get the PlotId
        -
        -
        Returns:
        -
        PlotId
        -
        -
      • -
      - - - -
        -
      • -

        getWorld

        -
        public java.lang.String getWorld()
        -
        Get the world name
        -
        -
        Returns:
        -
        String
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html deleted file mode 100644 index 8ff1e07b7..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotDeleteEvent.html +++ /dev/null @@ -1,430 +0,0 @@ - - - - - - PlotDeleteEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlotDeleteEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlotDeleteEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlotDeleteEvent
    -extends org.bukkit.event.Event
    -implements org.bukkit.event.Cancellable
    -
    Called when a plot is deleted
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotDeleteEvent(java.lang.String world, - PlotId id) - -
      PlotDeleteEvent: Called when a plot is deleted
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotIdgetPlotId() - -
      Get the PlotId
      -
      java.lang.StringgetWorld() - -
      Get the world name
      -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotDeleteEvent

        -
        public PlotDeleteEvent(java.lang.String world,
        -               PlotId id)
        -
        PlotDeleteEvent: Called when a plot is deleted
        -
        -
        Parameters:
        -
        world - The world in which the plot was deleted
        -
        id - The ID of the plot that was deleted
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlotId

        -
        public PlotId getPlotId()
        -
        Get the PlotId
        -
        -
        Returns:
        -
        PlotId
        -
        -
      • -
      - - - -
        -
      • -

        getWorld

        -
        public java.lang.String getWorld()
        -
        Get the world name
        -
        -
        Returns:
        -
        String
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html deleted file mode 100644 index 4a132a387..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagAddEvent.html +++ /dev/null @@ -1,436 +0,0 @@ - - - - - - PlotFlagAddEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlotFlagAddEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlotFlagAddEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlotFlagAddEvent
    -extends org.bukkit.event.Event
    -implements org.bukkit.event.Cancellable
    -
    Called when a Flag is added to a plot
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotFlagAddEvent(Flag flag, - Plot plot) - -
      PlotFlagAddEvent: Called when a Flag is added to a plot
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      FlaggetFlag() - -
      Get the flag involved
      -
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the plot involved
      -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotFlagAddEvent

        -
        public PlotFlagAddEvent(Flag flag,
        -                Plot plot)
        -
        PlotFlagAddEvent: Called when a Flag is added to a plot
        -
        -
        Parameters:
        -
        flag - Flag that was added
        -
        plot - Plot to which the flag was added
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getFlag

        -
        public Flag getFlag()
        -
        Get the flag involved
        -
        -
        Returns:
        -
        Flag
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html deleted file mode 100644 index 121d44fa5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotFlagRemoveEvent.html +++ /dev/null @@ -1,436 +0,0 @@ - - - - - - PlotFlagRemoveEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlotFlagRemoveEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlotFlagRemoveEvent
    -extends org.bukkit.event.Event
    -implements org.bukkit.event.Cancellable
    -
    Called when a flag is removed from a plot
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotFlagRemoveEvent(Flag flag, - Plot plot) - -
      PlotFlagRemoveEvent: Called when a flag is removed from a plot
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      FlaggetFlag() - -
      Get the flag involved
      -
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the plot involved
      -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotFlagRemoveEvent

        -
        public PlotFlagRemoveEvent(Flag flag,
        -                   Plot plot)
        -
        PlotFlagRemoveEvent: Called when a flag is removed from a plot
        -
        -
        Parameters:
        -
        flag - Flag that was removed
        -
        plot - Plot from which the flag was removed
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the plot involved
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getFlag

        -
        public Flag getFlag()
        -
        Get the flag involved
        -
        -
        Returns:
        -
        Flag
        -
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html deleted file mode 100644 index 381ee7fef..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotMergeEvent.html +++ /dev/null @@ -1,454 +0,0 @@ - - - - - - PlotMergeEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlotMergeEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlotMergeEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlotMergeEvent
    -extends org.bukkit.event.Event
    -implements org.bukkit.event.Cancellable
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotMergeEvent(org.bukkit.World world, - Plot plot, - java.util.ArrayList<PlotId> plots) - -
      PlotMergeEvent: Called when plots are merged
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      PlotgetPlot() - -
      Get the main plot
      -
      java.util.ArrayList<PlotId>getPlots() - -
      Get the plots being added;
      -
      org.bukkit.WorldgetWorld()  -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotMergeEvent

        -
        public PlotMergeEvent(org.bukkit.World world,
        -              Plot plot,
        -              java.util.ArrayList<PlotId> plots)
        -
        PlotMergeEvent: Called when plots are merged
        -
        -
        Parameters:
        -
        world - World in which the event occurred
        -
        plot - Plot that was merged
        -
        plots - A list of plots involved in the event
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public java.util.ArrayList<PlotId> getPlots()
        -
        Get the plots being added;
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
        Get the main plot
        -
        -
        Returns:
        -
        Plot
        -
        -
      • -
      - - - -
        -
      • -

        getWorld

        -
        public org.bukkit.World getWorld()
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html deleted file mode 100644 index 35e1d86e2..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/PlotUnlinkEvent.html +++ /dev/null @@ -1,422 +0,0 @@ - - - - - - PlotUnlinkEvent - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.events
-

Class PlotUnlinkEvent

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.event.Event
    • -
    • -
        -
      • com.intellectualcrafters.plot.events.PlotUnlinkEvent
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Cancellable
    -
    -
    -
    -
    public class PlotUnlinkEvent
    -extends org.bukkit.event.Event
    -implements org.bukkit.event.Cancellable
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.event.Event

        - org.bukkit.event.Event.Result
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotUnlinkEvent(org.bukkit.World world, - java.util.ArrayList<PlotId> plots) - -
      Called when a mega-plot is unlinked.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static org.bukkit.event.HandlerListgetHandlerList()  -
      org.bukkit.event.HandlerListgetHandlers()  -
      java.util.ArrayList<PlotId>getPlots() - -
      Get the plots involved
      -
      org.bukkit.WorldgetWorld()  -
      booleanisCancelled()  -
      voidsetCancelled(boolean b)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.event.Event

        - getEventName, isAsynchronous
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotUnlinkEvent

        -
        public PlotUnlinkEvent(org.bukkit.World world,
        -               java.util.ArrayList<PlotId> plots)
        -
        Called when a mega-plot is unlinked.
        -
        -
        Parameters:
        -
        world - World in which the event occurred
        -
        plots - Plots that are involved in the event
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getHandlerList

        -
        public static org.bukkit.event.HandlerList getHandlerList()
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        public java.util.ArrayList<PlotId> getPlots()
        -
        Get the plots involved
        -
        -
        Returns:
        -
        PlotId
        -
        -
      • -
      - - - -
        -
      • -

        getWorld

        -
        public org.bukkit.World getWorld()
        -
      • -
      - - - -
        -
      • -

        getHandlers

        -
        public org.bukkit.event.HandlerList getHandlers()
        -
        -
        Specified by:
        -
        getHandlers in class org.bukkit.event.Event
        -
        -
      • -
      - - - -
        -
      • -

        isCancelled

        -
        public boolean isCancelled()
        -
        -
        Specified by:
        -
        isCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      - - - -
        -
      • -

        setCancelled

        -
        public void setCancelled(boolean b)
        -
        -
        Specified by:
        -
        setCancelled in - interface org.bukkit.event.Cancellable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html deleted file mode 100644 index 9fdbba61c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-frame.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - com.intellectualcrafters.plot.events - - - - -

com.intellectualcrafters.plot.events -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html deleted file mode 100644 index c6356e543..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-summary.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - com.intellectualcrafters.plot.events - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.events

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html deleted file mode 100644 index 86dcbda95..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/events/package-tree.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - com.intellectualcrafters.plot.events Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.events

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • org.bukkit.event.Event - -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html deleted file mode 100644 index 34ca6d42f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/AbstractFlag.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - AbstractFlag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.flag
-

Class AbstractFlag

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.flag.AbstractFlag
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class AbstractFlag
    -extends java.lang.Object
    -
    Created 2014-09-23 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      AbstractFlag(java.lang.String key)  -
      AbstractFlag(java.lang.String key, - FlagValue<?> value) - -
      AbstractFlag is a parameter used in creating a new Flag
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object other)  -
      java.lang.StringgetKey() - -
      AbstractFlag key
      -
      java.lang.StringgetValueDesc()  -
      java.lang.StringparseValue(java.lang.String value)  -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait -
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        AbstractFlag

        -
        public AbstractFlag(java.lang.String key)
        -
      • -
      - - - -
        -
      • -

        AbstractFlag

        -
        public AbstractFlag(java.lang.String key,
        -            FlagValue<?> value)
        -
        AbstractFlag is a parameter used in creating a new Flag
        -
        -
        Parameters:
        -
        key - The key must be alphabetical characters and <= 16 characters - in length -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        parseValue

        -
        public java.lang.String parseValue(java.lang.String value)
        -
      • -
      - - - -
        -
      • -

        getValueDesc

        -
        public java.lang.String getValueDesc()
        -
      • -
      - - - -
        -
      • -

        getKey

        -
        public java.lang.String getKey()
        -
        AbstractFlag key
        -
        -
        Returns:
        -
        String
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object other)
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html deleted file mode 100644 index 0eddbb5b8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/Flag.html +++ /dev/null @@ -1,401 +0,0 @@ - - - - - - Flag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.flag
-

Class Flag

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.flag.Flag
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Flag
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Flag(AbstractFlag key, - java.lang.String value) - -
      Flag object used to store basic information for a Plot.
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj)  -
      AbstractFlaggetAbstractFlag() - -
      Get the AbstractFlag used in creating the flag
      -
      java.lang.StringgetKey() - -
      Get the key for the AbstractFlag
      -
      java.lang.StringgetValue() - -
      Get the value
      -
      inthashCode()  -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Flag

        -
        public Flag(AbstractFlag key,
        -    java.lang.String value)
        -
        Flag object used to store basic information for a Plot. Flags are a - key/value pair. For a flag to be usable by a player, you need to register - it with PlotSquared. -
        -
        -
        Parameters:
        -
        key - AbstractFlag
        -
        value - Value must be alphanumerical (can have spaces) and be <= 48 - characters -
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if you provide inadequate inputs -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getAbstractFlag

        -
        public AbstractFlag getAbstractFlag()
        -
        Get the AbstractFlag used in creating the flag
        -
        -
        Returns:
        -
        AbstractFlag
        -
        -
      • -
      - - - -
        -
      • -

        getKey

        -
        public java.lang.String getKey()
        -
        Get the key for the AbstractFlag
        -
        -
        Returns:
        -
        String
        -
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public java.lang.String getValue()
        -
        Get the value
        -
        -
        Returns:
        -
        String
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object obj)
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html deleted file mode 100644 index f15252b57..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagManager.html +++ /dev/null @@ -1,530 +0,0 @@ - - - - - - FlagManager - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.flag
-

Class FlagManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.flag.FlagManager
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class FlagManager
    -extends java.lang.Object
    -
    Flag Manager Utility
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      FlagManager()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static booleanaddFlag(AbstractFlag flag) - -
      Register an AbstractFlag with PlotSquared
      -
      static AbstractFlaggetFlag(java.lang.String string) - -
      Get an AbstractFlag by a string Returns null if flag does not exist -
      -
      static AbstractFlaggetFlag(java.lang.String string, - boolean create) - -
      Get an AbstractFlag by a string
      -
      static java.util.List<AbstractFlag>getFlags() - -
      Get a list of registered AbstractFlag objects
      -
      static java.util.List<AbstractFlag>getFlags(org.bukkit.entity.Player player) - -
      Get a list of registerd AbstragFlag objects based on player - permissions -
      -
      static java.util.List<AbstractFlag>getPlotFlags(Plot plot) - -
      Get the flags for a plot
      -
      static Flag[]parseFlags(java.util.List<java.lang.String> flagstrings)  -
      static booleanremoveFlag(AbstractFlag flag) - -
      Remove a registered AbstractFlag
      -
      static Flag[]removeFlag(Flag[] flags, - java.lang.String r) 
      static Flag[]removeFlag(java.util.Set<Flag> flags, - java.lang.String r) 
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        FlagManager

        -
        public FlagManager()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        addFlag

        -
        public static boolean addFlag(AbstractFlag flag)
        -
        Register an AbstractFlag with PlotSquared
        -
        -
        Parameters:
        -
        flag - Flag to register
        -
        Returns:
        -
        success?
        -
        -
      • -
      - - - -
        -
      • -

        removeFlag

        -
        public static Flag[] removeFlag(Flag[] flags,
        -                java.lang.String r)
        -
      • -
      - - - -
        -
      • -

        removeFlag

        -
        public static Flag[] removeFlag(java.util.Set<Flag> flags,
        -                java.lang.String r)
        -
      • -
      - - - -
        -
      • -

        getFlags

        -
        public static java.util.List<AbstractFlag> getFlags()
        -
        Get a list of registered AbstractFlag objects
        -
        -
        Returns:
        -
        List (AbstractFlag)
        -
        -
      • -
      - - - -
        -
      • -

        getFlags

        -
        public static java.util.List<AbstractFlag> getFlags(org.bukkit.entity.Player player)
        -
        Get a list of registerd AbstragFlag objects based on player permissions -
        -
        -
        Parameters:
        -
        player - with permissions
        -
        Returns:
        -
        List (AbstractFlag)
        -
        -
      • -
      - - - -
        -
      • -

        getFlag

        -
        public static AbstractFlag getFlag(java.lang.String string)
        -
        Get an AbstractFlag by a string Returns null if flag does not exist
        -
        -
        Parameters:
        -
        string - Flag Key
        -
        Returns:
        -
        AbstractFlag
        -
        -
      • -
      - - - -
        -
      • -

        getFlag

        -
        public static AbstractFlag getFlag(java.lang.String string,
        -                   boolean create)
        -
        Get an AbstractFlag by a string
        -
        -
        Parameters:
        -
        string - Flag Key
        -
        create - If to create the flag if it does not exist
        -
        Returns:
        -
        AbstractFlag
        -
        -
      • -
      - - - -
        -
      • -

        removeFlag

        -
        public static boolean removeFlag(AbstractFlag flag)
        -
        Remove a registered AbstractFlag
        -
        -
        Parameters:
        -
        flag - Flag Key
        -
        Returns:
        -
        boolean Result of operation
        -
        -
      • -
      - - - -
        -
      • -

        parseFlags

        -
        public static Flag[] parseFlags(java.util.List<java.lang.String> flagstrings)
        -
      • -
      - - - -
        -
      • -

        getPlotFlags

        -
        public static java.util.List<AbstractFlag> getPlotFlags(Plot plot)
        -
        Get the flags for a plot
        -
        -
        Parameters:
        -
        plot - Plot to search in
        -
        Returns:
        -
        List (AbstractFlag)
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html deleted file mode 100644 index 24cde5123..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.BooleanValue.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - - FlagValue.BooleanValue - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.flag
-

Class FlagValue.BooleanValue

-
-
- -
-
    -
  • -
    -
    Enclosing class:
    -
    FlagValue<T>
    -
    -
    -
    -
    public static class FlagValue.BooleanValue
    -extends FlagValue<java.lang.Boolean>
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetDescription()  -
      java.lang.BooleangetValue(java.lang.String t)  -
      java.lang.Stringparse(java.lang.String t)  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        FlagValue.BooleanValue

        -
        public FlagValue.BooleanValue()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public java.lang.Boolean getValue(java.lang.String t)
        -
        -
        Specified by:
        -
        getValue in - class FlagValue<java.lang.Boolean> -
        -
        -
      • -
      - - - -
        -
      • -

        parse

        -
        public java.lang.String parse(java.lang.String t)
        -
        -
        Specified by:
        -
        parse in - class FlagValue<java.lang.Boolean> -
        -
        -
      • -
      - - - -
        -
      • -

        getDescription

        -
        public java.lang.String getDescription()
        -
        -
        Specified by:
        -
        getDescription in - class FlagValue<java.lang.Boolean> -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html deleted file mode 100644 index de0372fe8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.StringValue.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - FlagValue.StringValue - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.flag
-

Class FlagValue.StringValue

-
-
- -
-
    -
  • -
    -
    Enclosing class:
    -
    FlagValue<T>
    -
    -
    -
    -
    public static class FlagValue.StringValue
    -extends FlagValue<java.lang.String>
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetDescription()  -
      java.lang.StringgetValue(java.lang.String t)  -
      java.lang.Stringparse(java.lang.String s)  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        FlagValue.StringValue

        -
        public FlagValue.StringValue()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        parse

        -
        public java.lang.String parse(java.lang.String s)
        -
        -
        Specified by:
        -
        parse in - class FlagValue<java.lang.String> -
        -
        -
      • -
      - - - -
        -
      • -

        getDescription

        -
        public java.lang.String getDescription()
        -
        -
        Specified by:
        -
        getDescription in - class FlagValue<java.lang.String> -
        -
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public java.lang.String getValue(java.lang.String t)
        -
        -
        Specified by:
        -
        getValue in - class FlagValue<java.lang.String> -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html deleted file mode 100644 index 1346b3272..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/FlagValue.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - FlagValue - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.flag
-

Class FlagValue<T>

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.flag.FlagValue<T>
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    FlagValue.BooleanValue, FlagValue.StringValue
    -
    -
    -
    -
    public abstract class FlagValue<T>
    -extends java.lang.Object
    -
    Created 2014-11-17 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      FlagValue()  -
      FlagValue(java.lang.Class<T> clazz) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      abstract java.lang.StringgetDescription()  -
      abstract TgetValue(java.lang.String t)  -
      abstract java.lang.Stringparse(java.lang.String t)  -
      booleanvalidValue(java.lang.Object value)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        FlagValue

        -
        public FlagValue()
        -
      • -
      - - - -
        -
      • -

        FlagValue

        -
        public FlagValue(java.lang.Class<T> clazz)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        validValue

        -
        public boolean validValue(java.lang.Object value)
        -
      • -
      - - - -
        -
      • -

        getValue

        -
        public abstract T getValue(java.lang.String t)
        -
      • -
      - - - -
        -
      • -

        parse

        -
        public abstract java.lang.String parse(java.lang.String t)
        -
      • -
      - - - -
        -
      • -

        getDescription

        -
        public abstract java.lang.String getDescription()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html deleted file mode 100644 index 820adbc2c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-frame.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - com.intellectualcrafters.plot.flag - - - - -

com.intellectualcrafters.plot.flag -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html deleted file mode 100644 index 4c571fece..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-summary.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - com.intellectualcrafters.plot.flag - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.flag

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html deleted file mode 100644 index 14bb482e1..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/flag/package-tree.html +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - com.intellectualcrafters.plot.flag Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.flag

- Package Hierarchies: - -
-
-

Class Hierarchy

- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html deleted file mode 100644 index 2ebf17c04..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotManager.html +++ /dev/null @@ -1,973 +0,0 @@ - - - - - - DefaultPlotManager - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.generator
-

Class DefaultPlotManager

-
-
- -
-
    -
  • -
    -
    -
    public class DefaultPlotManager
    -extends PlotManager
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      DefaultPlotManager()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanclearPlot(org.bukkit.World world, - Plot plot) - -
      Clearing the plot needs to only consider removing the blocks - This - implementation has used the SetCuboid function, as it is fast, and uses - NMS code - It also makes use of the fact that deleting chunks is a lot - faster than block updates This code is very messy, but you don't need to - do something quite as complex unless you happen to have 512x512 sized - plots -
      -
      booleancreateRoadEast(PlotWorld plotworld, - Plot plot) - -
      PLOT MERGING
      -
      booleancreateRoadSouth(PlotWorld plotworld, - Plot plot)  -
      booleancreateRoadSouthEast(PlotWorld plotworld, - Plot plot)  -
      booleanfinishPlotMerge(org.bukkit.World world, - PlotWorld plotworld, - java.util.ArrayList<PlotId> plotIds) - -
      Finishing off plot merging by adding in the walls surrounding the - plot - (OPTIONAL)(UNFINISHED) -
      -
      booleanfinishPlotUnlink(org.bukkit.World world, - PlotWorld plotworld, - java.util.ArrayList<PlotId> plotIds)  -
      org.bukkit.LocationgetPlotBottomLocAbs(PlotWorld plotworld, - PlotId plotid) - -
      Get the bottom plot loc (some basic math)
      -
      PlotIdgetPlotId(PlotWorld plotworld, - org.bukkit.Location loc) - -
      Some complex stuff for traversing mega plots (return getPlotIdAbs if - you - do not support mega plots) -
      -
      PlotIdgetPlotIdAbs(PlotWorld plotworld, - org.bukkit.Location loc) - -
      Default implementation of getting a plot at a given location For a - simplified explanation of the math involved: - Get the current coords - - shift these numbers down to something relatable for a single plot - (similar to reducing trigonometric functions down to the first quadrant) - - e.g. -
      -
      org.bukkit.LocationgetPlotTopLocAbs(PlotWorld plotworld, - PlotId plotid) - -
      Get the top plot loc (some basic math)
      -
      org.bukkit.LocationgetSignLoc(org.bukkit.World world, - PlotWorld plotworld, - Plot plot) - -
      Remove sign for a plot
      -
      booleanisInPlotAbs(PlotWorld plotworld, - org.bukkit.Location loc, - PlotId plotid) - -
      Check if a location is inside a specific plot(non-Javadoc) - For this - implementation, we don't need to do anything fancier than referring to - getPlotIdAbs(...) -
      -
      booleanremoveRoadEast(PlotWorld plotworld, - Plot plot)  -
      booleanremoveRoadSouth(PlotWorld plotworld, - Plot plot)  -
      booleanremoveRoadSouthEast(PlotWorld plotworld, - Plot plot)  -
      booleansetBiome(org.bukkit.World world, - Plot plot, - org.bukkit.block.Biome biome) - -
      Set a plot biome
      -
      booleansetFloor(org.bukkit.World world, - PlotWorld plotworld, - PlotId plotid, - PlotBlock[] blocks)  -
      booleansetWall(org.bukkit.World w, - PlotWorld plotworld, - PlotId plotid, - PlotBlock plotblock)  -
      booleansetWallFilling(org.bukkit.World w, - PlotWorld plotworld, - PlotId plotid, - PlotBlock plotblock)  -
      booleanstartPlotMerge(org.bukkit.World world, - PlotWorld plotworld, - java.util.ArrayList<PlotId> plotIds)  -
      booleanstartPlotUnlink(org.bukkit.World world, - PlotWorld plotworld, - java.util.ArrayList<PlotId> plotIds)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DefaultPlotManager

        -
        public DefaultPlotManager()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getPlotIdAbs

        -
        public PlotId getPlotIdAbs(PlotWorld plotworld,
        -                  org.bukkit.Location loc)
        -
        Default implementation of getting a plot at a given location For a - simplified explanation of the math involved: - Get the current coords - - shift these numbers down to something relatable for a single plot - (similar to reducing trigonometric functions down to the first quadrant) - - e.g. If the plot size is 20 blocks, and we are at x=25, it's equivalent - to x=5 for that specific plot From this, and knowing how thick the road - is, we can say whether x=5 is road, or plot. The number of shifts done, - is also counted, and this number gives us the PlotId -
        -
        -
        Specified by:
        -
        getPlotIdAbs in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        getPlotId

        -
        public PlotId getPlotId(PlotWorld plotworld,
        -               org.bukkit.Location loc)
        -
        Some complex stuff for traversing mega plots (return getPlotIdAbs if you - do not support mega plots) -
        -
        -
        Specified by:
        -
        getPlotId in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        isInPlotAbs

        -
        public boolean isInPlotAbs(PlotWorld plotworld,
        -                  org.bukkit.Location loc,
        -                  PlotId plotid)
        -
        Check if a location is inside a specific plot(non-Javadoc) - For this - implementation, we don't need to do anything fancier than referring to - getPlotIdAbs(...) -
        -
        -
        Specified by:
        -
        isInPlotAbs in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        getPlotBottomLocAbs

        -
        public org.bukkit.Location getPlotBottomLocAbs(PlotWorld plotworld,
        -                                      PlotId plotid)
        -
        Get the bottom plot loc (some basic math)
        -
        -
        Specified by:
        -
        getPlotBottomLocAbs in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        getPlotTopLocAbs

        -
        public org.bukkit.Location getPlotTopLocAbs(PlotWorld plotworld,
        -                                   PlotId plotid)
        -
        Get the top plot loc (some basic math)
        -
        -
        Specified by:
        -
        getPlotTopLocAbs in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        clearPlot

        -
        public boolean clearPlot(org.bukkit.World world,
        -                Plot plot)
        -
        Clearing the plot needs to only consider removing the blocks - This - implementation has used the SetCuboid function, as it is fast, and uses - NMS code - It also makes use of the fact that deleting chunks is a lot - faster than block updates This code is very messy, but you don't need to - do something quite as complex unless you happen to have 512x512 sized - plots -
        -
        -
        Specified by:
        -
        clearPlot in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        getSignLoc

        -
        public org.bukkit.Location getSignLoc(org.bukkit.World world,
        -                             PlotWorld plotworld,
        -                             Plot plot)
        -
        Remove sign for a plot
        -
        -
        Specified by:
        -
        getSignLoc in - class PlotManager
        -
        -
      • -
      - - - - - - - - - - - - - - - -
        -
      • -

        setBiome

        -
        public boolean setBiome(org.bukkit.World world,
        -               Plot plot,
        -               org.bukkit.block.Biome biome)
        -
        Set a plot biome
        -
        -
        Specified by:
        -
        setBiome in - class PlotManager
        -
        -
      • -
      - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        -
      • -

        finishPlotMerge

        -
        public boolean finishPlotMerge(org.bukkit.World world,
        -                      PlotWorld plotworld,
        -                      java.util.ArrayList<PlotId> plotIds)
        -
        Finishing off plot merging by adding in the walls surrounding the plot - (OPTIONAL)(UNFINISHED) -
        -
        -
        Specified by:
        -
        finishPlotMerge in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        finishPlotUnlink

        -
        public boolean finishPlotUnlink(org.bukkit.World world,
        -                       PlotWorld plotworld,
        -                       java.util.ArrayList<PlotId> plotIds)
        -
        -
        Specified by:
        -
        finishPlotUnlink in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        startPlotMerge

        -
        public boolean startPlotMerge(org.bukkit.World world,
        -                     PlotWorld plotworld,
        -                     java.util.ArrayList<PlotId> plotIds)
        -
        -
        Specified by:
        -
        startPlotMerge in - class PlotManager
        -
        -
      • -
      - - - -
        -
      • -

        startPlotUnlink

        -
        public boolean startPlotUnlink(org.bukkit.World world,
        -                      PlotWorld plotworld,
        -                      java.util.ArrayList<PlotId> plotIds)
        -
        -
        Specified by:
        -
        startPlotUnlink in - class PlotManager
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html deleted file mode 100644 index b9c4a5323..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/DefaultPlotWorld.html +++ /dev/null @@ -1,928 +0,0 @@ - - - - - - DefaultPlotWorld - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.generator
-

Class DefaultPlotWorld

-
-
- -
-
    -
  • -
    -
    -
    public class DefaultPlotWorld
    -extends PlotWorld
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        ROAD_HEIGHT_DEFAULT

        -
        public static int ROAD_HEIGHT_DEFAULT
        -
        Default Road Height: 64
        -
      • -
      - - - -
        -
      • -

        PLOT_HEIGHT_DEFAULT

        -
        public static int PLOT_HEIGHT_DEFAULT
        -
        Default plot height: 64
        -
      • -
      - - - -
        -
      • -

        WALL_HEIGHT_DEFAULT

        -
        public static int WALL_HEIGHT_DEFAULT
        -
        Default Wall Height: 64
        -
      • -
      - - - -
        -
      • -

        PLOT_WIDTH_DEFAULT

        -
        public static int PLOT_WIDTH_DEFAULT
        -
        Default plot width: 32
        -
      • -
      - - - -
        -
      • -

        ROAD_WIDTH_DEFAULT

        -
        public static int ROAD_WIDTH_DEFAULT
        -
        Default road width: 7
        -
      • -
      - - - -
        -
      • -

        MAIN_BLOCK_DEFAULT

        -
        public static PlotBlock[] MAIN_BLOCK_DEFAULT
        -
        Default main block: 1
        -
      • -
      - - - -
        -
      • -

        TOP_BLOCK_DEFAULT

        -
        public static PlotBlock[] TOP_BLOCK_DEFAULT
        -
        Default top blocks: {"2"}
        -
      • -
      - - - -
        -
      • -

        WALL_BLOCK_DEFAULT

        -
        public static PlotBlock WALL_BLOCK_DEFAULT
        -
        Default wall block: 44
        -
      • -
      - - - -
        -
      • -

        CLAIMED_WALL_BLOCK_DEFAULT

        -
        public static PlotBlock CLAIMED_WALL_BLOCK_DEFAULT
        -
      • -
      - - - -
        -
      • -

        WALL_FILLING_DEFAULT

        -
        public static PlotBlock WALL_FILLING_DEFAULT
        -
        Default wall filling: 1
        -
      • -
      - - - -
        -
      • -

        ROAD_STRIPES_DEFAULT

        -
        public static PlotBlock ROAD_STRIPES_DEFAULT
        -
        Default road stripes: 35
        -
      • -
      - - - -
        -
      • -

        ROAD_STRIPES_ENABLED_DEFAULT

        -
        public static boolean ROAD_STRIPES_ENABLED_DEFAULT
        -
      • -
      - - - -
        -
      • -

        ROAD_BLOCK_DEFAULT

        -
        public static PlotBlock ROAD_BLOCK_DEFAULT
        -
        Default road block: 155
        -
      • -
      - - - -
        -
      • -

        ROAD_HEIGHT

        -
        public int ROAD_HEIGHT
        -
        Road Height
        -
      • -
      - - - -
        -
      • -

        PLOT_HEIGHT

        -
        public int PLOT_HEIGHT
        -
        plot height
        -
      • -
      - - - -
        -
      • -

        WALL_HEIGHT

        -
        public int WALL_HEIGHT
        -
        Wall height
        -
      • -
      - - - -
        -
      • -

        PLOT_WIDTH

        -
        public int PLOT_WIDTH
        -
        plot width
        -
      • -
      - - - -
        -
      • -

        ROAD_WIDTH

        -
        public int ROAD_WIDTH
        -
        Road width
        -
      • -
      - - - -
        -
      • -

        MAIN_BLOCK

        -
        public PlotBlock[] MAIN_BLOCK
        -
        Plot main block
        -
      • -
      - - - -
        -
      • -

        TOP_BLOCK

        -
        public PlotBlock[] TOP_BLOCK
        -
        Top blocks
        -
      • -
      - - - -
        -
      • -

        WALL_BLOCK

        -
        public PlotBlock WALL_BLOCK
        -
        Wall block
        -
      • -
      - - - -
        -
      • -

        CLAIMED_WALL_BLOCK

        -
        public PlotBlock CLAIMED_WALL_BLOCK
        -
      • -
      - - - -
        -
      • -

        WALL_FILLING

        -
        public PlotBlock WALL_FILLING
        -
        Wall filling
        -
      • -
      - - - -
        -
      • -

        ROAD_STRIPES

        -
        public PlotBlock ROAD_STRIPES
        -
        Road stripes
        -
      • -
      - - - -
        -
      • -

        ROAD_STRIPES_ENABLED

        -
        public boolean ROAD_STRIPES_ENABLED
        -
        enable road stripes
        -
      • -
      - - - -
        -
      • -

        ROAD_BLOCK

        -
        public PlotBlock ROAD_BLOCK
        -
        Road block
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        DefaultPlotWorld

        -
        public DefaultPlotWorld(java.lang.String worldname)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getSettingNodes

        -
        public ConfigurationNode[] getSettingNodes()
        -
        CONFIG NODE | DEFAULT VALUE | DESCRIPTION | CONFIGURATION TYPE | REQUIRED - FOR INITIAL SETUP -

        - Set the last boolean to false if you do not require a specific config - node to be set while using the setup command - this may be useful if a - config value can be changed at a later date, and has no impact on the - actual world generation -

        -
        -
        Specified by:
        -
        getSettingNodes in - class PlotWorld -
        -
        Returns:
        -
        ConfigurationNode[]
        -
        -
      • -
      - - - -
        -
      • -

        loadConfiguration

        -
        public void loadConfiguration(org.bukkit.configuration.ConfigurationSection config)
        -
        This method is called when a world loads. Make sure you set all your - constants here. You are provided with the configuration section for that - specific world. -
        -
        -
        Specified by:
        -
        loadConfiguration in - class PlotWorld -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html deleted file mode 100644 index 604d2dae3..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/WorldGenerator.html +++ /dev/null @@ -1,580 +0,0 @@ - - - - - - WorldGenerator - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.generator
-

Class WorldGenerator

-
-
- -
-
    -
  • -
    -
    -
    public class WorldGenerator
    -extends PlotGenerator
    -
    -
    Author:
    -
    Citymonstret The default generator is very messy, as we have decided - to try externalize all calculations from within the loop. - You will - see a lot of slower implementations have a single for loop. - This is - perfectly fine to do, it will just mean world generation may take - somewhat longer -
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from - class org.bukkit.generator.ChunkGenerator

        - org.bukkit.generator.ChunkGenerator.BiomeGrid
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      WorldGenerator(java.lang.String world) - -
      Initialize variables, and create plotworld object used in - calculations -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleancanSpawn(org.bukkit.World world, - int x, - int z) - -
      Allow spawning everywhere
      -
      short[][]generateExtBlockSections(org.bukkit.World world, - java.util.Random random, - int cx, - int cz, - org.bukkit.generator.ChunkGenerator.BiomeGrid biomes) - -
      This part is a fucking mess. - Refer to a proper tutorial if you - would - like to learn how to make a world generator -
      -
      java.util.List<org.bukkit.generator.BlockPopulator> - getDefaultPopulators(org.bukkit.World world) - -
      Return the block populator
      -
      org.bukkit.LocationgetFixedSpawnLocation(org.bukkit.World world, - java.util.Random random) - -
      Return the default spawn location for this world
      -
      PlotWorldgetNewPlotWorld(java.lang.String world) - -
      Get a new plotworld class For square plots you can use the - DefaultPlotWorld class which comes with PlotSquared -
      -
      PlotManagergetPlotManager() - -
      Return the plot manager for this type of generator, or create one For - square plots you may as well use the default plot manager which comes - with PlotSquared -
      -
      longnextLong()  -
      intrandom(int n)  -
      voidsetCuboidRegion(int x1, - int x2, - int y1, - int y2, - int z1, - int z2, - PlotBlock block) - -
      Cuboid based plot generation is quick, as it requires no calculations - inside the loop - You don't have to use this this method, but you may - find it useful. -
      -
      longxorShift64(long a)  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.generator.ChunkGenerator

        - generate, generateBlockSections
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        WorldGenerator

        -
        public WorldGenerator(java.lang.String world)
        -
        Initialize variables, and create plotworld object used in calculations -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getPlotManager

        -
        public PlotManager getPlotManager()
        -
        Return the plot manager for this type of generator, or create one For - square plots you may as well use the default plot manager which comes - with PlotSquared -
        -
        -
        Specified by:
        -
        getPlotManager in - class PlotGenerator -
        -
        -
      • -
      - - - -
        -
      • -

        canSpawn

        -
        public boolean canSpawn(org.bukkit.World world,
        -               int x,
        -               int z)
        -
        Allow spawning everywhere
        -
        -
        Overrides:
        -
        canSpawn in - class org.bukkit.generator.ChunkGenerator
        -
        -
      • -
      - - - -
        -
      • -

        getNewPlotWorld

        -
        public PlotWorld getNewPlotWorld(java.lang.String world)
        -
        Get a new plotworld class For square plots you can use the - DefaultPlotWorld class which comes with PlotSquared -
        -
        -
        Specified by:
        -
        getNewPlotWorld in - class PlotGenerator -
        -
        -
      • -
      - - - -
        -
      • -

        nextLong

        -
        public final long nextLong()
        -
      • -
      - - - -
        -
      • -

        xorShift64

        -
        public final long xorShift64(long a)
        -
      • -
      - - - -
        -
      • -

        random

        -
        public final int random(int n)
        -
      • -
      - - - -
        -
      • -

        setCuboidRegion

        -
        public void setCuboidRegion(int x1,
        -                   int x2,
        -                   int y1,
        -                   int y2,
        -                   int z1,
        -                   int z2,
        -                   PlotBlock block)
        -
        Cuboid based plot generation is quick, as it requires no calculations - inside the loop - You don't have to use this this method, but you may - find it useful. -
        -
      • -
      - - - -
        -
      • -

        getDefaultPopulators

        -
        public java.util.List<org.bukkit.generator.BlockPopulator> getDefaultPopulators(org.bukkit.World world)
        -
        Return the block populator
        -
        -
        Overrides:
        -
        getDefaultPopulators in class org.bukkit.generator.ChunkGenerator -
        -
        -
      • -
      - - - -
        -
      • -

        getFixedSpawnLocation

        -
        public org.bukkit.Location getFixedSpawnLocation(org.bukkit.World world,
        -                                        java.util.Random random)
        -
        Return the default spawn location for this world
        -
        -
        Overrides:
        -
        getFixedSpawnLocation in class org.bukkit.generator.ChunkGenerator -
        -
        -
      • -
      - - - -
        -
      • -

        generateExtBlockSections

        -
        public short[][] generateExtBlockSections(org.bukkit.World world,
        -                                 java.util.Random random,
        -                                 int cx,
        -                                 int cz,
        -                                 org.bukkit.generator.ChunkGenerator.BiomeGrid biomes)
        -
        This part is a fucking mess. - Refer to a proper tutorial if you would - like to learn how to make a world generator -
        -
        -
        Overrides:
        -
        generateExtBlockSections in class org.bukkit.generator.ChunkGenerator -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html deleted file mode 100644 index 9d7bb3c4d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/XPopulator.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - XPopulator - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.generator
-

Class XPopulator

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.generator.BlockPopulator
    • -
    • -
        -
      • com.intellectualcrafters.plot.generator.XPopulator
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class XPopulator
    -extends org.bukkit.generator.BlockPopulator
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      XPopulator(PlotWorld pw)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      short[]getBlock(java.lang.String block)  -
      longnextLong()  -
      voidpopulate(org.bukkit.World w, - java.util.Random r, - org.bukkit.Chunk c) 
      intrandom(int n)  -
      voidsetCuboidRegion(int x1, - int x2, - int y1, - int y2, - int z1, - int z2, - PlotBlock block, - org.bukkit.World w) 
      longxorShift64(long a)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        XPopulator

        -
        public XPopulator(PlotWorld pw)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        nextLong

        -
        public final long nextLong()
        -
      • -
      - - - -
        -
      • -

        xorShift64

        -
        public final long xorShift64(long a)
        -
      • -
      - - - -
        -
      • -

        random

        -
        public final int random(int n)
        -
      • -
      - - - -
        -
      • -

        setCuboidRegion

        -
        public void setCuboidRegion(int x1,
        -                   int x2,
        -                   int y1,
        -                   int y2,
        -                   int z1,
        -                   int z2,
        -                   PlotBlock block,
        -                   org.bukkit.World w)
        -
      • -
      - - - -
        -
      • -

        getBlock

        -
        public short[] getBlock(java.lang.String block)
        -
      • -
      - - - -
        -
      • -

        populate

        -
        public void populate(org.bukkit.World w,
        -            java.util.Random r,
        -            org.bukkit.Chunk c)
        -
        -
        Specified by:
        -
        populate in - class org.bukkit.generator.BlockPopulator
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html deleted file mode 100644 index ffd4f463f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-frame.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - com.intellectualcrafters.plot.generator - - - - -

com.intellectualcrafters.plot.generator -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html deleted file mode 100644 index 7beb74937..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-summary.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - com.intellectualcrafters.plot.generator - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.generator

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html deleted file mode 100644 index c5d073986..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/generator/package-tree.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - com.intellectualcrafters.plot.generator Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.generator

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • org.bukkit.generator.BlockPopulator -
        -
      • com.intellectualcrafters.plot.generator.XPopulator
      • -
      -
    • -
    • org.bukkit.generator.ChunkGenerator - -
    • -
    • com.intellectualcrafters.plot.object.PlotManager - -
    • -
    • com.intellectualcrafters.plot.object.PlotWorld - -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html deleted file mode 100644 index 8908c3158..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/EntityListener.html +++ /dev/null @@ -1,404 +0,0 @@ - - - - - - EntityListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class EntityListener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.EntityListener
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class EntityListener
    -extends java.lang.Object
    -implements org.bukkit.event.Listener
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.util.HashMap<java.lang.String,java.util.HashMap<Plot,java.util.HashSet<java.lang.Integer>>> - entityMap  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      EntityListener()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidaddEntity(org.bukkit.entity.Entity entity, - Plot plot)  -
      static voidonChunkDespawn(org.bukkit.event.world.ChunkUnloadEvent e)  -
      static voidonChunkLoad(org.bukkit.event.world.ChunkLoadEvent e)  -
      static voidonCreatureSpawn(org.bukkit.event.entity.CreatureSpawnEvent e)  -
      static voidonEntityDeath(org.bukkit.event.entity.EntityDeathEvent e)  -
      static voidonPlayerInteract(org.bukkit.event.player.PlayerInteractEvent e)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        entityMap

        -
        public static java.util.HashMap<java.lang.String,java.util.HashMap<Plot,java.util.HashSet<java.lang.Integer>>> entityMap
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        EntityListener

        -
        public EntityListener()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        onPlayerInteract

        -
        public static void onPlayerInteract(org.bukkit.event.player.PlayerInteractEvent e)
        -
      • -
      - - - -
        -
      • -

        onCreatureSpawn

        -
        public static void onCreatureSpawn(org.bukkit.event.entity.CreatureSpawnEvent e)
        -
      • -
      - - - -
        -
      • -

        onChunkLoad

        -
        public static void onChunkLoad(org.bukkit.event.world.ChunkLoadEvent e)
        -
      • -
      - - - -
        -
      • -

        addEntity

        -
        public static void addEntity(org.bukkit.entity.Entity entity,
        -             Plot plot)
        -
      • -
      - - - -
        -
      • -

        onEntityDeath

        -
        public static void onEntityDeath(org.bukkit.event.entity.EntityDeathEvent e)
        -
      • -
      - - - -
        -
      • -

        onChunkDespawn

        -
        public static void onChunkDespawn(org.bukkit.event.world.ChunkUnloadEvent e)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html deleted file mode 100644 index f2072421b..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/ForceFieldListener.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - ForceFieldListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class ForceFieldListener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.ForceFieldListener
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class ForceFieldListener
    -extends java.lang.Object
    -implements org.bukkit.event.Listener
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      ForceFieldListener(org.bukkit.plugin.java.JavaPlugin plugin)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.util.VectorcalculateVelocity(org.bukkit.entity.Player p, - org.bukkit.entity.Player e) 
      voidonPlotEntry(org.bukkit.event.player.PlayerMoveEvent event)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ForceFieldListener

        -
        public ForceFieldListener(org.bukkit.plugin.java.JavaPlugin plugin)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        calculateVelocity

        -
        public org.bukkit.util.Vector calculateVelocity(org.bukkit.entity.Player p,
        -                                       org.bukkit.entity.Player e)
        -
      • -
      - - - -
        -
      • -

        onPlotEntry

        -
        public void onPlotEntry(org.bukkit.event.player.PlayerMoveEvent event)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html deleted file mode 100644 index 403b175ef..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/InventoryListener.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - InventoryListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class InventoryListener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.InventoryListener
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class InventoryListener
    -extends java.lang.Object
    -implements org.bukkit.event.Listener
    -
    Created 2014-11-18 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      InventoryListener()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidonInventoryAction(org.bukkit.event.inventory.InventoryInteractEvent event)  -
      voidonInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        InventoryListener

        -
        public InventoryListener()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        onInventoryAction

        -
        public void onInventoryAction(org.bukkit.event.inventory.InventoryInteractEvent event)
        -
      • -
      - - - -
        -
      • -

        onInventoryClick

        -
        public void onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html deleted file mode 100644 index cd8331bd6..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlayerEvents.html +++ /dev/null @@ -1,784 +0,0 @@ - - - - - - PlayerEvents - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class PlayerEvents

-
-
- -
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class PlayerEvents
    -extends PlotListener
    -implements org.bukkit.event.Listener
    -
    Player Events involving plots
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerEvents()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidBlockCreate(org.bukkit.event.block.BlockPlaceEvent event)  -
      static voidBlockDestroy(org.bukkit.event.block.BlockBreakEvent event)  -
      static voidMobSpawn(org.bukkit.event.entity.CreatureSpawnEvent event)  -
      static voidonBD(org.bukkit.event.block.BlockDamageEvent e)  -
      static voidonBF(org.bukkit.event.block.BlockFormEvent e)  -
      static voidonBigBoom(org.bukkit.event.entity.EntityExplodeEvent event)  -
      static voidonBlockIgnite(org.bukkit.event.block.BlockIgniteEvent e)  -
      static voidonBlockPistonExtend(org.bukkit.event.block.BlockPistonExtendEvent e)  -
      static voidonBlockPistonRetract(org.bukkit.event.block.BlockPistonRetractEvent e)  -
      static voidonBS(org.bukkit.event.block.BlockSpreadEvent e)  -
      static voidonBucketEmpty(org.bukkit.event.player.PlayerBucketEmptyEvent e)  -
      static voidonBucketFill(org.bukkit.event.player.PlayerBucketFillEvent e)  -
      static voidonChange(org.bukkit.event.block.BlockFromToEvent e)  -
      voidonChangeWorld(org.bukkit.event.player.PlayerChangedWorldEvent event)  -
      static voidonChat(org.bukkit.event.player.AsyncPlayerChatEvent event)  -
      static voidonEntityBlockForm(org.bukkit.event.block.EntityBlockFormEvent event)  -
      static voidonEntityDamageByEntityEvent(org.bukkit.event.entity.EntityDamageByEntityEvent e)  -
      static voidonFade(org.bukkit.event.block.BlockFadeEvent e)  -
      static voidonGrow(org.bukkit.event.block.BlockGrowEvent e)  -
      static voidonHangingBreakByEntity(org.bukkit.event.hanging.HangingBreakByEntityEvent e)  -
      static voidonHangingPlace(org.bukkit.event.hanging.HangingPlaceEvent e)  -
      static voidonInteract(org.bukkit.event.player.PlayerInteractEvent event)  -
      static voidonInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)  -
      static voidonJoin(org.bukkit.event.player.PlayerJoinEvent event)  -
      static voidonLeave(org.bukkit.event.player.PlayerQuitEvent event)  -
      static voidonPeskyMobsChangeTheWorldLikeWTFEvent(org.bukkit.event.entity.EntityChangeBlockEvent event)  -
      static voidonPlayerEggThrow(org.bukkit.event.player.PlayerEggThrowEvent e)  -
      static voidonPlayerInteractEntity(org.bukkit.event.player.PlayerInteractEntityEvent e)  -
      static voidonStructureGrow(org.bukkit.event.world.StructureGrowEvent e)  -
      static voidonTeleport(org.bukkit.event.player.PlayerTeleportEvent event)  -
      static voidonWorldLoad(org.bukkit.event.world.WorldLoadEvent event)  -
      static voidPlayerMove(org.bukkit.event.player.PlayerMoveEvent event)  -
      - -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerEvents

        -
        public PlayerEvents()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        onWorldLoad

        -
        public static void onWorldLoad(org.bukkit.event.world.WorldLoadEvent event)
        -
      • -
      - - - -
        -
      • -

        onJoin

        -
        public static void onJoin(org.bukkit.event.player.PlayerJoinEvent event)
        -
      • -
      - - - -
        -
      • -

        PlayerMove

        -
        public static void PlayerMove(org.bukkit.event.player.PlayerMoveEvent event)
        -
      • -
      - - - -
        -
      • -

        onChat

        -
        public static void onChat(org.bukkit.event.player.AsyncPlayerChatEvent event)
        -
      • -
      - - - -
        -
      • -

        BlockDestroy

        -
        public static void BlockDestroy(org.bukkit.event.block.BlockBreakEvent event)
        -
      • -
      - - - -
        -
      • -

        onBigBoom

        -
        public static void onBigBoom(org.bukkit.event.entity.EntityExplodeEvent event)
        -
      • -
      - - - -
        -
      • -

        onPeskyMobsChangeTheWorldLikeWTFEvent

        -
        public static void onPeskyMobsChangeTheWorldLikeWTFEvent(org.bukkit.event.entity.EntityChangeBlockEvent event)
        -
      • -
      - - - -
        -
      • -

        onEntityBlockForm

        -
        public static void onEntityBlockForm(org.bukkit.event.block.EntityBlockFormEvent event)
        -
      • -
      - - - -
        -
      • -

        onBS

        -
        public static void onBS(org.bukkit.event.block.BlockSpreadEvent e)
        -
      • -
      - - - -
        -
      • -

        onBF

        -
        public static void onBF(org.bukkit.event.block.BlockFormEvent e)
        -
      • -
      - - - -
        -
      • -

        onBD

        -
        public static void onBD(org.bukkit.event.block.BlockDamageEvent e)
        -
      • -
      - - - -
        -
      • -

        onFade

        -
        public static void onFade(org.bukkit.event.block.BlockFadeEvent e)
        -
      • -
      - - - -
        -
      • -

        onChange

        -
        public static void onChange(org.bukkit.event.block.BlockFromToEvent e)
        -
      • -
      - - - -
        -
      • -

        onGrow

        -
        public static void onGrow(org.bukkit.event.block.BlockGrowEvent e)
        -
      • -
      - - - -
        -
      • -

        onBlockPistonExtend

        -
        public static void onBlockPistonExtend(org.bukkit.event.block.BlockPistonExtendEvent e)
        -
      • -
      - - - -
        -
      • -

        onBlockPistonRetract

        -
        public static void onBlockPistonRetract(org.bukkit.event.block.BlockPistonRetractEvent e)
        -
      • -
      - - - -
        -
      • -

        onStructureGrow

        -
        public static void onStructureGrow(org.bukkit.event.world.StructureGrowEvent e)
        -
      • -
      - - - -
        -
      • -

        onInteract

        -
        public static void onInteract(org.bukkit.event.player.PlayerInteractEvent event)
        -
      • -
      - - - -
        -
      • -

        MobSpawn

        -
        public static void MobSpawn(org.bukkit.event.entity.CreatureSpawnEvent event)
        -
      • -
      - - - -
        -
      • -

        onBlockIgnite

        -
        public static void onBlockIgnite(org.bukkit.event.block.BlockIgniteEvent e)
        -
      • -
      - - - -
        -
      • -

        onTeleport

        -
        public static void onTeleport(org.bukkit.event.player.PlayerTeleportEvent event)
        -
      • -
      - - - -
        -
      • -

        onBucketEmpty

        -
        public static void onBucketEmpty(org.bukkit.event.player.PlayerBucketEmptyEvent e)
        -
      • -
      - - - -
        -
      • -

        onInventoryClick

        -
        public static void onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)
        -
      • -
      - - - -
        -
      • -

        onLeave

        -
        public static void onLeave(org.bukkit.event.player.PlayerQuitEvent event)
        -
      • -
      - - - -
        -
      • -

        onBucketFill

        -
        public static void onBucketFill(org.bukkit.event.player.PlayerBucketFillEvent e)
        -
      • -
      - - - -
        -
      • -

        onHangingPlace

        -
        public static void onHangingPlace(org.bukkit.event.hanging.HangingPlaceEvent e)
        -
      • -
      - - - -
        -
      • -

        onHangingBreakByEntity

        -
        public static void onHangingBreakByEntity(org.bukkit.event.hanging.HangingBreakByEntityEvent e)
        -
      • -
      - - - -
        -
      • -

        onPlayerInteractEntity

        -
        public static void onPlayerInteractEntity(org.bukkit.event.player.PlayerInteractEntityEvent e)
        -
      • -
      - - - -
        -
      • -

        onEntityDamageByEntityEvent

        -
        public static void onEntityDamageByEntityEvent(org.bukkit.event.entity.EntityDamageByEntityEvent e)
        -
      • -
      - - - -
        -
      • -

        onPlayerEggThrow

        -
        public static void onPlayerEggThrow(org.bukkit.event.player.PlayerEggThrowEvent e)
        -
      • -
      - - - -
        -
      • -

        onChangeWorld

        -
        public void onChangeWorld(org.bukkit.event.player.PlayerChangedWorldEvent event)
        -
      • -
      - - - -
        -
      • -

        BlockCreate

        -
        public void BlockCreate(org.bukkit.event.block.BlockPlaceEvent event)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html deleted file mode 100644 index 571f315a0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotListener.html +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - PlotListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class PlotListener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.PlotListener
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    PlayerEvents, PlotPlusListener
    -
    -
    -
    -
    public class PlotListener
    -extends java.lang.Object
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotListener()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidblockChange(org.bukkit.block.Block block, - org.bukkit.event.Cancellable event) 
      static booleanbooleanFlag(Plot plot, - java.lang.String flag) 
      static booleanenteredPlot(org.bukkit.Location l1, - org.bukkit.Location l2) 
      static PlotgetCurrentPlot(org.bukkit.Location loc)  -
      static booleangetFlagValue(java.lang.String value)  -
      static java.lang.StringgetName(java.util.UUID uuid)  -
      static PlotgetPlot(org.bukkit.entity.Player player)  -
      static PlotWorldgetPlotWorld(org.bukkit.World world)  -
      static java.util.UUIDgetUUID(java.lang.String name)  -
      static booleanisInPlot(org.bukkit.Location loc)  -
      static booleanisInPlot(org.bukkit.entity.Player player)  -
      static booleanisPlotWorld(org.bukkit.Location l)  -
      static booleanisPlotWorld(org.bukkit.World world)  -
      static booleanleftPlot(org.bukkit.Location l1, - org.bukkit.Location l2) 
      static voidplotEntry(org.bukkit.entity.Player player, - Plot plot)  -
      static voidplotExit(org.bukkit.entity.Player player, - Plot plot)  -
      static voidtextures(org.bukkit.entity.Player p)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotListener

        -
        public PlotListener()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        textures

        -
        public static void textures(org.bukkit.entity.Player p)
        -
      • -
      - - - -
        -
      • -

        isInPlot

        -
        public static boolean isInPlot(org.bukkit.entity.Player player)
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public static Plot getPlot(org.bukkit.entity.Player player)
        -
      • -
      - - - -
        -
      • -

        isPlotWorld

        -
        public static boolean isPlotWorld(org.bukkit.World world)
        -
      • -
      - - - -
        -
      • -

        getPlotWorld

        -
        public static PlotWorld getPlotWorld(org.bukkit.World world)
        -
      • -
      - - - -
        -
      • -

        getName

        -
        public static java.lang.String getName(java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        getUUID

        -
        public static java.util.UUID getUUID(java.lang.String name)
        -
      • -
      - - - -
        -
      • -

        blockChange

        -
        public static void blockChange(org.bukkit.block.Block block,
        -               org.bukkit.event.Cancellable event)
        -
      • -
      - - - -
        -
      • -

        enteredPlot

        -
        public static boolean enteredPlot(org.bukkit.Location l1,
        -                  org.bukkit.Location l2)
        -
      • -
      - - - -
        -
      • -

        leftPlot

        -
        public static boolean leftPlot(org.bukkit.Location l1,
        -               org.bukkit.Location l2)
        -
      • -
      - - - -
        -
      • -

        isPlotWorld

        -
        public static boolean isPlotWorld(org.bukkit.Location l)
        -
      • -
      - - - -
        -
      • -

        isInPlot

        -
        public static boolean isInPlot(org.bukkit.Location loc)
        -
      • -
      - - - -
        -
      • -

        getCurrentPlot

        -
        public static Plot getCurrentPlot(org.bukkit.Location loc)
        -
      • -
      - - - -
        -
      • -

        booleanFlag

        -
        public static boolean booleanFlag(Plot plot,
        -                  java.lang.String flag)
        -
      • -
      - - - -
        -
      • -

        plotEntry

        -
        public static void plotEntry(org.bukkit.entity.Player player,
        -             Plot plot)
        -
      • -
      - - - -
        -
      • -

        plotExit

        -
        public static void plotExit(org.bukkit.entity.Player player,
        -            Plot plot)
        -
      • -
      - - - -
        -
      • -

        getFlagValue

        -
        public static boolean getFlagValue(java.lang.String value)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html deleted file mode 100644 index ce7639d92..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.Interval.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - PlotPlusListener.Interval - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class PlotPlusListener.Interval

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    PlotPlusListener
    -
    -
    -
    -
    public static class PlotPlusListener.Interval
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      intamount  -
      intcount  -
      intinterval  -
      intmax  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotPlusListener.Interval(int interval, - int amount, - int max) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        interval

        -
        public int interval
        -
      • -
      - - - -
        -
      • -

        amount

        -
        public int amount
        -
      • -
      - - - -
        -
      • -

        count

        -
        public int count
        -
      • -
      - - - -
        -
      • -

        max

        -
        public int max
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotPlusListener.Interval

        -
        public PlotPlusListener.Interval(int interval,
        -                         int amount,
        -                         int max)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html deleted file mode 100644 index e9c461073..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.RecordMeta.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - PlotPlusListener.RecordMeta - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class PlotPlusListener.RecordMeta

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    PlotPlusListener
    -
    -
    -
    -
    public static class PlotPlusListener.RecordMeta
    -extends java.lang.Object
    -
    Record Meta Class
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotPlusListener.RecordMeta(java.lang.String name, - org.bukkit.Material material) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.MaterialgetMaterial()  -
      inthashCode()  -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotPlusListener.RecordMeta

        -
        public PlotPlusListener.RecordMeta(java.lang.String name,
        -                           org.bukkit.Material material)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        getMaterial

        -
        public org.bukkit.Material getMaterial()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html deleted file mode 100644 index 276ffba08..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/PlotPlusListener.html +++ /dev/null @@ -1,480 +0,0 @@ - - - - - - PlotPlusListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class PlotPlusListener

-
-
- -
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class PlotPlusListener
    -extends PlotListener
    -implements org.bukkit.event.Listener
    -
    Created 2014-10-30 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotPlusListener

        -
        public PlotPlusListener()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        startRunnable

        -
        public static void startRunnable(org.bukkit.plugin.java.JavaPlugin plugin)
        -
      • -
      - - - -
        -
      • -

        onInventoryClick

        -
        public void onInventoryClick(org.bukkit.event.inventory.InventoryClickEvent event)
        -
      • -
      - - - -
        -
      • -

        onInteract

        -
        public void onInteract(org.bukkit.event.block.BlockDamageEvent event)
        -
      • -
      - - - -
        -
      • -

        onDamage

        -
        public void onDamage(org.bukkit.event.entity.EntityDamageEvent event)
        -
      • -
      - - - -
        -
      • -

        onItemPickup

        -
        public void onItemPickup(org.bukkit.event.player.PlayerPickupItemEvent event)
        -
      • -
      - - - -
        -
      • -

        onItemDrop

        -
        public void onItemDrop(org.bukkit.event.player.PlayerDropItemEvent event)
        -
      • -
      - - - - - - - -
        -
      • -

        onPlayerQuit

        -
        public void onPlayerQuit(org.bukkit.event.player.PlayerQuitEvent event)
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html deleted file mode 100644 index 5b4026b1c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldEditListener.html +++ /dev/null @@ -1,431 +0,0 @@ - - - - - - WorldEditListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class WorldEditListener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.WorldEditListener
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class WorldEditListener
    -extends java.lang.Object
    -implements org.bukkit.event.Listener
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      java.util.Set<java.lang.String>blockedcmds  -
      java.util.Set<java.lang.String>restrictedcmds  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      WorldEditListener()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidonDelete(PlotDeleteEvent e)  -
      voidonInteract(org.bukkit.event.player.PlayerInteractEvent e)  -
      voidonPlayerCommand(org.bukkit.event.player.PlayerCommandPreprocessEvent e)  -
      voidonPlayerJoin(org.bukkit.event.player.PlayerJoinEvent e)  -
      voidonPlayerMove(org.bukkit.event.player.PlayerMoveEvent e)  -
      voidonPortal(org.bukkit.event.player.PlayerPortalEvent e)  -
      voidonTeleport(org.bukkit.event.player.PlayerTeleportEvent e)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        blockedcmds

        -
        public final java.util.Set<java.lang.String> blockedcmds
        -
      • -
      - - - -
        -
      • -

        restrictedcmds

        -
        public final java.util.Set<java.lang.String> restrictedcmds
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        WorldEditListener

        -
        public WorldEditListener()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - - - - - -
        -
      • -

        onInteract

        -
        public void onInteract(org.bukkit.event.player.PlayerInteractEvent e)
        -
      • -
      - - - -
        -
      • -

        onPlayerCommand

        -
        public void onPlayerCommand(org.bukkit.event.player.PlayerCommandPreprocessEvent e)
        -
      • -
      - - - -
        -
      • -

        onPlayerJoin

        -
        public void onPlayerJoin(org.bukkit.event.player.PlayerJoinEvent e)
        -
      • -
      - - - -
        -
      • -

        onPlayerMove

        -
        public void onPlayerMove(org.bukkit.event.player.PlayerMoveEvent e)
        -
      • -
      - - - -
        -
      • -

        onPortal

        -
        public void onPortal(org.bukkit.event.player.PlayerPortalEvent e)
        -
      • -
      - - - -
        -
      • -

        onTeleport

        -
        public void onTeleport(org.bukkit.event.player.PlayerTeleportEvent e)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html deleted file mode 100644 index 9633d84f5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/WorldGuardListener.html +++ /dev/null @@ -1,471 +0,0 @@ - - - - - - WorldGuardListener - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.listeners
-

Class WorldGuardListener

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.listeners.WorldGuardListener
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.event.Listener
    -
    -
    -
    -
    public class WorldGuardListener
    -extends java.lang.Object
    -implements org.bukkit.event.Listener
    -
    Created 2014-09-24 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      java.util.ArrayList<com.sk89q.worldguard.protection.flags.Flag<?>> - flags  -
      java.util.ArrayList<java.lang.String>str_flags  -
      -
    • -
    - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidaddFlag(org.bukkit.entity.Player requester, - org.bukkit.World world, - Plot plot, - java.lang.String key, - java.lang.String value) 
      voidchangeOwner(org.bukkit.entity.Player requester, - java.util.UUID owner, - org.bukkit.World world, - Plot plot)  -
      voidonMerge(PlotMergeEvent event)  -
      voidonPlotClaim(PlayerClaimPlotEvent event)  -
      voidonPlotDelete(PlotDeleteEvent event)  -
      voidonUnlink(PlotUnlinkEvent event)  -
      voidremoveFlag(org.bukkit.entity.Player requester, - org.bukkit.World world, - Plot plot, - java.lang.String key) 
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        str_flags

        -
        public final java.util.ArrayList<java.lang.String> str_flags
        -
      • -
      - - - -
        -
      • -

        flags

        -
        public final java.util.ArrayList<com.sk89q.worldguard.protection.flags.Flag<?>> flags
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        WorldGuardListener

        -
        public WorldGuardListener(PlotMain plugin)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        changeOwner

        -
        public void changeOwner(org.bukkit.entity.Player requester,
        -               java.util.UUID owner,
        -               org.bukkit.World world,
        -               Plot plot)
        -
      • -
      - - - -
        -
      • -

        removeFlag

        -
        public void removeFlag(org.bukkit.entity.Player requester,
        -              org.bukkit.World world,
        -              Plot plot,
        -              java.lang.String key)
        -
      • -
      - - - -
        -
      • -

        addFlag

        -
        public void addFlag(org.bukkit.entity.Player requester,
        -           org.bukkit.World world,
        -           Plot plot,
        -           java.lang.String key,
        -           java.lang.String value)
        -
      • -
      - - - - - - - - - - - - - - - -
        -
      • -

        onPlotDelete

        -
        public void onPlotDelete(PlotDeleteEvent event)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html deleted file mode 100644 index 63b7dc5f3..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-frame.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - com.intellectualcrafters.plot.listeners - - - - -

com.intellectualcrafters.plot.listeners -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html deleted file mode 100644 index b2d80bcde..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-summary.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - com.intellectualcrafters.plot.listeners - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.listeners

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html deleted file mode 100644 index 4de59b85d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/listeners/package-tree.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - com.intellectualcrafters.plot.listeners Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.listeners

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.listeners.EntityListener (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.plot.listeners.ForceFieldListener (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.plot.listeners.InventoryListener (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.plot.listeners.PlotListener -
        -
      • com.intellectualcrafters.plot.listeners.PlayerEvents - (implements org.bukkit.event.Listener) -
      • -
      • com.intellectualcrafters.plot.listeners.PlotPlusListener - (implements org.bukkit.event.Listener) -
      • -
      -
    • -
    • com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval -
    • -
    • com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta -
    • -
    • com.intellectualcrafters.plot.listeners.WorldEditListener (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.plot.listeners.WorldGuardListener (implements org.bukkit.event.Listener) -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html deleted file mode 100644 index ca8a8df65..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/BlockWrapper.html +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - BlockWrapper - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class BlockWrapper

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.BlockWrapper
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class BlockWrapper
    -extends java.lang.Object
    -
    Wrapper class for blocks, using - pure data rather than the object. -

    - Useful for NMS -

    -
    -
    Author:
    -
    Empire92, Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      bytedata - -
      Block Data Value
      -
      intid - -
      Block ID
      -
      intx - -
      X Coordinate
      -
      inty - -
      Y Coordinate
      -
      intz - -
      Z Coordinate
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      BlockWrapper(org.bukkit.block.Block block) - -
      Alternative Constructor - Uses block data, rather than typed data -
      -
      BlockWrapper(int x, - int y, - int z, - short id, - byte data) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.block.BlocktoBlock(org.bukkit.World world) - -
      Get a block based on the block wrapper
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        x

        -
        public final int x
        -
        X Coordinate
        -
      • -
      - - - -
        -
      • -

        y

        -
        public final int y
        -
        Y Coordinate
        -
      • -
      - - - -
        -
      • -

        z

        -
        public final int z
        -
        Z Coordinate
        -
      • -
      - - - -
        -
      • -

        id

        -
        public final int id
        -
        Block ID
        -
      • -
      - - - -
        -
      • -

        data

        -
        public final byte data
        -
        Block Data Value
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        BlockWrapper

        -
        public BlockWrapper(int x,
        -            int y,
        -            int z,
        -            short id,
        -            byte data)
        -
        Constructor
        -
        -
        Parameters:
        -
        x - X Loc Value
        -
        y - Y Loc Value
        -
        z - Z Loc Value
        -
        id - Material ID
        -
        data - Data Value
        -
        -
      • -
      - - - -
        -
      • -

        BlockWrapper

        -
        public BlockWrapper(org.bukkit.block.Block block)
        -
        Alternative Constructor - Uses block data, rather than typed data -
        -
        -
        Parameters:
        -
        block - Block from which we get the data
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toBlock

        -
        public org.bukkit.block.Block toBlock(org.bukkit.World world)
        -
        Get a block based on the block wrapper
        -
        -
        Parameters:
        -
        world - World in which the block is/will be, located
        -
        Returns:
        -
        block created/fetched from settings
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html deleted file mode 100644 index fd97289fb..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/InfoInventory.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - - InfoInventory - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class InfoInventory

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.InfoInventory
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.inventory.InventoryHolder
    -
    -
    -
    -
    public class InfoInventory
    -extends java.lang.Object
    -implements org.bukkit.inventory.InventoryHolder
    -
    Created 2014-11-18 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      InfoInventory(Plot plot, - org.bukkit.entity.Player player) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      InfoInventory - build()  -
      InfoInventory - display()  -
      org.bukkit.inventory.InventorygetInventory()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        InfoInventory

        -
        public InfoInventory(Plot plot,
        -             org.bukkit.entity.Player player)
        -
        Constructor
        -
        -
        Parameters:
        -
        plot - from which we take information
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getInventory

        -
        public org.bukkit.inventory.Inventory getInventory()
        -
        -
        Specified by:
        -
        getInventory in interface org.bukkit.inventory.InventoryHolder -
        -
        -
      • -
      - - - - - - - - -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html deleted file mode 100644 index b4857ea24..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/Plot.html +++ /dev/null @@ -1,1059 +0,0 @@ - - - - - - Plot - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class Plot

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.Plot
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.lang.Cloneable
    -
    -
    -
    -
    public class Plot
    -extends java.lang.Object
    -implements java.lang.Cloneable
    -
    The plot class
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      booleancountsTowardsMax  -
      booleandelete - -
      Delete on next save cycle?
      -
      java.util.ArrayList<java.util.UUID>denied - -
      List of denied players
      -
      booleandeny_entry - -
      Deny Entry
      -
      booleanhasChanged - -
      Has the plot changed since the last save cycle?
      -
      java.util.ArrayList<java.util.UUID>helpers - -
      List of helpers (with plot permissions)
      -
      PlotId - id - -
      plot ID
      -
      java.util.UUIDowner - -
      plot owner
      -
      PlotSettings - settings - -
      External settings class
      -
      java.util.ArrayList<java.util.UUID>trusted - -
      List of trusted users (with plot permissions)
      -
      java.lang.Stringworld - -
      plot world
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      Plot(PlotId id, - java.util.UUID owner, - java.util.ArrayList<java.util.UUID> helpers, - java.util.ArrayList<java.util.UUID> trusted, - java.util.ArrayList<java.util.UUID> denied, - java.lang.String alias, - PlotHomePosition position, - Flag[] flags, - java.lang.String world, - boolean[] merged) - -
      Constructor for saved plots
      -
      Plot(PlotId id, - java.util.UUID owner, - java.util.ArrayList<java.util.UUID> helpers, - java.util.ArrayList<java.util.UUID> denied, - java.lang.String world) - -
      Primary constructor
      -
      Plot(PlotId id, - java.util.UUID owner, - org.bukkit.block.Biome plotBiome, - java.util.ArrayList<java.util.UUID> helpers, - java.util.ArrayList<java.util.UUID> trusted, - java.util.ArrayList<java.util.UUID> denied, - java.lang.String alias, - PlotHomePosition position, - Flag[] flags, - java.lang.String world, - boolean[] merged) - -
      Deprecated.  
      -
      Plot(PlotId id, - java.util.UUID owner, - org.bukkit.block.Biome plotBiome, - java.util.ArrayList<java.util.UUID> helpers, - java.util.ArrayList<java.util.UUID> denied, - java.lang.String world) - -
      Deprecated.  
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidaddDenied(java.util.UUID uuid) - -
      Deny someone (use DBFunc.addDenied() as well)
      -
      voidaddHelper(java.util.UUID uuid) - -
      Add someone as a helper (use DBFunc as well)
      -
      voidaddTrusted(java.util.UUID uuid) - -
      Add someone as a trusted user (use DBFunc as well)
      -
      voidclear(org.bukkit.entity.Player plr) - -
      Clear a plot
      -
      java.lang.Objectclone() - -
      Get a clone of the plot
      -
      booleandeny_entry(org.bukkit.entity.Player player) - -
      Should the player be allowed to enter?
      -
      booleanequals(java.lang.Object obj)  -
      java.lang.StringgetDisplayName() - -
      Get plot display name
      -
      PlotId - getId() - -
      Get the plot ID
      -
      java.util.UUIDgetOwner() - -
      Get the UUID of the owner
      -
      org.bukkit.WorldgetWorld() - -
      Get the plot World
      -
      inthashCode() - -
      Get the plot hashcode
      -
      booleanhasOwner() - -
      Check if the plot has a set owner
      -
      booleanhasRights(org.bukkit.entity.Player player) - -
      Check if the player is either the owner or on the helpers list
      -
      voidremoveDenied(java.util.UUID uuid) - -
      Remove a denied player (use DBFunc as well)
      -
      voidremoveHelper(java.util.UUID uuid) - -
      Remove a helper (use DBFunc as well)
      -
      voidremoveTrusted(java.util.UUID uuid) - -
      Remove a trusted user (use DBFunc as well)
      -
      voidsetOwner(org.bukkit.entity.Player player) - -
      Set the owner
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        id

        -
        public PlotId id
        -
        plot ID
        -
      • -
      - - - -
        -
      • -

        world

        -
        public java.lang.String world
        -
        plot world
        -
      • -
      - - - -
        -
      • -

        owner

        -
        public java.util.UUID owner
        -
        plot owner
        -
      • -
      - - - -
        -
      • -

        deny_entry

        -
        public boolean deny_entry
        -
        Deny Entry
        -
      • -
      - - - -
        -
      • -

        helpers

        -
        public java.util.ArrayList<java.util.UUID> helpers
        -
        List of helpers (with plot permissions)
        -
      • -
      - - - -
        -
      • -

        trusted

        -
        public java.util.ArrayList<java.util.UUID> trusted
        -
        List of trusted users (with plot permissions)
        -
      • -
      - - - -
        -
      • -

        denied

        -
        public java.util.ArrayList<java.util.UUID> denied
        -
        List of denied players
        -
      • -
      - - - -
        -
      • -

        settings

        -
        public PlotSettings settings
        -
        External settings class
        -
      • -
      - - - -
        -
      • -

        delete

        -
        public boolean delete
        -
        Delete on next save cycle?
        -
      • -
      - - - -
        -
      • -

        hasChanged

        -
        public boolean hasChanged
        -
        Has the plot changed since the last save cycle?
        -
      • -
      - - - -
        -
      • -

        countsTowardsMax

        -
        public boolean countsTowardsMax
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Plot

        -
        @Deprecated
        -public Plot(PlotId id,
        -               java.util.UUID owner,
        -               org.bukkit.block.Biome plotBiome,
        -               java.util.ArrayList<java.util.UUID> helpers,
        -               java.util.ArrayList<java.util.UUID> denied,
        -               java.lang.String world)
        -
        Deprecated. 
        -
        Primary constructor
        -
        -
        Parameters:
        -
        id -
        -
        owner -
        -
        plotBiome -
        -
        helpers -
        -
        denied -
        -
        -
      • -
      - - - -
        -
      • -

        Plot

        -
        public Plot(PlotId id,
        -    java.util.UUID owner,
        -    java.util.ArrayList<java.util.UUID> helpers,
        -    java.util.ArrayList<java.util.UUID> denied,
        -    java.lang.String world)
        -
        Primary constructor
        -
        -
        Parameters:
        -
        id -
        -
        owner -
        -
        helpers -
        -
        denied -
        -
        -
      • -
      - - - -
        -
      • -

        Plot

        -
        @Deprecated
        -public Plot(PlotId id,
        -               java.util.UUID owner,
        -               org.bukkit.block.Biome plotBiome,
        -               java.util.ArrayList<java.util.UUID> helpers,
        -               java.util.ArrayList<java.util.UUID> trusted,
        -               java.util.ArrayList<java.util.UUID> denied,
        -               java.lang.String alias,
        -               PlotHomePosition position,
        -               Flag[] flags,
        -               java.lang.String world,
        -               boolean[] merged)
        -
        Deprecated. 
        -
        Constructor for saved plots
        -
        -
        Parameters:
        -
        id -
        -
        owner -
        -
        plotBiome -
        -
        helpers -
        -
        denied -
        -
        merged -
        -
        -
      • -
      - - - -
        -
      • -

        Plot

        -
        public Plot(PlotId id,
        -    java.util.UUID owner,
        -    java.util.ArrayList<java.util.UUID> helpers,
        -    java.util.ArrayList<java.util.UUID> trusted,
        -    java.util.ArrayList<java.util.UUID> denied,
        -    java.lang.String alias,
        -    PlotHomePosition position,
        -    Flag[] flags,
        -    java.lang.String world,
        -    boolean[] merged)
        -
        Constructor for saved plots
        -
        -
        Parameters:
        -
        id -
        -
        owner -
        -
        helpers -
        -
        denied -
        -
        merged -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        hasOwner

        -
        public boolean hasOwner()
        -
        Check if the plot has a set owner
        -
        -
        Returns:
        -
        false if there is no owner
        -
        -
      • -
      - - - -
        -
      • -

        hasRights

        -
        public boolean hasRights(org.bukkit.entity.Player player)
        -
        Check if the player is either the owner or on the helpers list
        -
        -
        Parameters:
        -
        player -
        -
        Returns:
        -
        true if the player is added as a helper or is the owner
        -
        -
      • -
      - - - -
        -
      • -

        deny_entry

        -
        public boolean deny_entry(org.bukkit.entity.Player player)
        -
        Should the player be allowed to enter?
        -
        -
        Parameters:
        -
        player -
        -
        Returns:
        -
        false if the player is allowed to enter
        -
        -
      • -
      - - - -
        -
      • -

        getOwner

        -
        public java.util.UUID getOwner()
        -
        Get the UUID of the owner
        -
      • -
      - - - -
        -
      • -

        setOwner

        -
        public void setOwner(org.bukkit.entity.Player player)
        -
        Set the owner
        -
        -
        Parameters:
        -
        player -
        -
        -
      • -
      - - - -
        -
      • -

        getId

        -
        public PlotId getId()
        -
        Get the plot ID
        -
      • -
      - - - -
        -
      • -

        getWorld

        -
        public org.bukkit.World getWorld()
        -
        Get the plot World
        -
      • -
      - - - -
        -
      • -

        clone

        -
        public java.lang.Object clone()
        -                       throws java.lang.CloneNotSupportedException
        -
        Get a clone of the plot
        -
        -
        Overrides:
        -
        clone in class java.lang.Object
        -
        Returns:
        -
        -
        Throws:
        -
        java.lang.CloneNotSupportedException
        -
        -
      • -
      - - - -
        -
      • -

        addDenied

        -
        public void addDenied(java.util.UUID uuid)
        -
        Deny someone (use DBFunc.addDenied() as well)
        -
        -
        Parameters:
        -
        uuid -
        -
        -
      • -
      - - - -
        -
      • -

        addHelper

        -
        public void addHelper(java.util.UUID uuid)
        -
        Add someone as a helper (use DBFunc as well)
        -
        -
        Parameters:
        -
        uuid -
        -
        -
      • -
      - - - -
        -
      • -

        addTrusted

        -
        public void addTrusted(java.util.UUID uuid)
        -
        Add someone as a trusted user (use DBFunc as well)
        -
        -
        Parameters:
        -
        uuid -
        -
        -
      • -
      - - - -
        -
      • -

        getDisplayName

        -
        public java.lang.String getDisplayName()
        -
        Get plot display name
        -
        -
        Returns:
        -
        alias if set, else id
        -
        -
      • -
      - - - -
        -
      • -

        removeDenied

        -
        public void removeDenied(java.util.UUID uuid)
        -
        Remove a denied player (use DBFunc as well)
        -
        -
        Parameters:
        -
        uuid -
        -
        -
      • -
      - - - -
        -
      • -

        removeHelper

        -
        public void removeHelper(java.util.UUID uuid)
        -
        Remove a helper (use DBFunc as well)
        -
        -
        Parameters:
        -
        uuid -
        -
        -
      • -
      - - - -
        -
      • -

        removeTrusted

        -
        public void removeTrusted(java.util.UUID uuid)
        -
        Remove a trusted user (use DBFunc as well)
        -
        -
        Parameters:
        -
        uuid -
        -
        -
      • -
      - - - -
        -
      • -

        clear

        -
        public void clear(org.bukkit.entity.Player plr)
        -
        Clear a plot
        -
        -
        Parameters:
        -
        plr - initiator
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object obj)
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        Get the plot hashcode
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        Returns:
        -
        integer. You can easily make this a character array
        - xI = c[0] - x = c[1 -> xI...] - yI = c[xI ... + 1] - y = c[xI ... + 2 -> yI ...] -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html deleted file mode 100644 index d1d883aef..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotBlock.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - PlotBlock - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotBlock

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotBlock
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotBlock
    -extends java.lang.Object
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      bytedata  -
      shortid  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotBlock(short id, - byte data) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        id

        -
        public short id
        -
      • -
      - - - -
        -
      • -

        data

        -
        public byte data
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotBlock

        -
        public PlotBlock(short id,
        -         byte data)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html deleted file mode 100644 index 7295c4870..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotComment.html +++ /dev/null @@ -1,318 +0,0 @@ - - - - - - PlotComment - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotComment

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotComment
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotComment
    -extends java.lang.Object
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      java.lang.Stringcomment  -
      java.lang.StringsenderName  -
      inttier  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotComment(java.lang.String comment, - java.lang.String senderName, - int tier) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        comment

        -
        public final java.lang.String comment
        -
      • -
      - - - -
        -
      • -

        tier

        -
        public final int tier
        -
      • -
      - - - -
        -
      • -

        senderName

        -
        public final java.lang.String senderName
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotComment

        -
        public PlotComment(java.lang.String comment,
        -           java.lang.String senderName,
        -           int tier)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html deleted file mode 100644 index 678ec0914..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotGenerator.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - PlotGenerator - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotGenerator

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.generator.ChunkGenerator
    • -
    • -
        -
      • com.intellectualcrafters.plot.object.PlotGenerator
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    WorldGenerator
    -
    -
    -
    -
    public abstract class PlotGenerator
    -extends org.bukkit.generator.ChunkGenerator
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      -
        -
      • - - - -

        Nested classes/interfaces inherited from class org.bukkit.generator.ChunkGenerator

        - org.bukkit.generator.ChunkGenerator.BiomeGrid
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotGenerator(java.lang.String world)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      abstract PlotWorldgetNewPlotWorld(java.lang.String world)  -
      abstract PlotManager - getPlotManager()  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.generator.ChunkGenerator

        - canSpawn, generate, generateBlockSections, generateExtBlockSections, - getDefaultPopulators, getFixedSpawnLocation
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotGenerator

        -
        public PlotGenerator(java.lang.String world)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getNewPlotWorld

        -
        public abstract PlotWorld getNewPlotWorld(java.lang.String world)
        -
      • -
      - - - -
        -
      • -

        getPlotManager

        -
        public abstract PlotManager getPlotManager()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html deleted file mode 100644 index 191167adc..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotHomePosition.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - PlotHomePosition - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Enum PlotHomePosition

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Enum<PlotHomePosition> -
    • -
    • -
        -
      • com.intellectualcrafters.plot.object.PlotHomePosition
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable, java.lang.Comparable<PlotHomePosition>
    -
    -
    -
    -
    public enum PlotHomePosition
    -extends java.lang.Enum<PlotHomePosition>
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Enum Constant Summary

      - - - - - - - - - - - -
      Enum Constants 
      Enum Constant and Description
      CENTER  -
      DEFAULT  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanisMatching(java.lang.String string)  -
      static PlotHomePosition - valueOf(java.lang.String name) - -
      Returns the enum constant of this type with the specified name. -
      -
      static PlotHomePosition[] - values() - -
      Returns an array containing the constants of this enum type, in - the order they are declared. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Enum

        - clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, - toString, valueOf
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static PlotHomePosition[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (PlotHomePosition c : PlotHomePosition.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are - declared -
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static PlotHomePosition valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no - constant with the specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        isMatching

        -
        public boolean isMatching(java.lang.String string)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html deleted file mode 100644 index 0896a280a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotId.html +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - PlotId - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotId

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotId
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotId
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      java.lang.Integerx - -
      x value
      -
      java.lang.Integery - -
      y value
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotId(int x, - int y) - -
      PlotId class (PlotId x,y values do not correspond to Block - locations) -
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj)  -
      static PlotIdfromString(java.lang.String string) - -
      Get a Plot Id based on a string
      -
      inthashCode()  -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        x

        -
        public java.lang.Integer x
        -
        x value
        -
      • -
      - - - -
        -
      • -

        y

        -
        public java.lang.Integer y
        -
        y value
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotId

        -
        public PlotId(int x,
        -      int y)
        -
        PlotId class (PlotId x,y values do not correspond to Block locations) -
        -
        -
        Parameters:
        -
        x - The plot x coordinate
        -
        y - The plot y coordinate
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        fromString

        -
        public static PlotId fromString(java.lang.String string)
        -
        Get a Plot Id based on a string
        -
        -
        Parameters:
        -
        string - to create id from
        -
        Returns:
        -
        null if the string is invalid
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object obj)
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html deleted file mode 100644 index e61a4fd45..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotManager.html +++ /dev/null @@ -1,756 +0,0 @@ - - - - - - PlotManager - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotManager
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    DefaultPlotManager
    -
    -
    -
    -
    public abstract class PlotManager
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotManager

        -
        public PlotManager()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getPlotIdAbs

        -
        public abstract PlotId getPlotIdAbs(PlotWorld plotworld,
        -                  org.bukkit.Location loc)
        -
      • -
      - - - -
        -
      • -

        getPlotId

        -
        public abstract PlotId getPlotId(PlotWorld plotworld,
        -               org.bukkit.Location loc)
        -
      • -
      - - - -
        -
      • -

        isInPlotAbs

        -
        public abstract boolean isInPlotAbs(PlotWorld plotworld,
        -                  org.bukkit.Location loc,
        -                  PlotId plotid)
        -
      • -
      - - - -
        -
      • -

        getPlotBottomLocAbs

        -
        public abstract org.bukkit.Location getPlotBottomLocAbs(PlotWorld plotworld,
        -                                      PlotId plotid)
        -
      • -
      - - - -
        -
      • -

        getPlotTopLocAbs

        -
        public abstract org.bukkit.Location getPlotTopLocAbs(PlotWorld plotworld,
        -                                   PlotId plotid)
        -
      • -
      - - - -
        -
      • -

        clearPlot

        -
        public abstract boolean clearPlot(org.bukkit.World world,
        -                Plot plot)
        -
      • -
      - - - -
        -
      • -

        getSignLoc

        -
        public abstract org.bukkit.Location getSignLoc(org.bukkit.World world,
        -                             PlotWorld plotworld,
        -                             Plot plot)
        -
      • -
      - - - -
        -
      • -

        setWallFilling

        -
        public abstract boolean setWallFilling(org.bukkit.World world,
        -                     PlotWorld plotworld,
        -                     PlotId plotid,
        -                     PlotBlock block)
        -
      • -
      - - - -
        -
      • -

        setWall

        -
        public abstract boolean setWall(org.bukkit.World world,
        -              PlotWorld plotworld,
        -              PlotId plotid,
        -              PlotBlock block)
        -
      • -
      - - - -
        -
      • -

        setFloor

        -
        public abstract boolean setFloor(org.bukkit.World world,
        -               PlotWorld plotworld,
        -               PlotId plotid,
        -               PlotBlock[] block)
        -
      • -
      - - - -
        -
      • -

        setBiome

        -
        public abstract boolean setBiome(org.bukkit.World world,
        -               Plot plot,
        -               org.bukkit.block.Biome biome)
        -
      • -
      - - - -
        -
      • -

        createRoadEast

        -
        public abstract boolean createRoadEast(PlotWorld plotworld,
        -                     Plot plot)
        -
      • -
      - - - -
        -
      • -

        createRoadSouth

        -
        public abstract boolean createRoadSouth(PlotWorld plotworld,
        -                      Plot plot)
        -
      • -
      - - - -
        -
      • -

        createRoadSouthEast

        -
        public abstract boolean createRoadSouthEast(PlotWorld plotworld,
        -                          Plot plot)
        -
      • -
      - - - -
        -
      • -

        removeRoadEast

        -
        public abstract boolean removeRoadEast(PlotWorld plotworld,
        -                     Plot plot)
        -
      • -
      - - - -
        -
      • -

        removeRoadSouth

        -
        public abstract boolean removeRoadSouth(PlotWorld plotworld,
        -                      Plot plot)
        -
      • -
      - - - -
        -
      • -

        removeRoadSouthEast

        -
        public abstract boolean removeRoadSouthEast(PlotWorld plotworld,
        -                          Plot plot)
        -
      • -
      - - - -
        -
      • -

        startPlotMerge

        -
        public abstract boolean startPlotMerge(org.bukkit.World world,
        -                     PlotWorld plotworld,
        -                     java.util.ArrayList<PlotId> plotIds)
        -
      • -
      - - - -
        -
      • -

        startPlotUnlink

        -
        public abstract boolean startPlotUnlink(org.bukkit.World world,
        -                      PlotWorld plotworld,
        -                      java.util.ArrayList<PlotId> plotIds)
        -
      • -
      - - - -
        -
      • -

        finishPlotMerge

        -
        public abstract boolean finishPlotMerge(org.bukkit.World world,
        -                      PlotWorld plotworld,
        -                      java.util.ArrayList<PlotId> plotIds)
        -
      • -
      - - - -
        -
      • -

        finishPlotUnlink

        -
        public abstract boolean finishPlotUnlink(org.bukkit.World world,
        -                       PlotWorld plotworld,
        -                       java.util.ArrayList<PlotId> plotIds)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html deleted file mode 100644 index 734d39656..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSelection.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - PlotSelection - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotSelection

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotSelection
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotSelection
    -extends java.lang.Object
    -
    Created 2014-10-12 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static java.util.HashMap<java.lang.String,PlotSelection> - currentSelection  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotSelection(int width, - org.bukkit.World world, - Plot plot)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      PlotBlock[]getBlocks()  -
      PlotgetPlot()  -
      intgetWidth()  -
      voidpaste(org.bukkit.World world, - Plot plot)  -
      static booleanswap(org.bukkit.World world, - PlotId id1, - PlotId id2)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        currentSelection

        -
        public static java.util.HashMap<java.lang.String,PlotSelection> currentSelection
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotSelection

        -
        public PlotSelection(int width,
        -             org.bukkit.World world,
        -             Plot plot)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        swap

        -
        public static boolean swap(org.bukkit.World world,
        -           PlotId id1,
        -           PlotId id2)
        -
      • -
      - - - -
        -
      • -

        getBlocks

        -
        public PlotBlock[] getBlocks()
        -
      • -
      - - - -
        -
      • -

        getWidth

        -
        public int getWidth()
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public Plot getPlot()
        -
      • -
      - - - -
        -
      • -

        paste

        -
        public void paste(org.bukkit.World world,
        -         Plot plot)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html deleted file mode 100644 index c1e8f40c0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotSettings.html +++ /dev/null @@ -1,694 +0,0 @@ - - - - - - PlotSettings - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotSettings

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotSettings
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotSettings
    -extends java.lang.Object
    -
    plot settings
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotSettings

        -
        public PlotSettings(Plot plot)
        -
        Constructor
        -
        -
        Parameters:
        -
        plot - object
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getMerged

        -
        public boolean getMerged(int direction)
        -
        Check if the plot is merged in a direction
        - 0 = North
        - 1 = East
        - 2 = South
        - 3 = West
        -
        -
        Parameters:
        -
        direction - Direction to check
        -
        Returns:
        -
        boolean merged
        -
        -
      • -
      - - - -
        -
      • -

        isMerged

        -
        public boolean isMerged()
        -
        Returns true if the plot is merged (i.e. if it's a mega plot)
        -
      • -
      - - - -
        -
      • -

        getMerged

        -
        public boolean[] getMerged()
        -
      • -
      - - - -
        -
      • -

        setMerged

        -
        public void setMerged(boolean[] merged)
        -
      • -
      - - - -
        -
      • -

        setMerged

        -
        public void setMerged(int direction,
        -             boolean merged)
        -
      • -
      - - - -
        -
      • -

        getBiome

        -
        public org.bukkit.block.Biome getBiome()
        -
        -
        Returns:
        -
        biome at plot loc
        -
        -
      • -
      - - - -
        -
      • -

        addFlag

        -
        public void addFlag(Flag flag)
        -
        -
        Parameters:
        -
        flag - to add
        -
        -
      • -
      - - - -
        -
      • -

        getFlags

        -
        public java.util.Set<Flag> getFlags()
        -
        Get all flags applied for the plot
        -
        -
        Returns:
        -
        flags
        -
        -
      • -
      - - - -
        -
      • -

        setFlags

        -
        public void setFlags(Flag[] flags)
        -
        Set multiple flags
        -
        -
        Parameters:
        -
        flags - Flag Array
        -
        -
      • -
      - - - -
        -
      • -

        getFlag

        -
        public Flag getFlag(java.lang.String flag)
        -
        Get a flag
        -
        -
        Parameters:
        -
        flag - Flag to get
        -
        Returns:
        -
        flag
        -
        -
      • -
      - - - - - - - - - - - -
        -
      • -

        getAlias

        -
        public java.lang.String getAlias()
        -
      • -
      - - - -
        -
      • -

        setAlias

        -
        public void setAlias(java.lang.String alias)
        -
        Set the plot alias
        -
        -
        Parameters:
        -
        alias - alias to be used
        -
        -
      • -
      - - - -
        -
      • -

        getJoinMessage

        -
        public java.lang.String getJoinMessage()
        -
      • -
      - - - -
        -
      • -

        getLeaveMessage

        -
        public java.lang.String getLeaveMessage()
        -
        Get the "farewell" flag value
        -
        -
        Returns:
        -
        Farewell flag
        -
        -
      • -
      - - - -
        -
      • -

        getComments

        -
        public java.util.ArrayList<PlotComment> getComments(int tier)
        -
      • -
      - - - -
        -
      • -

        setComments

        -
        public void setComments(java.util.ArrayList<PlotComment> comments)
        -
      • -
      - - - -
        -
      • -

        removeComment

        -
        public void removeComment(PlotComment comment)
        -
      • -
      - - - -
        -
      • -

        removeComments

        -
        public void removeComments(java.util.ArrayList<PlotComment> comments)
        -
      • -
      - - - -
        -
      • -

        addComment

        -
        public void addComment(PlotComment comment)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html deleted file mode 100644 index 982477b8d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/PlotWorld.html +++ /dev/null @@ -1,951 +0,0 @@ - - - - - - PlotWorld - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class PlotWorld

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.PlotWorld
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    DefaultPlotWorld
    -
    -
    -
    -
    public abstract class PlotWorld
    -extends java.lang.Object
    -
    -
    Author:
    -
    Jesse Boyd
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        BLOCKS

        -
        public static java.util.ArrayList<org.bukkit.Material> BLOCKS
        -
      • -
      - - - -
        -
      • -

        AUTO_MERGE_DEFAULT

        -
        public static boolean AUTO_MERGE_DEFAULT
        -
      • -
      - - - -
        -
      • -

        MOB_SPAWNING_DEFAULT

        -
        public static boolean MOB_SPAWNING_DEFAULT
        -
      • -
      - - - -
        -
      • -

        PLOT_BIOME_DEFAULT

        -
        public static org.bukkit.block.Biome PLOT_BIOME_DEFAULT
        -
      • -
      - - - -
        -
      • -

        PLOT_CHAT_DEFAULT

        -
        public static boolean PLOT_CHAT_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_CLAIM_SPECIFY_DEFAULT

        -
        public static boolean SCHEMATIC_CLAIM_SPECIFY_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_ON_CLAIM_DEFAULT

        -
        public static boolean SCHEMATIC_ON_CLAIM_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_FILE_DEFAULT

        -
        public static java.lang.String SCHEMATIC_FILE_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SCHEMATICS_DEFAULT

        -
        public static java.util.List<java.lang.String> SCHEMATICS_DEFAULT
        -
      • -
      - - - -
        -
      • -

        DEFAULT_FLAGS_DEFAULT

        -
        public static java.util.List<java.lang.String> DEFAULT_FLAGS_DEFAULT
        -
      • -
      - - - -
        -
      • -

        USE_ECONOMY_DEFAULT

        -
        public static boolean USE_ECONOMY_DEFAULT
        -
      • -
      - - - -
        -
      • -

        PLOT_PRICE_DEFAULT

        -
        public static double PLOT_PRICE_DEFAULT
        -
      • -
      - - - -
        -
      • -

        MERGE_PRICE_DEFAULT

        -
        public static double MERGE_PRICE_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SELL_PRICE_DEFAULT

        -
        public static double SELL_PRICE_DEFAULT
        -
      • -
      - - - -
        -
      • -

        PVP_DEFAULT

        -
        public static boolean PVP_DEFAULT
        -
      • -
      - - - -
        -
      • -

        PVE_DEFAULT

        -
        public static boolean PVE_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SPAWN_EGGS_DEFAULT

        -
        public static boolean SPAWN_EGGS_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SPAWN_CUSTOM_DEFAULT

        -
        public static boolean SPAWN_CUSTOM_DEFAULT
        -
      • -
      - - - -
        -
      • -

        SPAWN_BREEDING_DEFAULT

        -
        public static boolean SPAWN_BREEDING_DEFAULT
        -
      • -
      - - - -
        -
      • -

        AUTO_MERGE

        -
        public boolean AUTO_MERGE
        -
      • -
      - - - -
        -
      • -

        MOB_SPAWNING

        -
        public boolean MOB_SPAWNING
        -
      • -
      - - - -
        -
      • -

        PLOT_BIOME

        -
        public org.bukkit.block.Biome PLOT_BIOME
        -
      • -
      - - - -
        -
      • -

        PLOT_CHAT

        -
        public boolean PLOT_CHAT
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_CLAIM_SPECIFY

        -
        public boolean SCHEMATIC_CLAIM_SPECIFY
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_ON_CLAIM

        -
        public boolean SCHEMATIC_ON_CLAIM
        -
      • -
      - - - -
        -
      • -

        SCHEMATIC_FILE

        -
        public java.lang.String SCHEMATIC_FILE
        -
      • -
      - - - -
        -
      • -

        SCHEMATICS

        -
        public java.util.List<java.lang.String> SCHEMATICS
        -
      • -
      - - - -
        -
      • -

        DEFAULT_FLAGS

        -
        public java.util.List<java.lang.String> DEFAULT_FLAGS
        -
      • -
      - - - -
        -
      • -

        USE_ECONOMY

        -
        public boolean USE_ECONOMY
        -
      • -
      - - - -
        -
      • -

        PLOT_PRICE

        -
        public double PLOT_PRICE
        -
      • -
      - - - -
        -
      • -

        MERGE_PRICE

        -
        public double MERGE_PRICE
        -
      • -
      - - - -
        -
      • -

        SELL_PRICE

        -
        public double SELL_PRICE
        -
      • -
      - - - -
        -
      • -

        PVP

        -
        public boolean PVP
        -
      • -
      - - - -
        -
      • -

        PVE

        -
        public boolean PVE
        -
      • -
      - - - -
        -
      • -

        SPAWN_EGGS

        -
        public boolean SPAWN_EGGS
        -
      • -
      - - - -
        -
      • -

        SPAWN_CUSTOM

        -
        public boolean SPAWN_CUSTOM
        -
      • -
      - - - -
        -
      • -

        SPAWN_BREEDING

        -
        public boolean SPAWN_BREEDING
        -
      • -
      - - - -
        -
      • -

        worldname

        -
        public java.lang.String worldname
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotWorld

        -
        public PlotWorld(java.lang.String worldname)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        loadDefaultConfiguration

        -
        public void loadDefaultConfiguration(org.bukkit.configuration.ConfigurationSection config)
        -
        When a world is created, the following method will be called for each
        -
        -
        Parameters:
        -
        config - Configuration Section
        -
        -
      • -
      - - - -
        -
      • -

        loadConfiguration

        -
        public abstract void loadConfiguration(org.bukkit.configuration.ConfigurationSection config)
        -
      • -
      - - - -
        -
      • -

        saveConfiguration

        -
        public void saveConfiguration(org.bukkit.configuration.ConfigurationSection config)
        -
        Saving core plotworld settings
        -
        -
        Parameters:
        -
        config - Configuration Section
        -
        -
      • -
      - - - -
        -
      • -

        getSettingNodes

        -
        public abstract ConfigurationNode[] getSettingNodes()
        -
        Used for the /plot setup command Return null if you do not want to - support this feature -
        -
        -
        Returns:
        -
        ConfigurationNode[]
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html deleted file mode 100644 index 25df70d71..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/StringWrapper.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - StringWrapper - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class StringWrapper

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.StringWrapper
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class StringWrapper
    -extends java.lang.Object
    -
    -
    Author:
    -
    Empire92
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      java.lang.Stringvalue  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      StringWrapper(java.lang.String value) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object obj) - -
      Check if a wrapped string equals another one
      -
      inthashCode() - -
      Get the hash value
      -
      java.lang.StringtoString() - -
      Get the string value
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        value

        -
        public java.lang.String value
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        StringWrapper

        -
        public StringWrapper(java.lang.String value)
        -
        Constructor
        -
        -
        Parameters:
        -
        value - to wrap
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object obj)
        -
        Check if a wrapped string equals another one
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        Parameters:
        -
        obj - to compare
        -
        Returns:
        -
        true if obj equals the stored value
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        Get the string value
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        Returns:
        -
        string value
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        Get the hash value
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        Returns:
        -
        has value
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html deleted file mode 100644 index fe3f470ba..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/Title.html +++ /dev/null @@ -1,556 +0,0 @@ - - - - - - Title - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.object
-

Class Title

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.object.Title
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Title
    -extends java.lang.Object
    -
    Minecraft 1.8 Title
    -
    -
    Version:
    -
    1.0.3
    -
    Author:
    -
    Maxim Van de Wynckel
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      Title(java.lang.String title) - -
      Create a new 1.8 title
      -
      Title(java.lang.String title, - java.lang.String subtitle) - -
      Create a new 1.8 title
      -
      Title(java.lang.String title, - java.lang.String subtitle, - int fadeInTime, - int stayTime, - int fadeOutTime) - -
      Create a new 1.8 title
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidbroadcast() - -
      Broadcast the title to all players
      -
      voidclearTitle(org.bukkit.entity.Player player) - -
      Clear the title
      -
      voidresetTitle(org.bukkit.entity.Player player) - -
      Reset the title settings
      -
      voidsend(org.bukkit.entity.Player player) - -
      Send the title to a player
      -
      voidsetFadeInTime(int time) - -
      Set title fade in time
      -
      voidsetFadeOutTime(int time) - -
      Set title fade out time
      -
      voidsetStayTime(int time) - -
      Set title stay time
      -
      voidsetSubtitleColor(org.bukkit.ChatColor color) - -
      Set the subtitle color
      -
      voidsetTimingsToSeconds() - -
      Set timings to seconds
      -
      voidsetTimingsToTicks() - -
      Set timings to ticks
      -
      voidsetTitleColor(org.bukkit.ChatColor color) - -
      Set the title color
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Title

        -
        public Title(java.lang.String title)
        -
        Create a new 1.8 title
        -
        -
        Parameters:
        -
        title - Title
        -
        -
      • -
      - - - -
        -
      • -

        Title

        -
        public Title(java.lang.String title,
        -     java.lang.String subtitle)
        -
        Create a new 1.8 title
        -
        -
        Parameters:
        -
        title - Title text
        -
        subtitle - Subtitle text
        -
        -
      • -
      - - - -
        -
      • -

        Title

        -
        public Title(java.lang.String title,
        -     java.lang.String subtitle,
        -     int fadeInTime,
        -     int stayTime,
        -     int fadeOutTime)
        -
        Create a new 1.8 title
        -
        -
        Parameters:
        -
        title - Title text
        -
        subtitle - Subtitle text
        -
        fadeInTime - Fade in time
        -
        stayTime - Stay on screen time
        -
        fadeOutTime - Fade out time
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setTitleColor

        -
        public void setTitleColor(org.bukkit.ChatColor color)
        -
        Set the title color
        -
        -
        Parameters:
        -
        color - Chat color
        -
        -
      • -
      - - - -
        -
      • -

        setSubtitleColor

        -
        public void setSubtitleColor(org.bukkit.ChatColor color)
        -
        Set the subtitle color
        -
        -
        Parameters:
        -
        color - Chat color
        -
        -
      • -
      - - - -
        -
      • -

        setFadeInTime

        -
        public void setFadeInTime(int time)
        -
        Set title fade in time
        -
        -
        Parameters:
        -
        time - Time
        -
        -
      • -
      - - - -
        -
      • -

        setFadeOutTime

        -
        public void setFadeOutTime(int time)
        -
        Set title fade out time
        -
        -
        Parameters:
        -
        time - Time
        -
        -
      • -
      - - - -
        -
      • -

        setStayTime

        -
        public void setStayTime(int time)
        -
        Set title stay time
        -
        -
        Parameters:
        -
        time - Time
        -
        -
      • -
      - - - -
        -
      • -

        setTimingsToTicks

        -
        public void setTimingsToTicks()
        -
        Set timings to ticks
        -
      • -
      - - - -
        -
      • -

        setTimingsToSeconds

        -
        public void setTimingsToSeconds()
        -
        Set timings to seconds
        -
      • -
      - - - -
        -
      • -

        send

        -
        public void send(org.bukkit.entity.Player player)
        -
        Send the title to a player
        -
        -
        Parameters:
        -
        player - Player
        -
        -
      • -
      - - - -
        -
      • -

        broadcast

        -
        public void broadcast()
        -
        Broadcast the title to all players
        -
      • -
      - - - -
        -
      • -

        clearTitle

        -
        public void clearTitle(org.bukkit.entity.Player player)
        -
        Clear the title
        -
        -
        Parameters:
        -
        player - Player
        -
        -
      • -
      - - - -
        -
      • -

        resetTitle

        -
        public void resetTitle(org.bukkit.entity.Player player)
        -
        Reset the title settings
        -
        -
        Parameters:
        -
        player - Player
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html deleted file mode 100644 index f52ac8ba2..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-frame.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - com.intellectualcrafters.plot.object - - - - -

com.intellectualcrafters.plot.object -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html deleted file mode 100644 index df556725d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-summary.html +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - com.intellectualcrafters.plot.object - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.object

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html deleted file mode 100644 index cdef55b17..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/object/package-tree.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - com.intellectualcrafters.plot.object Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.object

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.object.BlockWrapper
    • -
    • org.bukkit.generator.ChunkGenerator - -
    • -
    • com.intellectualcrafters.plot.object.InfoInventory - (implements org.bukkit.inventory.InventoryHolder) -
    • -
    • com.intellectualcrafters.plot.object.Plot - (implements java.lang.Cloneable) -
    • -
    • com.intellectualcrafters.plot.object.PlotBlock -
    • -
    • com.intellectualcrafters.plot.object.PlotComment
    • -
    • com.intellectualcrafters.plot.object.PlotId -
    • -
    • com.intellectualcrafters.plot.object.PlotManager
    • -
    • com.intellectualcrafters.plot.object.PlotSelection -
    • -
    • com.intellectualcrafters.plot.object.PlotSettings
    • -
    • com.intellectualcrafters.plot.object.PlotWorld -
    • -
    • com.intellectualcrafters.plot.object.StringWrapper -
    • -
    • com.intellectualcrafters.plot.object.Title
    • -
    -
  • -
-

Enum Hierarchy

-
    -
  • java.lang.Object -
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, - java.io.Serializable) - -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html deleted file mode 100644 index 98461ca71..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/package-frame.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - com.intellectualcrafters.plot - - - - -

com.intellectualcrafters.plot -

- -
-

Classes

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html deleted file mode 100644 index ab3c4685f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/package-summary.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - com.intellectualcrafters.plot - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot

-
-
-
    -
  • - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    PlotMain -
    PlotMain class.
    -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html deleted file mode 100644 index 1779c5eb0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/package-tree.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - com.intellectualcrafters.plot Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • org.bukkit.plugin.PluginBase (implements org.bukkit.plugin.Plugin) -
        -
      • org.bukkit.plugin.java.JavaPlugin -
          -
        • com.intellectualcrafters.plot.PlotMain
        • -
        -
      • -
      -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html deleted file mode 100644 index fe51258d8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ConsoleColors.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - ConsoleColors - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ConsoleColors

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ConsoleColors
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ConsoleColors
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      ConsoleColors()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static - com.intellectualcrafters.plot.util.ConsoleColors.ConsoleColorchatColor(org.bukkit.ChatColor color)  -
      static java.lang.StringfromChatColor(org.bukkit.ChatColor color)  -
      static java.lang.StringfromString(java.lang.String input)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ConsoleColors

        -
        public ConsoleColors()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        fromString

        -
        public static java.lang.String fromString(java.lang.String input)
        -
      • -
      - - - -
        -
      • -

        fromChatColor

        -
        public static java.lang.String fromChatColor(org.bukkit.ChatColor color)
        -
      • -
      - - - -
        -
      • -

        chatColor

        -
        public static com.intellectualcrafters.plot.util.ConsoleColors.ConsoleColor chatColor(org.bukkit.ChatColor color)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html deleted file mode 100644 index 1c43d42a9..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.LCycler.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - LSetCube.LCycler - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class LSetCube.LCycler

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.LSetCube.LCycler
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    LSetCube
    -
    -
    -
    -
    protected class LSetCube.LCycler
    -extends java.lang.Object
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      org.bukkit.LocationgetNext()  -
      booleanhasNext()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        LSetCube.LCycler

        -
        public LSetCube.LCycler(LSetCube cube)
        -
        -
        Parameters:
        -
        cube -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        hasNext

        -
        public boolean hasNext()
        -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getNext

        -
        public org.bukkit.Location getNext()
        -
        -
        Returns:
        -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html deleted file mode 100644 index 873804aec..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/LSetCube.html +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - LSetCube - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class LSetCube

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.LSetCube
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class LSetCube
    -extends java.lang.Object
    -
    Cube utilities
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      protected class LSetCube.LCycler  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      LSetCube(org.bukkit.Location l1, - int size) - -
      Secondary constructor
      -
      LSetCube(org.bukkit.Location l1, - org.bukkit.Location l2) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      LSetCube.LCycler - getCycler() - -
      Creates a LCycler for the cube.
      -
      org.bukkit.LocationmaxLoc() - -
      Returns the absolute max. of the cube
      -
      org.bukkit.LocationminLoc() - -
      Returns the absolute min. of the cube
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        LSetCube

        -
        public LSetCube(org.bukkit.Location l1,
        -        org.bukkit.Location l2)
        -
        Constructor
        -
        -
        Parameters:
        -
        l1 -
        -
        l2 -
        -
        -
      • -
      - - - -
        -
      • -

        LSetCube

        -
        public LSetCube(org.bukkit.Location l1,
        -        int size)
        -
        Secondary constructor
        -
        -
        Parameters:
        -
        l1 -
        -
        size -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        minLoc

        -
        public org.bukkit.Location minLoc()
        -
        Returns the absolute min. of the cube
        -
        -
        Returns:
        -
        abs. min
        -
        -
      • -
      - - - -
        -
      • -

        maxLoc

        -
        public org.bukkit.Location maxLoc()
        -
        Returns the absolute max. of the cube
        -
        -
        Returns:
        -
        abs. max
        -
        -
      • -
      - - - -
        -
      • -

        getCycler

        -
        public LSetCube.LCycler getCycler()
        -
        Creates a LCycler for the cube.
        -
        -
        Returns:
        -
        new lcycler
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html deleted file mode 100644 index 472df75e8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/Lag.html +++ /dev/null @@ -1,478 +0,0 @@ - - - - - - Lag - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class Lag

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.Lag
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.lang.Runnable
    -
    -
    -
    -
    public class Lag
    -extends java.lang.Object
    -implements java.lang.Runnable
    -
    TPS and Lag Checker.
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static longLT - -
      something :_:
      -
      static long[]T - -
      Ticks
      -
      static intTC - -
      Tick count
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Lag()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static longgetElapsed(int tI) - -
      Get number of ticks since
      -
      static doublegetFullPercentage() - -
      Get TPS percentage (of 20)
      -
      static doublegetPercentage() - -
      Get lag percentage
      -
      static doublegetTPS() - -
      Get the server TPS
      -
      static doublegetTPS(int ticks) - -
      Return the tick per second (measured in $ticks)
      -
      voidrun()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        TC

        -
        public static int TC
        -
        Tick count
        -
      • -
      - - - -
        -
      • -

        T

        -
        public static long[] T
        -
        Ticks
        -
      • -
      - - - -
        -
      • -

        LT

        -
        public static long LT
        -
        something :_:
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Lag

        -
        public Lag()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getTPS

        -
        public static double getTPS()
        -
        Get the server TPS
        -
        -
        Returns:
        -
        server tick per second
        -
        -
      • -
      - - - -
        -
      • -

        getTPS

        -
        public static double getTPS(int ticks)
        -
        Return the tick per second (measured in $ticks)
        -
        -
        Parameters:
        -
        ticks - Ticks
        -
        Returns:
        -
        ticks per second
        -
        -
      • -
      - - - -
        -
      • -

        getElapsed

        -
        public static long getElapsed(int tI)
        -
        Get number of ticks since
        -
        -
        Parameters:
        -
        tI - Ticks <
        -
        Returns:
        -
        number of ticks since $tI
        -
        -
      • -
      - - - -
        -
      • -

        getPercentage

        -
        public static double getPercentage()
        -
        Get lag percentage
        -
        -
        Returns:
        -
        lag percentage
        -
        -
      • -
      - - - -
        -
      • -

        getFullPercentage

        -
        public static double getFullPercentage()
        -
        Get TPS percentage (of 20)
        -
        -
        Returns:
        -
        TPS percentage
        -
        -
      • -
      - - - -
        -
      • -

        run

        -
        public void run()
        -
        -
        Specified by:
        -
        run in interface java.lang.Runnable
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html deleted file mode 100644 index b235b8542..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.LogLevel.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - Logger.LogLevel - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Enum Logger.LogLevel

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Enum<Logger.LogLevel>
    • -
    • -
        -
      • com.intellectualcrafters.plot.util.Logger.LogLevel
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable, java.lang.Comparable<Logger.LogLevel>
    -
    -
    -
    Enclosing class:
    -
    Logger
    -
    -
    -
    -
    public static enum Logger.LogLevel
    -extends java.lang.Enum<Logger.LogLevel>
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Enum Constant Summary

      - - - - - - - - - - - - - - -
      Enum Constants 
      Enum Constant and Description
      DANGER  -
      GENERAL  -
      WARNING  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringtoString()  -
      static Logger.LogLevelvalueOf(java.lang.String name) - -
      Returns the enum constant of this type with the specified name.
      -
      static Logger.LogLevel[]values() - -
      Returns an array containing the constants of this enum type, in - the order they are declared. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Enum

        - clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, - valueOf
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static Logger.LogLevel[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (Logger.LogLevel c : Logger.LogLevel.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are - declared -
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static Logger.LogLevel valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant - with the specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Enum<Logger.LogLevel> -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html deleted file mode 100644 index 2b399850d..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/Logger.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - Logger - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class Logger

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.Logger
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Logger
    -extends java.lang.Object
    -
    Logging of errors and debug messages.
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      static class Logger.LogLevel  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Logger()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidadd(Logger.LogLevel level, - java.lang.String string) 
      static voidsetup(java.io.File file)  -
      static voidwrite()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Logger

        -
        public Logger()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setup

        -
        public static void setup(java.io.File file)
        -
      • -
      - - - -
        -
      • -

        write

        -
        public static void write()
        -                  throws java.io.IOException
        -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      - - - -
        -
      • -

        add

        -
        public static void add(Logger.LogLevel level,
        -       java.lang.String string)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html deleted file mode 100644 index b0951cd68..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Graph.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - Metrics.Graph - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class Metrics.Graph

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.Metrics.Graph
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    Metrics
    -
    -
    -
    -
    public static class Metrics.Graph
    -extends java.lang.Object
    -
    Represents a custom graph on the website
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidaddPlotter(Metrics.Plotter plotter) - -
      Add a plotter to the graph, which will be used to plot entries -
      -
      booleanequals(java.lang.Object object)  -
      java.lang.StringgetName() - -
      Gets the graph's name
      -
      java.util.Set<Metrics.Plotter> - getPlotters() - -
      Gets an unmodifiable set of the plotter objects in the - graph -
      -
      inthashCode()  -
      protected voidonOptOut() - -
      Called when the server owner decides to opt-out of BukkitMetrics - while the server is running. -
      -
      voidremovePlotter(Metrics.Plotter plotter) - -
      Remove a plotter from the graph
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait -
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getName

        -
        public java.lang.String getName()
        -
        Gets the graph's name
        -
        -
        Returns:
        -
        the Graph's name
        -
        -
      • -
      - - - -
        -
      • -

        addPlotter

        -
        public void addPlotter(Metrics.Plotter plotter)
        -
        Add a plotter to the graph, which will be used to plot entries
        -
        -
        Parameters:
        -
        plotter - the plotter to add to the graph
        -
        -
      • -
      - - - -
        -
      • -

        removePlotter

        -
        public void removePlotter(Metrics.Plotter plotter)
        -
        Remove a plotter from the graph
        -
        -
        Parameters:
        -
        plotter - the plotter to remove from the graph
        -
        -
      • -
      - - - -
        -
      • -

        getPlotters

        -
        public java.util.Set<Metrics.Plotter> getPlotters()
        -
        Gets an unmodifiable set of the plotter objects in the graph -
        -
        -
        Returns:
        -
        an unmodifiable Set of the plotter objects
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object object)
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        onOptOut

        -
        protected void onOptOut()
        -
        Called when the server owner decides to opt-out of BukkitMetrics - while the server is running. -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html deleted file mode 100644 index bff8e0fca..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.Plotter.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - Metrics.Plotter - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class Metrics.Plotter

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.Metrics.Plotter
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    Metrics
    -
    -
    -
    -
    public abstract static class Metrics.Plotter
    -extends java.lang.Object
    -
    Interface used to collect custom data for a plugin
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      Metrics.Plotter() - -
      Construct a plotter with the default plot name
      -
      Metrics.Plotter(java.lang.String name) - -
      Construct a plotter with a specific plot name
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object object)  -
      java.lang.StringgetColumnName() - -
      Get the column name for the plotted point
      -
      abstract intgetValue() - -
      Get the current value for the plotted point.
      -
      inthashCode()  -
      voidreset() - -
      Called after the website graphs have been updated
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Metrics.Plotter

        -
        public Metrics.Plotter()
        -
        Construct a plotter with the default plot name
        -
      • -
      - - - -
        -
      • -

        Metrics.Plotter

        -
        public Metrics.Plotter(java.lang.String name)
        -
        Construct a plotter with a specific plot name
        -
        -
        Parameters:
        -
        name - the name of the plotter to use, which will show up on the - website -
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getValue

        -
        public abstract int getValue()
        -
        Get the current value for the plotted point. Since this function - defers to an external function it may or may not return immediately - thus cannot be guaranteed to be thread friendly or safe. This - function can be called from any thread so care should be taken when - accessing resources that need to be synchronized. -
        -
        -
        Returns:
        -
        the current value for the point to be plotted.
        -
        -
      • -
      - - - -
        -
      • -

        getColumnName

        -
        public java.lang.String getColumnName()
        -
        Get the column name for the plotted point
        -
        -
        Returns:
        -
        the plotted point's column name
        -
        -
      • -
      - - - -
        -
      • -

        reset

        -
        public void reset()
        -
        Called after the website graphs have been updated
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(java.lang.Object object)
        -
        -
        Overrides:
        -
        equals in class java.lang.Object
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html deleted file mode 100644 index 2d644a2ba..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/Metrics.html +++ /dev/null @@ -1,515 +0,0 @@ - - - - - - Metrics - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class Metrics

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.Metrics
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class Metrics
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Nested Class Summary

      - - - - - - - - - - - - - - -
      Nested Classes 
      Modifier and TypeClass and Description
      static class Metrics.Graph - -
      Represents a custom graph on the website
      -
      static class Metrics.Plotter - -
      Interface used to collect custom data for a plugin
      -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      Metrics(org.bukkit.plugin.Plugin plugin)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidaddGraph(Metrics.Graph graph) - -
      Add a Graph object to BukkitMetrics that represents data for the - plugin - that should be sent to the backend -
      -
      Metrics.GraphcreateGraph(java.lang.String name) - -
      Construct and create a Graph that can be used to separate specific - plotters to their own graphs on the metrics website. -
      -
      voiddisable() - -
      Disables metrics for the server by setting "opt-out" to true in the - config file and canceling the metrics task. -
      -
      voidenable() - -
      Enables metrics for the server by setting "opt-out" to false in the - config file and starting the metrics task. -
      -
      java.io.FilegetConfigFile() - -
      Gets the File object of the config file that should be used to store - data - such as the GUID and opt-out status -
      -
      static byte[]gzip(java.lang.String input) - -
      GZip compress a string of bytes
      -
      booleanisOptOut() - -
      Has the server owner denied plugin metrics?
      -
      booleanstart() - -
      Start measuring statistics.
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        Metrics

        -
        public Metrics(org.bukkit.plugin.Plugin plugin)
        -        throws java.io.IOException
        -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        gzip

        -
        public static byte[] gzip(java.lang.String input)
        -
        GZip compress a string of bytes
        -
        -
        Parameters:
        -
        input -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        createGraph

        -
        public Metrics.Graph createGraph(java.lang.String name)
        -
        Construct and create a Graph that can be used to separate specific - plotters to their own graphs on the metrics website. Plotters can be - added to the graph object returned. -
        -
        -
        Parameters:
        -
        name - The name of the graph
        -
        Returns:
        -
        Graph object created. Will never return NULL under normal - circumstances unless bad parameters are given -
        -
        -
      • -
      - - - -
        -
      • -

        addGraph

        -
        public void addGraph(Metrics.Graph graph)
        -
        Add a Graph object to BukkitMetrics that represents data for the plugin - that should be sent to the backend -
        -
        -
        Parameters:
        -
        graph - The name of the graph
        -
        -
      • -
      - - - -
        -
      • -

        start

        -
        public boolean start()
        -
        Start measuring statistics. This will immediately create an async - repeating task as the plugin and send the initial data to the metrics - backend, and then after that it will post in increments of PING_INTERVAL - * 1200 ticks. -
        -
        -
        Returns:
        -
        True if statistics measuring is running, otherwise false.
        -
        -
      • -
      - - - -
        -
      • -

        isOptOut

        -
        public boolean isOptOut()
        -
        Has the server owner denied plugin metrics?
        -
        -
        Returns:
        -
        true if metrics should be opted out of it
        -
        -
      • -
      - - - -
        -
      • -

        enable

        -
        public void enable()
        -            throws java.io.IOException
        -
        Enables metrics for the server by setting "opt-out" to false in the - config file and starting the metrics task. -
        -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      - - - -
        -
      • -

        disable

        -
        public void disable()
        -             throws java.io.IOException
        -
        Disables metrics for the server by setting "opt-out" to true in the - config file and canceling the metrics task. -
        -
        -
        Throws:
        -
        java.io.IOException
        -
        -
      • -
      - - - -
        -
      • -

        getConfigFile

        -
        public java.io.File getConfigFile()
        -
        Gets the File object of the config file that should be used to store data - such as the GUID and opt-out status -
        -
        -
        Returns:
        -
        the File object for the config file
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html deleted file mode 100644 index 7a0d59331..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/PWE.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - PWE - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class PWE

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.PWE
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PWE
    -extends java.lang.Object
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PWE()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static booleannoMask(com.sk89q.worldedit.LocalSession s)  -
      static voidremoveMask(org.bukkit.entity.Player p)  -
      static voidremoveMask(org.bukkit.entity.Player p, - com.sk89q.worldedit.LocalSession s) 
      static voidsetMask(org.bukkit.entity.Player p, - org.bukkit.Location l) 
      static voidsetNoMask(org.bukkit.entity.Player p)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PWE

        -
        public PWE()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        setMask

        -
        public static void setMask(org.bukkit.entity.Player p,
        -           org.bukkit.Location l)
        -
      • -
      - - - -
        -
      • -

        noMask

        -
        public static boolean noMask(com.sk89q.worldedit.LocalSession s)
        -
      • -
      - - - -
        -
      • -

        setNoMask

        -
        public static void setNoMask(org.bukkit.entity.Player p)
        -
      • -
      - - - -
        -
      • -

        removeMask

        -
        public static void removeMask(org.bukkit.entity.Player p,
        -              com.sk89q.worldedit.LocalSession s)
        -
      • -
      - - - -
        -
      • -

        removeMask

        -
        public static void removeMask(org.bukkit.entity.Player p)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html deleted file mode 100644 index 3256b8fb0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlayerFunctions.html +++ /dev/null @@ -1,707 +0,0 @@ - - - - - - PlayerFunctions - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class PlayerFunctions

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.PlayerFunctions
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlayerFunctions
    -extends java.lang.Object
    -
    Functions involving players, plots and locations.
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlayerFunctions()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static intgetAllowedPlots(org.bukkit.entity.Player p) - -
      Get the maximum number of plots a player is allowed
      -
      static PlotgetBottomPlot(org.bukkit.World world, - Plot plot)  -
      static PlotgetCurrentPlot(org.bukkit.entity.Player player) - -
      Returns the plot a player is currently in.
      -
      static java.util.ArrayList<PlotId>getMaxPlotSelectionIds(org.bukkit.World world, - PlotId pos1, - PlotId pos2)  -
      static intgetPlayerPlotCount(org.bukkit.World world, - org.bukkit.entity.Player plr) - -
      Get the number of plots for a player
      -
      static java.util.Set<Plot>getPlayerPlots(org.bukkit.World world, - org.bukkit.entity.Player plr) - -
      Get the plots for a player
      -
      static PlotIdgetPlot(org.bukkit.Location loc) - -
      Returns the plot id at a location (mega plots are considered)
      -
      static PlotIdgetPlotAbs(org.bukkit.Location loc) - -
      Returns the plot at a location (mega plots are not considered, all - plots - are treated as small plots) -
      -
      static java.util.Set<Plot>getPlots() - -
      Deprecated.  
      -
      static java.util.ArrayList<PlotId>getPlotSelectionIds(org.bukkit.World world, - PlotId pos1, - PlotId pos2)  -
      static PlotgetTopPlot(org.bukkit.World world, - Plot plot)  -
      static booleanhasExpired(Plot plot)  -
      static booleanisInPlot(org.bukkit.entity.Player player)  -
      static booleansendMessage(org.bukkit.entity.Player plr, - C c, - java.lang.String... args) - -
      Send a message to the player
      -
      static booleansendMessage(org.bukkit.entity.Player plr, - java.lang.String msg) - -
      Send a message to the player
      -
      static voidsendMessageWrapped(org.bukkit.entity.Player plr, - java.lang.String msg) - -
      \\previous\\
      -
      static voidset(Plot plot) - -
      Deprecated.  
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlayerFunctions

        -
        public PlayerFunctions()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        isInPlot

        -
        public static boolean isInPlot(org.bukkit.entity.Player player)
        -
        -
        Parameters:
        -
        player - player
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        hasExpired

        -
        public static boolean hasExpired(Plot plot)
        -
        -
        Parameters:
        -
        plot - plot
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlotSelectionIds

        -
        public static java.util.ArrayList<PlotId> getPlotSelectionIds(org.bukkit.World world,
        -                                              PlotId pos1,
        -                                              PlotId pos2)
        -
      • -
      - - - -
        -
      • -

        getMaxPlotSelectionIds

        -
        public static java.util.ArrayList<PlotId> getMaxPlotSelectionIds(org.bukkit.World world,
        -                                                 PlotId pos1,
        -                                                 PlotId pos2)
        -
      • -
      - - - -
        -
      • -

        getBottomPlot

        -
        public static Plot getBottomPlot(org.bukkit.World world,
        -                 Plot plot)
        -
      • -
      - - - -
        -
      • -

        getTopPlot

        -
        public static Plot getTopPlot(org.bukkit.World world,
        -              Plot plot)
        -
      • -
      - - - -
        -
      • -

        getPlotAbs

        -
        public static PlotId getPlotAbs(org.bukkit.Location loc)
        -
        Returns the plot at a location (mega plots are not considered, all plots - are treated as small plots) -
        -
        -
        Parameters:
        -
        loc -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public static PlotId getPlot(org.bukkit.Location loc)
        -
        Returns the plot id at a location (mega plots are considered)
        -
        -
        Parameters:
        -
        loc -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getCurrentPlot

        -
        public static Plot getCurrentPlot(org.bukkit.entity.Player player)
        -
        Returns the plot a player is currently in.
        -
        -
        Parameters:
        -
        player -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        set

        -
        @Deprecated
        -public static void set(Plot plot)
        -
        Deprecated. 
        -
        Updates a given plot with another instance
        -
        -
        Parameters:
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        getPlayerPlots

        -
        public static java.util.Set<Plot> getPlayerPlots(org.bukkit.World world,
        -                                 org.bukkit.entity.Player plr)
        -
        Get the plots for a player
        -
        -
        Parameters:
        -
        plr -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlayerPlotCount

        -
        public static int getPlayerPlotCount(org.bukkit.World world,
        -                     org.bukkit.entity.Player plr)
        -
        Get the number of plots for a player
        -
        -
        Parameters:
        -
        plr -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getAllowedPlots

        -
        public static int getAllowedPlots(org.bukkit.entity.Player p)
        -
        Get the maximum number of plots a player is allowed
        -
        -
        Parameters:
        -
        p -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlots

        -
        @Deprecated
        -public static java.util.Set<Plot> getPlots()
        -
        Deprecated. 
        -
        -
        Returns:
        -
        PlotMain.getPlots();
        -
        -
      • -
      - - - -
        -
      • -

        sendMessageWrapped

        -
        public static void sendMessageWrapped(org.bukkit.entity.Player plr,
        -                      java.lang.String msg)
        -
        \\previous\\
        -
        -
        Parameters:
        -
        plr -
        -
        msg - Was used to wrap the chat client length (Packets out--)
        -
        -
      • -
      - - - -
        -
      • -

        sendMessage

        -
        public static boolean sendMessage(org.bukkit.entity.Player plr,
        -                  java.lang.String msg)
        -
        Send a message to the player
        -
        -
        Parameters:
        -
        plr - Player to recieve message
        -
        msg - Message to send
        -
        Returns:
        -
        true - Can be used in things such as commands (return PlayerFunctions.sendMessage(...)) -
        -
        -
      • -
      - - - -
        -
      • -

        sendMessage

        -
        public static boolean sendMessage(org.bukkit.entity.Player plr,
        -                  C c,
        -                  java.lang.String... args)
        -
        Send a message to the player
        -
        -
        Parameters:
        -
        plr - Player to recieve message
        -
        c - Caption to send
        -
        Returns:
        -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html deleted file mode 100644 index 1a37515c9..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotHelper.html +++ /dev/null @@ -1,1294 +0,0 @@ - - - - - - PlotHelper - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class PlotHelper

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.PlotHelper
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class PlotHelper
    -extends java.lang.Object
    -
    plot functions
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Summary

      - - - - - - - - - - - - - - - - - - -
      Fields 
      Modifier and TypeField and Description
      static booleancanSetFast  -
      static java.util.HashMap<Plot,java.lang.Integer>runners  -
      static java.util.ArrayList<java.lang.String>runners_p  -
      -
    • -
    - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotHelper()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidadjustWall(org.bukkit.entity.Player player, - Plot plot, - PlotBlock block) - -
      Adjusts a plot wall
      -
      static voidadjustWallFilling(org.bukkit.entity.Player requester, - Plot plot, - PlotBlock block) 
      static voidautoMerge(org.bukkit.World world, - Plot plot, - org.bukkit.entity.Player player) 
      static voidclear(org.bukkit.entity.Player requester, - Plot plot) - -
      Clear a plot
      -
      static voidclear(org.bukkit.World world, - Plot plot) 
      static voidclearAllEntities(org.bukkit.World world, - Plot plot, - boolean tile) 
      static java.lang.StringcreateId(int x, - int z) 
      static booleancreatePlot(org.bukkit.entity.Player player, - Plot plot) 
      static short[]getBlock(java.lang.String block)  -
      static PlotgetCurrentPlot(org.bukkit.Location loc) - -
      Returns the plot at a given location
      -
      static intgetEntities(org.bukkit.World world)  -
      static intgetHeighestBlock(org.bukkit.World world, - int x, - int z) 
      static intgetLoadedChunks(org.bukkit.World world)  -
      static java.lang.StringgetPlayerName(java.util.UUID uuid)  -
      static PlotgetPlot(org.bukkit.World world, - PlotId id) - -
      Fetches the plot from the main class
      -
      static org.bukkit.LocationgetPlotBottomLoc(org.bukkit.World world, - PlotId id) - -
      Gets the bottom loc of a plot (if mega, returns bottom loc of that mega - plot) - - If you would like each plot treated as a small plot use - getPlotBottomLocAbs(...) -
      -
      static org.bukkit.LocationgetPlotBottomLocAbs(org.bukkit.World world, - PlotId id) - -
      Gets the bottom plot location of a plot (all plots are treated as small - plots) - - To get the top loc of a mega plot use getPlotBottomLoc(...) -
      -
      static org.bukkit.LocationgetPlotHome(org.bukkit.World w, - Plot plot) 
      static org.bukkit.LocationgetPlotHome(org.bukkit.World w, - PlotId plotid) 
      static PlotIdgetPlotIdRelative(PlotId id, - int direction) - -
      direction 0 = north, 1 = south, etc:
      -
      static org.bukkit.LocationgetPlotTopLoc(org.bukkit.World world, - PlotId id) - -
      Gets the top loc of a plot (if mega, returns top loc of that mega plot) - - If you would like each plot treated as a small plot use - getPlotTopLocAbs(...) -
      -
      static org.bukkit.LocationgetPlotTopLocAbs(org.bukkit.World world, - PlotId id) - -
      Gets the top plot location of a plot (all plots are treated as small - plots) - - To get the top loc of a mega plot use getPlotTopLoc(...) -
      -
      static intgetPlotWidth(org.bukkit.World world, - PlotId id) - -
      Obtains the width of a plot (x width)
      -
      static java.lang.StringgetStringSized(int max, - java.lang.String string) 
      static intgetTileEntities(org.bukkit.World world)  -
      static doublegetWorldFolderSize(org.bukkit.World world)  -
      static voidmergePlot(org.bukkit.World world, - Plot lesserPlot, - Plot greaterPlot) - -
      Merges 2 plots Removes the road inbetween
      - - Assumes the first plot parameter is lower
      - - Assumes neither are a Mega-plot
      - - Assumes plots are directly next to each other
      - - Saves to DB -
      -
      static booleanmergePlots(org.bukkit.entity.Player plr, - org.bukkit.World world, - java.util.ArrayList<PlotId> plotIds) - -
      Merges all plots in the arraylist (with cost)
      -
      static booleanmergePlots(org.bukkit.World world, - java.util.ArrayList<PlotId> plotIds) - -
      Completely merges a set of plots
      - (There are no checks to make sure you supply the correct - arguments)
      - - Misuse of this method can result in unusable plots
      - - the set of plots must belong to one owner and be rectangular
      - - the plot array must be sorted in ascending order
      - - Road will be removed where required
      - - changes will be saved to DB
      -
      static longnextLong()  -
      static intrandom(int n)  -
      static voidrefreshPlotChunks(org.bukkit.World world, - Plot plot) 
      static voidremoveSign(org.bukkit.World world, - Plot p) 
      static voidsetBiome(org.bukkit.World world, - Plot plot, - org.bukkit.block.Biome b) 
      static booleansetBlock(org.bukkit.block.Block block, - PlotBlock plotblock) - -
      Set a block quickly, attempts to use NMS if possible
      -
      static voidsetCuboid(org.bukkit.World world, - org.bukkit.Location pos1, - org.bukkit.Location pos2, - PlotBlock[] blocks) 
      static voidsetFloor(org.bukkit.entity.Player requester, - Plot plot, - PlotBlock[] blocks) 
      static voidsetSign(org.bukkit.entity.Player player, - Plot p) 
      static voidsetSign(org.bukkit.World world, - java.lang.String name, - Plot p) 
      static voidsetSimpleCuboid(org.bukkit.World world, - org.bukkit.Location pos1, - org.bukkit.Location pos2, - PlotBlock newblock) 
      static intsquare(int x)  -
      static longxorShift64(long a)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Field Detail

      - - - -
        -
      • -

        canSetFast

        -
        public static boolean canSetFast
        -
      • -
      - - - -
        -
      • -

        runners_p

        -
        public static java.util.ArrayList<java.lang.String> runners_p
        -
      • -
      - - - -
        -
      • -

        runners

        -
        public static java.util.HashMap<Plot,java.lang.Integer> runners
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotHelper

        -
        public PlotHelper()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getPlotIdRelative

        -
        public static PlotId getPlotIdRelative(PlotId id,
        -                       int direction)
        -
        direction 0 = north, 1 = south, etc:
        -
        -
        Parameters:
        -
        id -
        -
        direction -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        mergePlots

        -
        public static boolean mergePlots(org.bukkit.entity.Player plr,
        -                 org.bukkit.World world,
        -                 java.util.ArrayList<PlotId> plotIds)
        -
        Merges all plots in the arraylist (with cost)
        -
        -
        Parameters:
        -
        plr -
        -
        world -
        -
        plotIds -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        mergePlots

        -
        public static boolean mergePlots(org.bukkit.World world,
        -                 java.util.ArrayList<PlotId> plotIds)
        -
        Completely merges a set of plots
        - (There are no checks to make sure you supply the correct - arguments)
        - - Misuse of this method can result in unusable plots
        - - the set of plots must belong to one owner and be rectangular
        - - the plot array must be sorted in ascending order
        - - Road will be removed where required
        - - changes will be saved to DB
        -
        -
        Parameters:
        -
        world -
        -
        plotIds -
        -
        Returns:
        -
        boolean (success)
        -
        -
      • -
      - - - -
        -
      • -

        mergePlot

        -
        public static void mergePlot(org.bukkit.World world,
        -             Plot lesserPlot,
        -             Plot greaterPlot)
        -
        Merges 2 plots Removes the road inbetween
        - - Assumes the first plot parameter is lower
        - - Assumes neither are a Mega-plot
        - - Assumes plots are directly next to each other
        - - Saves to DB -
        -
        -
        Parameters:
        -
        world -
        -
        lesserPlot -
        -
        greaterPlot -
        -
        -
      • -
      - - - -
        -
      • -

        nextLong

        -
        public static long nextLong()
        -
      • -
      - - - -
        -
      • -

        xorShift64

        -
        public static long xorShift64(long a)
        -
      • -
      - - - -
        -
      • -

        random

        -
        public static int random(int n)
        -
      • -
      - - - -
        -
      • -

        removeSign

        -
        public static void removeSign(org.bukkit.World world,
        -              Plot p)
        -
      • -
      - - - -
        -
      • -

        setSign

        -
        public static void setSign(org.bukkit.entity.Player player,
        -           Plot p)
        -
      • -
      - - - -
        -
      • -

        setSign

        -
        public static void setSign(org.bukkit.World world,
        -           java.lang.String name,
        -           Plot p)
        -
      • -
      - - - -
        -
      • -

        getPlayerName

        -
        public static java.lang.String getPlayerName(java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        getStringSized

        -
        public static java.lang.String getStringSized(int max,
        -                              java.lang.String string)
        -
      • -
      - - - -
        -
      • -

        setBlock

        -
        public static boolean setBlock(org.bukkit.block.Block block,
        -               PlotBlock plotblock)
        -
        Set a block quickly, attempts to use NMS if possible
        -
        -
        Parameters:
        -
        block -
        -
        plotblock -
        -
        -
      • -
      - - - -
        -
      • -

        adjustWall

        -
        public static void adjustWall(org.bukkit.entity.Player player,
        -              Plot plot,
        -              PlotBlock block)
        -
        Adjusts a plot wall
        -
        -
        Parameters:
        -
        player -
        -
        plot -
        -
        block -
        -
        -
      • -
      - - - -
        -
      • -

        autoMerge

        -
        public static void autoMerge(org.bukkit.World world,
        -             Plot plot,
        -             org.bukkit.entity.Player player)
        -
      • -
      - - - -
        -
      • -

        createPlot

        -
        public static boolean createPlot(org.bukkit.entity.Player player,
        -                 Plot plot)
        -
      • -
      - - - -
        -
      • -

        getLoadedChunks

        -
        public static int getLoadedChunks(org.bukkit.World world)
        -
      • -
      - - - -
        -
      • -

        getEntities

        -
        public static int getEntities(org.bukkit.World world)
        -
      • -
      - - - -
        -
      • -

        getTileEntities

        -
        public static int getTileEntities(org.bukkit.World world)
        -
      • -
      - - - -
        -
      • -

        getWorldFolderSize

        -
        public static double getWorldFolderSize(org.bukkit.World world)
        -
      • -
      - - - -
        -
      • -

        createId

        -
        public static java.lang.String createId(int x,
        -                        int z)
        -
      • -
      - - - -
        -
      • -

        adjustWallFilling

        -
        public static void adjustWallFilling(org.bukkit.entity.Player requester,
        -                     Plot plot,
        -                     PlotBlock block)
        -
      • -
      - - - -
        -
      • -

        setFloor

        -
        public static void setFloor(org.bukkit.entity.Player requester,
        -            Plot plot,
        -            PlotBlock[] blocks)
        -
      • -
      - - - -
        -
      • -

        square

        -
        public static int square(int x)
        -
      • -
      - - - -
        -
      • -

        getBlock

        -
        public static short[] getBlock(java.lang.String block)
        -
      • -
      - - - -
        -
      • -

        clearAllEntities

        -
        public static void clearAllEntities(org.bukkit.World world,
        -                    Plot plot,
        -                    boolean tile)
        -
      • -
      - - - -
        -
      • -

        clear

        -
        public static void clear(org.bukkit.World world,
        -         Plot plot)
        -
      • -
      - - - -
        -
      • -

        clear

        -
        public static void clear(org.bukkit.entity.Player requester,
        -         Plot plot)
        -
        Clear a plot
        -
        -
        Parameters:
        -
        requester -
        -
        plot -
        -
        -
      • -
      - - - -
        -
      • -

        setCuboid

        -
        public static void setCuboid(org.bukkit.World world,
        -             org.bukkit.Location pos1,
        -             org.bukkit.Location pos2,
        -             PlotBlock[] blocks)
        -
      • -
      - - - -
        -
      • -

        setSimpleCuboid

        -
        public static void setSimpleCuboid(org.bukkit.World world,
        -                   org.bukkit.Location pos1,
        -                   org.bukkit.Location pos2,
        -                   PlotBlock newblock)
        -
      • -
      - - - -
        -
      • -

        setBiome

        -
        public static void setBiome(org.bukkit.World world,
        -            Plot plot,
        -            org.bukkit.block.Biome b)
        -
      • -
      - - - -
        -
      • -

        getHeighestBlock

        -
        public static int getHeighestBlock(org.bukkit.World world,
        -                   int x,
        -                   int z)
        -
      • -
      - - - -
        -
      • -

        getPlotHome

        -
        public static org.bukkit.Location getPlotHome(org.bukkit.World w,
        -                              PlotId plotid)
        -
      • -
      - - - -
        -
      • -

        getPlotHome

        -
        public static org.bukkit.Location getPlotHome(org.bukkit.World w,
        -                              Plot plot)
        -
      • -
      - - - -
        -
      • -

        refreshPlotChunks

        -
        public static void refreshPlotChunks(org.bukkit.World world,
        -                     Plot plot)
        -
      • -
      - - - -
        -
      • -

        getPlotTopLocAbs

        -
        public static org.bukkit.Location getPlotTopLocAbs(org.bukkit.World world,
        -                                   PlotId id)
        -
        Gets the top plot location of a plot (all plots are treated as small - plots) - - To get the top loc of a mega plot use getPlotTopLoc(...) -
        -
        -
        Parameters:
        -
        world -
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlotBottomLocAbs

        -
        public static org.bukkit.Location getPlotBottomLocAbs(org.bukkit.World world,
        -                                      PlotId id)
        -
        Gets the bottom plot location of a plot (all plots are treated as small - plots) - - To get the top loc of a mega plot use getPlotBottomLoc(...) -
        -
        -
        Parameters:
        -
        world -
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlotWidth

        -
        public static int getPlotWidth(org.bukkit.World world,
        -               PlotId id)
        -
        Obtains the width of a plot (x width)
        -
        -
        Parameters:
        -
        world -
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlotTopLoc

        -
        public static org.bukkit.Location getPlotTopLoc(org.bukkit.World world,
        -                                PlotId id)
        -
        Gets the top loc of a plot (if mega, returns top loc of that mega plot) - - If you would like each plot treated as a small plot use - getPlotTopLocAbs(...) -
        -
        -
        Parameters:
        -
        world -
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlotBottomLoc

        -
        public static org.bukkit.Location getPlotBottomLoc(org.bukkit.World world,
        -                                   PlotId id)
        -
        Gets the bottom loc of a plot (if mega, returns bottom loc of that mega - plot) - - If you would like each plot treated as a small plot use - getPlotBottomLocAbs(...) -
        -
        -
        Parameters:
        -
        world -
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getPlot

        -
        public static Plot getPlot(org.bukkit.World world,
        -           PlotId id)
        -
        Fetches the plot from the main class
        -
        -
        Parameters:
        -
        world -
        -
        id -
        -
        Returns:
        -
        -
        -
      • -
      - - - -
        -
      • -

        getCurrentPlot

        -
        public static Plot getCurrentPlot(org.bukkit.Location loc)
        -
        Returns the plot at a given location
        -
        -
        Parameters:
        -
        loc -
        -
        Returns:
        -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html deleted file mode 100644 index 2eb61bf4b..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.PlotError.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - PlotSquaredException.PlotError - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Enum PlotSquaredException.PlotError

-
-
-
    -
  • java.lang.Object
  • -
  • - -
  • -
-
- -
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetHeader()  -
      java.lang.StringtoString()  -
      static PlotSquaredException.PlotError - valueOf(java.lang.String name) - -
      Returns the enum constant of this type with the specified name.
      -
      static PlotSquaredException.PlotError[] - values() - -
      Returns an array containing the constants of this enum type, in - the order they are declared. -
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Enum

        - clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, - valueOf
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        values

        -
        public static PlotSquaredException.PlotError[] values()
        -
        Returns an array containing the constants of this enum type, in - the order they are declared. This method may be used to iterate - over the constants as follows: -
        -for (PlotSquaredException.PlotError c : PlotSquaredException.PlotError.values())
        -    System.out.println(c);
        -
        -
        -
        -
        Returns:
        -
        an array containing the constants of this enum type, in the order they are - declared -
        -
        -
      • -
      - - - -
        -
      • -

        valueOf

        -
        public static PlotSquaredException.PlotError valueOf(java.lang.String name)
        -
        Returns the enum constant of this type with the specified name. - The string must match exactly an identifier used to declare an - enum constant in this type. (Extraneous whitespace characters are - not permitted.) -
        -
        -
        Parameters:
        -
        name - the name of the enum constant to be returned.
        -
        Returns:
        -
        the enum constant with the specified name
        -
        Throws:
        -
        java.lang.IllegalArgumentException - if this enum type has no constant - with the specified name -
        -
        java.lang.NullPointerException - if the argument is null
        -
        -
      • -
      - - - -
        -
      • -

        getHeader

        -
        public java.lang.String getHeader()
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html deleted file mode 100644 index 8c88e647c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/PlotSquaredException.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - PlotSquaredException - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class PlotSquaredException

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Throwable
    • -
    • -
        -
      • java.lang.Exception
      • -
      • -
          -
        • java.lang.RuntimeException
        • -
        • -
            -
          • com.intellectualcrafters.plot.util.PlotSquaredException
          • -
          -
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.io.Serializable
    -
    -
    -
    -
    public class PlotSquaredException
    -extends java.lang.RuntimeException
    -
    Created 2014-09-29 for PlotSquared
    -
    -
    Author:
    -
    Citymonstret
    -
    See Also:
    -
    - Serialized - Form
    -
    -
  • -
-
-
-
    -
  • - - - - - -
      -
    • - - - -

      Method Summary

      -
        -
      • - - - -

        Methods inherited from class java.lang.Throwable

        - addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, - getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, - printStackTrace, setStackTrace, toString
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
- -
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html deleted file mode 100644 index 716da03be..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/RUtils.html +++ /dev/null @@ -1,405 +0,0 @@ - - - - - - RUtils - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class RUtils

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.RUtils
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class RUtils
    -extends java.lang.Object
    -
    Random utilities
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      RUtils()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      booleancompareDirections(org.bukkit.Location l1, - org.bukkit.Location l2) 
      voidforceTexture(org.bukkit.entity.Player p) - -
      Force textures on the client
      -
      static java.lang.StringformatTime(double sec) - -
      Get formatted time
      -
      com.intellectualcrafters.plot.util.RUtils.DirectiongetDirection(org.bukkit.Location l)  -
      static longgetFreeRam() - -
      Get the total free ram
      -
      static longgetRamPercentage() - -
      Percentage of used ram
      -
      static longgetTotalRam() - -
      Get the total allocated ram
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        RUtils

        -
        public RUtils()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getTotalRam

        -
        public static long getTotalRam()
        -
        Get the total allocated ram
        -
        -
        Returns:
        -
        total ram
        -
        -
      • -
      - - - -
        -
      • -

        getFreeRam

        -
        public static long getFreeRam()
        -
        Get the total free ram
        -
        -
        Returns:
        -
        free ram
        -
        -
      • -
      - - - -
        -
      • -

        getRamPercentage

        -
        public static long getRamPercentage()
        -
        Percentage of used ram
        -
        -
        Returns:
        -
        percentage
        -
        -
      • -
      - - - -
        -
      • -

        formatTime

        -
        public static java.lang.String formatTime(double sec)
        -
        Get formatted time
        -
        -
        Parameters:
        -
        sec - seconds
        -
        Returns:
        -
        formatted time
        -
        -
      • -
      - - - -
        -
      • -

        forceTexture

        -
        public void forceTexture(org.bukkit.entity.Player p)
        -
        Force textures on the client
        -
        -
        Parameters:
        -
        p - texture to force
        -
        -
      • -
      - - - -
        -
      • -

        getDirection

        -
        public com.intellectualcrafters.plot.util.RUtils.Direction getDirection(org.bukkit.Location l)
        -
      • -
      - - - -
        -
      • -

        compareDirections

        -
        public boolean compareDirections(org.bukkit.Location l1,
        -                        org.bukkit.Location l2)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html deleted file mode 100644 index ccd3f887a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefClass.html +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - ReflectionUtils.RefClass - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ReflectionUtils.RefClass

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ReflectionUtils
    -
    -
    -
    -
    public static class ReflectionUtils.RefClass
    -extends java.lang.Object
    -
    RefClass - utility to simplify work with reflections.
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getRealClass

        -
        public java.lang.Class<?> getRealClass()
        -
        get passed class
        -
        -
        Returns:
        -
        class
        -
        -
      • -
      - - - -
        -
      • -

        isInstance

        -
        public boolean isInstance(java.lang.Object object)
        -
        see Class.isInstance(Object)
        -
        -
        Parameters:
        -
        object - the object to check
        -
        Returns:
        -
        true if object is an instance of this class
        -
        -
      • -
      - - - -
        -
      • -

        getMethod

        -
        public ReflectionUtils.RefMethod getMethod(java.lang.String name,
        -                                  java.lang.Object... types)
        -                                    throws java.lang.NoSuchMethodException
        -
        get existing method by name and types
        -
        -
        Parameters:
        -
        name - name
        -
        types - method parameters. can be Class or RefClass
        -
        Returns:
        -
        RefMethod object
        -
        Throws:
        -
        java.lang.RuntimeException - if method not found
        -
        java.lang.NoSuchMethodException
        -
        -
      • -
      - - - -
        -
      • -

        getConstructor

        -
        public ReflectionUtils.RefConstructor getConstructor(java.lang.Object... types)
        -
        get existing constructor by types
        -
        -
        Parameters:
        -
        types - parameters. can be Class or RefClass
        -
        Returns:
        -
        RefMethod object
        -
        Throws:
        -
        java.lang.RuntimeException - if constructor not found
        -
        -
      • -
      - - - -
        -
      • -

        findMethod

        -
        public ReflectionUtils.RefMethod findMethod(java.lang.Object... types)
        -
        find method by type parameters
        -
        -
        Parameters:
        -
        types - parameters. can be Class or RefClass
        -
        Returns:
        -
        RefMethod object
        -
        Throws:
        -
        java.lang.RuntimeException - if method not found
        -
        -
      • -
      - - - -
        -
      • -

        findMethodByName

        -
        public ReflectionUtils.RefMethod findMethodByName(java.lang.String... names)
        -
        find method by name
        -
        -
        Parameters:
        -
        names - possible names of method
        -
        Returns:
        -
        RefMethod object
        -
        Throws:
        -
        java.lang.RuntimeException - if method not found
        -
        -
      • -
      - - - -
        -
      • -

        findMethodByReturnType

        -
        public ReflectionUtils.RefMethod findMethodByReturnType(ReflectionUtils.RefClass type)
        -
        find method by return value
        -
        -
        Parameters:
        -
        type - type of returned value
        -
        Returns:
        -
        RefMethod
        -
        Throws:
        -
        java.lang.RuntimeException - if method not found
        -
        -
      • -
      - - - -
        -
      • -

        findMethodByReturnType

        -
        public ReflectionUtils.RefMethod findMethodByReturnType(java.lang.Class type)
        -
        find method by return value
        -
        -
        Parameters:
        -
        type - type of returned value
        -
        Returns:
        -
        RefMethod
        -
        Throws:
        -
        java.lang.RuntimeException - if method not found
        -
        -
      • -
      - - - -
        -
      • -

        findConstructor

        -
        public ReflectionUtils.RefConstructor findConstructor(int number)
        -
        find constructor by number of arguments
        -
        -
        Parameters:
        -
        number - number of arguments
        -
        Returns:
        -
        RefConstructor
        -
        Throws:
        -
        java.lang.RuntimeException - if constructor not found
        -
        -
      • -
      - - - -
        -
      • -

        getField

        -
        public ReflectionUtils.RefField getField(java.lang.String name)
        -
        get field by name
        -
        -
        Parameters:
        -
        name - field name
        -
        Returns:
        -
        RefField
        -
        Throws:
        -
        java.lang.RuntimeException - if field not found
        -
        -
      • -
      - - - - - - - -
        -
      • -

        findField

        -
        public ReflectionUtils.RefField findField(java.lang.Class type)
        -
        find field by type
        -
        -
        Parameters:
        -
        type - field type
        -
        Returns:
        -
        RefField
        -
        Throws:
        -
        java.lang.RuntimeException - if field not found
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html deleted file mode 100644 index 9fbbaa4a3..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefConstructor.html +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - ReflectionUtils.RefConstructor - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ReflectionUtils.RefConstructor

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ReflectionUtils
    -
    -
    -
    -
    public static class ReflectionUtils.RefConstructor
    -extends java.lang.Object
    -
    Constructor wrapper
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectcreate(java.lang.Object... params) - -
      create new instance with constructor
      -
      java.lang.reflect.ConstructorgetRealConstructor()  -
      ReflectionUtils.RefClass - getRefClass()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getRealConstructor

        -
        public java.lang.reflect.Constructor getRealConstructor()
        -
        -
        Returns:
        -
        passed constructor
        -
        -
      • -
      - - - - - - - -
        -
      • -

        create

        -
        public java.lang.Object create(java.lang.Object... params)
        -
        create new instance with constructor
        -
        -
        Parameters:
        -
        params - parameters for constructor
        -
        Returns:
        -
        new object
        -
        Throws:
        -
        java.lang.RuntimeException - if something went wrong
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html deleted file mode 100644 index 049d9331a..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.RefExecutor.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - ReflectionUtils.RefField.RefExecutor - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ReflectionUtils.RefField.RefExecutor

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ReflectionUtils.RefField
    -
    -
    -
    -
    public class ReflectionUtils.RefField.RefExecutor
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectget() - -
      get field value for applied object
      -
      voidset(java.lang.Object param) - -
      set field value for applied object
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ReflectionUtils.RefField.RefExecutor

        -
        public ReflectionUtils.RefField.RefExecutor(java.lang.Object e)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        set

        -
        public void set(java.lang.Object param)
        -
        set field value for applied object
        -
        -
        Parameters:
        -
        param - value
        -
        -
      • -
      - - - -
        -
      • -

        get

        -
        public java.lang.Object get()
        -
        get field value for applied object
        -
        -
        Returns:
        -
        value of field
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html deleted file mode 100644 index d9482bfb8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefField.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - ReflectionUtils.RefField - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ReflectionUtils.RefField

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefField
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ReflectionUtils
    -
    -
    -
    -
    public static class ReflectionUtils.RefField
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getRealField

        -
        public java.lang.reflect.Field getRealField()
        -
        -
        Returns:
        -
        passed field
        -
        -
      • -
      - - - - - - - - - - - -
        -
      • -

        of

        -
        public ReflectionUtils.RefField.RefExecutor of(java.lang.Object e)
        -
        apply fiend for object
        -
        -
        Parameters:
        -
        e - applied object
        -
        Returns:
        -
        RefExecutor with getter and setter
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html deleted file mode 100644 index 86858badc..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.RefExecutor.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - ReflectionUtils.RefMethod.RefExecutor - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class - ReflectionUtils.RefMethod.RefExecutor

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod.RefExecutor
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ReflectionUtils.RefMethod
    -
    -
    -
    -
    public class ReflectionUtils.RefMethod.RefExecutor
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectcall(java.lang.Object... params) - -
      apply method for selected object
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ReflectionUtils.RefMethod.RefExecutor

        -
        public ReflectionUtils.RefMethod.RefExecutor(java.lang.Object e)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        call

        -
        public java.lang.Object call(java.lang.Object... params)
        -
        apply method for selected object
        -
        -
        Parameters:
        -
        params - sent parameters
        -
        Returns:
        -
        return value
        -
        Throws:
        -
        java.lang.RuntimeException - if something went wrong
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html deleted file mode 100644 index d9fa4d42f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.RefMethod.html +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - ReflectionUtils.RefMethod - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ReflectionUtils.RefMethod

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    ReflectionUtils
    -
    -
    -
    -
    public static class ReflectionUtils.RefMethod
    -extends java.lang.Object
    -
    Method wrapper
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getRealMethod

        -
        public java.lang.reflect.Method getRealMethod()
        -
        -
        Returns:
        -
        passed method
        -
        -
      • -
      - - - - - - - -
        -
      • -

        getReturnRefClass

        -
        public ReflectionUtils.RefClass getReturnRefClass()
        -
        -
        Returns:
        -
        class of method return type
        -
        -
      • -
      - - - -
        -
      • -

        of

        -
        public ReflectionUtils.RefMethod.RefExecutor of(java.lang.Object e)
        -
        apply method to object
        -
        -
        Parameters:
        -
        e - object to which the method is applied
        -
        Returns:
        -
        RefExecutor with method call(...)
        -
        -
      • -
      - - - -
        -
      • -

        call

        -
        public java.lang.Object call(java.lang.Object... params)
        -
        call static method
        -
        -
        Parameters:
        -
        params - sent parameters
        -
        Returns:
        -
        return value
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html deleted file mode 100644 index cc3548d50..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/ReflectionUtils.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - ReflectionUtils - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class ReflectionUtils

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.ReflectionUtils
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class ReflectionUtils
    -extends java.lang.Object
    -
    -
    Version:
    -
    1.0
    -
    Author:
    -
    DPOH-VAR
    -
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        ReflectionUtils

        -
        public ReflectionUtils()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        isForge

        -
        public static boolean isForge()
        -
        -
        Returns:
        -
        true if server has forge classes
        -
        -
      • -
      - - - -
        -
      • -

        getRefClass

        -
        public static ReflectionUtils.RefClass getRefClass(java.lang.String... classes)
        -
        Get class for name. Replace {nms} to net.minecraft.server.V*. Replace - {cb} to org.bukkit.craftbukkit.V*. Replace {nm} to net.minecraft -
        -
        -
        Parameters:
        -
        classes - possible class paths
        -
        Returns:
        -
        RefClass object
        -
        Throws:
        -
        java.lang.RuntimeException - if no class found
        -
        -
      • -
      - - - -
        -
      • -

        getRefClass

        -
        public static ReflectionUtils.RefClass getRefClass(java.lang.Class clazz)
        -
        get RefClass object by real class
        -
        -
        Parameters:
        -
        clazz - class
        -
        Returns:
        -
        RefClass based on passed class
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html deleted file mode 100644 index 54ed50907..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.DataCollection.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - - SchematicHandler.DataCollection - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class SchematicHandler.DataCollection

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    SchematicHandler
    -
    -
    -
    -
    public static class SchematicHandler.DataCollection
    -extends java.lang.Object
    -
    Schematic Data Collection
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      shortgetBlock()  -
      bytegetData()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SchematicHandler.DataCollection

        -
        public SchematicHandler.DataCollection(short block,
        -                               byte data)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getBlock

        -
        public short getBlock()
        -
      • -
      - - - -
        -
      • -

        getData

        -
        public byte getData()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html deleted file mode 100644 index b0ee7be16..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Dimension.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - SchematicHandler.Dimension - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class SchematicHandler.Dimension

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.SchematicHandler.Dimension
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    SchematicHandler
    -
    -
    -
    -
    public static class SchematicHandler.Dimension
    -extends java.lang.Object
    -
    Schematic Dimensions
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      intgetX()  -
      intgetY()  -
      intgetZ()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SchematicHandler.Dimension

        -
        public SchematicHandler.Dimension(int x,
        -                          int y,
        -                          int z)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getX

        -
        public int getX()
        -
      • -
      - - - -
        -
      • -

        getY

        -
        public int getY()
        -
      • -
      - - - -
        -
      • -

        getZ

        -
        public int getZ()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html deleted file mode 100644 index 922b6b418..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.Schematic.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - SchematicHandler.Schematic - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class SchematicHandler.Schematic

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.SchematicHandler.Schematic
    • -
    -
  • -
-
-
    -
  • -
    -
    Enclosing class:
    -
    SchematicHandler
    -
    -
    -
    -
    public static class SchematicHandler.Schematic
    -extends java.lang.Object
    -
    Schematic Class
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
- -
-
- -
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html deleted file mode 100644 index 98b05d1d0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/SchematicHandler.html +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - SchematicHandler - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class SchematicHandler

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.SchematicHandler
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class SchematicHandler
    -extends java.lang.Object
    -
    Schematic Handler
    -
    -
    Author:
    -
    Citymonstret, Empire92
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SchematicHandler()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static CompoundTaggetCompoundTag(org.bukkit.World world, - PlotId id) - -
      Gets the schematic of a plot
      -
      static SchematicHandler.Schematic - getSchematic(java.lang.String name) - -
      Get a schematic
      -
      static booleanpaste(org.bukkit.Location location, - SchematicHandler.Schematic schematic, - Plot plot, - int x_offset, - int z_offset) - -
      Paste a schematic
      -
      static booleanpastePart(org.bukkit.World world, - SchematicHandler.DataCollection[] blocks, - org.bukkit.Location l1, - int x_offset, - int z_offset, - int i1, - int i2, - int WIDTH, - int LENGTH) 
      static booleansave(CompoundTag tag, - java.lang.String path) - -
      Saves a schematic to a file path
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SchematicHandler

        -
        public SchematicHandler()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        paste

        -
        public static boolean paste(org.bukkit.Location location,
        -            SchematicHandler.Schematic schematic,
        -            Plot plot,
        -            int x_offset,
        -            int z_offset)
        -
        Paste a schematic
        -
        -
        Parameters:
        -
        location - origin
        -
        schematic - schematic to paste
        -
        plot - plot to paste in
        -
        Returns:
        -
        true if succeeded
        -
        -
      • -
      - - - -
        -
      • -

        getSchematic

        -
        public static SchematicHandler.Schematic getSchematic(java.lang.String name)
        -
        Get a schematic
        -
        -
        Parameters:
        -
        name - to check
        -
        Returns:
        -
        schematic if found, else null
        -
        -
      • -
      - - - -
        -
      • -

        save

        -
        public static boolean save(CompoundTag tag,
        -           java.lang.String path)
        -
        Saves a schematic to a file path
        -
        -
        Parameters:
        -
        tag - to save
        -
        path - to save in
        -
        Returns:
        -
        true if succeeded
        -
        -
      • -
      - - - -
        -
      • -

        getCompoundTag

        -
        public static CompoundTag getCompoundTag(org.bukkit.World world,
        -                         PlotId id)
        -
        Gets the schematic of a plot
        -
        -
        Parameters:
        -
        world - to check
        -
        id - plot
        -
        Returns:
        -
        tag
        -
        -
      • -
      - - - -
        -
      • -

        pastePart

        -
        public static boolean pastePart(org.bukkit.World world,
        -                SchematicHandler.DataCollection[] blocks,
        -                org.bukkit.Location l1,
        -                int x_offset,
        -                int z_offset,
        -                int i1,
        -                int i2,
        -                int WIDTH,
        -                int LENGTH)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html deleted file mode 100644 index b694a1906..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/SetBlockFast.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - SetBlockFast - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class SetBlockFast

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.SetBlockFast
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class SetBlockFast
    -extends java.lang.Object
    -
    SetBlockFast class
    - Used to do fast world editing -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      SetBlockFast()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static booleanset(org.bukkit.World world, - int x, - int y, - int z, - int blockId, - byte data) 
      static voidupdate(org.bukkit.entity.Player player)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        SetBlockFast

        -
        public SetBlockFast()
        -             throws java.lang.NoSuchMethodException
        -
        -
        Throws:
        -
        java.lang.NoSuchMethodException
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        set

        -
        public static boolean set(org.bukkit.World world,
        -          int x,
        -          int y,
        -          int z,
        -          int blockId,
        -          byte data)
        -                   throws java.lang.NoSuchMethodException
        -
        -
        Throws:
        -
        java.lang.NoSuchMethodException
        -
        -
      • -
      - - - -
        -
      • -

        update

        -
        public static void update(org.bukkit.entity.Player player)
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html deleted file mode 100644 index 563f6cdf0..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/StringComparison.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - StringComparison - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class StringComparison

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.StringComparison
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class StringComparison
    -extends java.lang.Object
    -
    String comparison library
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      StringComparison(java.lang.String input, - java.lang.Object[] objects) - -
      Constructor
      -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static doublecompare(java.lang.String s1, - java.lang.String s2) - -
      Compare two strings
      -
      java.lang.StringgetBestMatch() - -
      Get the best match value
      -
      java.lang.Object[]getBestMatchAdvanced() - -
      Will return both the match number, and the actual match string
      -
      java.lang.ObjectgetMatchObject() - -
      Get the object
      -
      static java.lang.String[]sLetterPair(java.lang.String s) - -
      Get an array containing letter pairs
      -
      static java.util.ArrayListwLetterPair(java.lang.String s) - -
      Create an ArrayList containing pairs of letters
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        StringComparison

        -
        public StringComparison(java.lang.String input,
        -                java.lang.Object[] objects)
        -
        Constructor
        -
        -
        Parameters:
        -
        input - Input Base Value
        -
        objects - Objects to compare
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        compare

        -
        public static double compare(java.lang.String s1,
        -             java.lang.String s2)
        -
        Compare two strings
        -
        -
        Parameters:
        -
        s1 - String Base
        -
        s2 - Object
        -
        Returns:
        -
        match
        -
        -
      • -
      - - - -
        -
      • -

        wLetterPair

        -
        public static java.util.ArrayList wLetterPair(java.lang.String s)
        -
        Create an ArrayList containing pairs of letters
        -
        -
        Parameters:
        -
        s - string to split
        -
        Returns:
        -
        ArrayList
        -
        -
      • -
      - - - -
        -
      • -

        sLetterPair

        -
        public static java.lang.String[] sLetterPair(java.lang.String s)
        -
        Get an array containing letter pairs
        -
        -
        Parameters:
        -
        s - string to split
        -
        Returns:
        -
        Array
        -
        -
      • -
      - - - -
        -
      • -

        getMatchObject

        -
        public java.lang.Object getMatchObject()
        -
        Get the object
        -
        -
        Returns:
        -
        match object
        -
        -
      • -
      - - - -
        -
      • -

        getBestMatch

        -
        public java.lang.String getBestMatch()
        -
        Get the best match value
        -
        -
        Returns:
        -
        match value
        -
        -
      • -
      - - - -
        -
      • -

        getBestMatchAdvanced

        -
        public java.lang.Object[] getBestMatchAdvanced()
        -
        Will return both the match number, and the actual match string
        -
        -
        Returns:
        -
        object[] containing: double, String
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html deleted file mode 100644 index 75ef60bd8..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/UUIDHandler.html +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - UUIDHandler - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.util
-

Class UUIDHandler

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.util.UUIDHandler
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class UUIDHandler
    -extends java.lang.Object
    -
    This class can be used to efficiently translate UUIDs and names back and - forth. - It uses three primary methods of achieving this: - - Read From Cache - - Read from OfflinePlayer objects - - Read from (if onlinemode: mojang api) (else: playername hashing) - All UUIDs/Usernames will be stored in a map (cache) until the server is - restarted. -

    - You can use getUuidMap() to save the uuids/names to a file (SQLite db for - example). - Primary methods: getUUID(String name) & getName(UUID uuid) <-- You should - ONLY use these. - Call startFetch(JavaPlugin plugin) in your onEnable(). -

    - Originally created by: -

    -
    -
    Author:
    -
    Citymonstret, Empire92 - for PlotSquared. -
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      UUIDHandler()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidadd(StringWrapper name, - java.util.UUID uuid) - -
      Add a set to the cache
      -
      static java.lang.StringgetName(java.util.UUID uuid)  -
      static java.util.UUIDgetUUID(java.lang.String name)  -
      static com.google.common.collect.BiMap<StringWrapper,java.util.UUID> - getUuidMap() - -
      Get the map containing all names/uuids
      -
      static voidhandleSaving() - -
      Handle saving of uuids
      -
      static booleannameExists(StringWrapper name) - -
      Check if a name is cached
      -
      static booleanuuidExists(java.util.UUID uuid) - -
      Check if a uuid is cached
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        UUIDHandler

        -
        public UUIDHandler()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getUuidMap

        -
        public static com.google.common.collect.BiMap<StringWrapper,java.util.UUID> getUuidMap()
        -
        Get the map containing all names/uuids
        -
        -
        Returns:
        -
        map with names + uuids
        -
        -
      • -
      - - - -
        -
      • -

        uuidExists

        -
        public static boolean uuidExists(java.util.UUID uuid)
        -
        Check if a uuid is cached
        -
        -
        Parameters:
        -
        uuid - to check
        -
        Returns:
        -
        true of the uuid is cached
        -
        -
      • -
      - - - -
        -
      • -

        nameExists

        -
        public static boolean nameExists(StringWrapper name)
        -
        Check if a name is cached
        -
        -
        Parameters:
        -
        name - to check
        -
        Returns:
        -
        true of the name is cached
        -
        -
      • -
      - - - -
        -
      • -

        add

        -
        public static void add(StringWrapper name,
        -       java.util.UUID uuid)
        -
        Add a set to the cache
        -
        -
        Parameters:
        -
        name - to cache
        -
        uuid - to cache
        -
        -
      • -
      - - - -
        -
      • -

        getUUID

        -
        public static java.util.UUID getUUID(java.lang.String name)
        -
        -
        Parameters:
        -
        name - to use as key
        -
        Returns:
        -
        uuid
        -
        -
      • -
      - - - -
        -
      • -

        getName

        -
        public static java.lang.String getName(java.util.UUID uuid)
        -
        -
        Parameters:
        -
        uuid - to use as key
        -
        Returns:
        -
        Name
        -
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html deleted file mode 100644 index b49c9d730..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-frame.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - com.intellectualcrafters.plot.util - - - - -

com.intellectualcrafters.plot.util -

- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html deleted file mode 100644 index c623e5870..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-summary.html +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - com.intellectualcrafters.plot.util - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.util

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html deleted file mode 100644 index 68dcdc88c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/util/package-tree.html +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - com.intellectualcrafters.plot.util Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.util

- Package Hierarchies: - -
-
-

Class Hierarchy

- -

Enum Hierarchy

-
    -
  • java.lang.Object - -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html deleted file mode 100644 index bff48882f..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/NameFetcher.html +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - NameFetcher - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.uuid
-

Class NameFetcher

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.uuid.NameFetcher
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.util.concurrent.Callable<java.util.Map<java.util.UUID,java.lang.String>>
    -
    -
    -
    -
    public class NameFetcher
    -extends java.lang.Object
    -implements java.util.concurrent.Callable<java.util.Map<java.util.UUID,java.lang.String>>
    -
    Name Fetcher Class - From Bukkit -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      NameFetcher(java.util.List<java.util.UUID> uuids)  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.util.Map<java.util.UUID,java.lang.String> - call()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        NameFetcher

        -
        public NameFetcher(java.util.List<java.util.UUID> uuids)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        call

        -
        public java.util.Map<java.util.UUID,java.lang.String> call()
        -                                                    throws java.lang.Exception
        -
        -
        Specified by:
        -
        call in interface java.util.concurrent.Callable<java.util.Map<java.util.UUID,java.lang.String>> -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html deleted file mode 100644 index f2269ed67..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.html +++ /dev/null @@ -1,453 +0,0 @@ - - - - - - PlotUUIDSaver - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.uuid
-

Class PlotUUIDSaver

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.uuid.PlotUUIDSaver
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    UUIDSaver
    -
    -
    -
    -
    public class PlotUUIDSaver
    -extends java.lang.Object
    -implements UUIDSaver
    -
    Plot UUID Saver/Fetcher
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      PlotUUIDSaver()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      UUIDSetget(java.lang.String name)  -
      UUIDSetget(java.util.UUID uuid)  -
      voidglobalPopulate()  -
      voidglobalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> map)  -
      java.lang.StringmojangName(java.util.UUID uuid)  -
      java.util.UUIDmojangUUID(java.lang.String name)  -
      voidsave(UUIDSet set)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        PlotUUIDSaver

        -
        public PlotUUIDSaver()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        globalPopulate

        -
        public void globalPopulate()
        -
        -
        Specified by:
        -
        globalPopulate in - interface UUIDSaver -
        -
        -
      • -
      - - - -
        -
      • -

        globalSave

        -
        public void globalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> map)
        -
        -
        Specified by:
        -
        globalSave in - interface UUIDSaver -
        -
        -
      • -
      - - - -
        -
      • -

        save

        -
        public void save(UUIDSet set)
        -
        -
        Specified by:
        -
        save in - interface UUIDSaver -
        -
        -
      • -
      - - - -
        -
      • -

        mojangUUID

        -
        public java.util.UUID mojangUUID(java.lang.String name)
        -                          throws java.lang.Exception
        -
        -
        Specified by:
        -
        mojangUUID in - interface UUIDSaver -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      - - - -
        -
      • -

        mojangName

        -
        public java.lang.String mojangName(java.util.UUID uuid)
        -                            throws java.lang.Exception
        -
        -
        Specified by:
        -
        mojangName in - interface UUIDSaver -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      - - - -
        -
      • -

        get

        -
        public UUIDSet get(java.lang.String name)
        -
        -
        Specified by:
        -
        get in - interface UUIDSaver -
        -
        -
      • -
      - - - -
        -
      • -

        get

        -
        public UUIDSet get(java.util.UUID uuid)
        -
        -
        Specified by:
        -
        get in - interface UUIDSaver -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html deleted file mode 100644 index 1f5f6a55c..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDFetcher.html +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - UUIDFetcher - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.uuid
-

Class UUIDFetcher

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.uuid.UUIDFetcher
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    java.util.concurrent.Callable<java.util.Map<java.lang.String,java.util.UUID>>
    -
    -
    -
    -
    public class UUIDFetcher
    -extends java.lang.Object
    -implements java.util.concurrent.Callable<java.util.Map<java.lang.String,java.util.UUID>>
    -
    UUID Fetcher - From Bukkit -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - - - - -
      Constructors 
      Constructor and Description
      UUIDFetcher(java.util.List<java.lang.String> names)  -
      UUIDFetcher(java.util.List<java.lang.String> names, - boolean rateLimiting) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.util.Map<java.lang.String,java.util.UUID> - call()  -
      static java.util.UUIDfromBytes(byte[] array)  -
      static java.util.UUIDgetUUID(java.lang.String id)  -
      static java.util.UUIDgetUUIDOf(java.lang.String name)  -
      static byte[]toBytes(java.util.UUID uuid)  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        UUIDFetcher

        -
        public UUIDFetcher(java.util.List<java.lang.String> names,
        -           boolean rateLimiting)
        -
      • -
      - - - -
        -
      • -

        UUIDFetcher

        -
        public UUIDFetcher(java.util.List<java.lang.String> names)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getUUID

        -
        public static java.util.UUID getUUID(java.lang.String id)
        -
      • -
      - - - -
        -
      • -

        toBytes

        -
        public static byte[] toBytes(java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        fromBytes

        -
        public static java.util.UUID fromBytes(byte[] array)
        -
      • -
      - - - -
        -
      • -

        getUUIDOf

        -
        public static java.util.UUID getUUIDOf(java.lang.String name)
        -                                throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      - - - -
        -
      • -

        call

        -
        public java.util.Map<java.lang.String,java.util.UUID> call()
        -                                                    throws java.lang.Exception
        -
        -
        Specified by:
        -
        call in interface java.util.concurrent.Callable<java.util.Map<java.lang.String,java.util.UUID>> -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html deleted file mode 100644 index 067bdb080..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSaver.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - UUIDSaver - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.uuid
-

Interface UUIDSaver

-
-
-
-
    -
  • -
    -
    All Known Implementing Classes:
    -
    PlotUUIDSaver
    -
    -
    -
    -
    public interface UUIDSaver
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      UUIDSetget(java.lang.String name)  -
      UUIDSetget(java.util.UUID uuid)  -
      voidglobalPopulate()  -
      voidglobalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> biMap)  -
      java.lang.StringmojangName(java.util.UUID uuid)  -
      java.util.UUIDmojangUUID(java.lang.String name)  -
      voidsave(UUIDSet set)  -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        globalPopulate

        -
        void globalPopulate()
        -
      • -
      - - - -
        -
      • -

        globalSave

        -
        void globalSave(com.google.common.collect.BiMap<StringWrapper,java.util.UUID> biMap)
        -
      • -
      - - - -
        -
      • -

        save

        -
        void save(UUIDSet set)
        -
      • -
      - - - -
        -
      • -

        get

        -
        UUIDSet get(java.lang.String name)
        -
      • -
      - - - -
        -
      • -

        get

        -
        UUIDSet get(java.util.UUID uuid)
        -
      • -
      - - - -
        -
      • -

        mojangUUID

        -
        java.util.UUID mojangUUID(java.lang.String name)
        -                          throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      - - - -
        -
      • -

        mojangName

        -
        java.lang.String mojangName(java.util.UUID uuid)
        -                            throws java.lang.Exception
        -
        -
        Throws:
        -
        java.lang.Exception
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html deleted file mode 100644 index 3ee79dd72..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/UUIDSet.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - - UUIDSet - - - - - - - -
- - - - - -
- - - -
-
com.intellectualcrafters.plot.uuid
-

Class UUIDSet

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualcrafters.plot.uuid.UUIDSet
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class UUIDSet
    -extends java.lang.Object
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      UUIDSet(java.lang.String name, - java.util.UUID uuid) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetName()  -
      java.util.UUIDgetUUID()  -
      java.lang.StringtoString()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        UUIDSet

        -
        public UUIDSet(java.lang.String name,
        -       java.util.UUID uuid)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - -
        -
      • -

        getName

        -
        public java.lang.String getName()
        -
      • -
      - - - -
        -
      • -

        getUUID

        -
        public java.util.UUID getUUID()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html deleted file mode 100644 index b6a0cc2b5..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-frame.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - com.intellectualcrafters.plot.uuid - - - - -

com.intellectualcrafters.plot.uuid -

- -
-

Interfaces

- -

Classes

- -
- - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html deleted file mode 100644 index 73a5144c6..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-summary.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - com.intellectualcrafters.plot.uuid - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualcrafters.plot.uuid

-
-
-
    -
  • - - - - - - - - - - - - -
    Interface Summary 
    InterfaceDescription
    UUIDSaver 
    -
  • -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    NameFetcher -
    Name Fetcher Class - From Bukkit -
    -
    PlotUUIDSaver -
    Plot UUID Saver/Fetcher
    -
    UUIDFetcher -
    UUID Fetcher - From Bukkit -
    -
    UUIDSet 
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html b/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html deleted file mode 100644 index 880906b85..000000000 --- a/PlotSquared/doc/com/intellectualcrafters/plot/uuid/package-tree.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - com.intellectualcrafters.plot.uuid Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualcrafters.plot.uuid

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.uuid.NameFetcher - (implements java.util.concurrent.Callable<V>) -
    • -
    • com.intellectualcrafters.plot.uuid.PlotUUIDSaver (implements com.intellectualcrafters.plot.uuid.UUIDSaver) -
    • -
    • com.intellectualcrafters.plot.uuid.UUIDFetcher - (implements java.util.concurrent.Callable<V>) -
    • -
    • com.intellectualcrafters.plot.uuid.UUIDSet
    • -
    -
  • -
-

Interface Hierarchy

-
    -
  • com.intellectualcrafters.plot.uuid.UUIDSaver
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/Translation.html b/PlotSquared/doc/com/intellectualsites/translation/Translation.html deleted file mode 100644 index 14a8bb353..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/Translation.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - Translation - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Annotation Type Translation

-
-
-
-
    -
  • -
    -
    -
    @Retention(value=RUNTIME)
    -@Target(value=FIELD)
    -public @interface Translation
    -
    Translation annotation
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Optional Element Summary

      - - - - - - - - - - - - - - -
      Optional Elements 
      Modifier and TypeOptional Element and Description
      java.lang.StringcreationDescription  -
      java.lang.Stringdescription  -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Element Detail

      - - - -
        -
      • -

        description

        -
        public abstract java.lang.String description
        -
        -
        Default:
        -
        ""
        -
        -
      • -
      - - - -
        -
      • -

        creationDescription

        -
        public abstract java.lang.String creationDescription
        -
        -
        Default:
        -
        ""
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html deleted file mode 100644 index 0ccda8246..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/TranslationAsset.html +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - TranslationAsset - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Class TranslationAsset

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualsites.translation.TranslationAsset
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class TranslationAsset
    -extends java.lang.Object
    -
    Asset
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
- -
-
- -
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html deleted file mode 100644 index 41034799b..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/TranslationFile.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - TranslationFile - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Class TranslationFile

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualsites.translation.TranslationFile
    • -
    -
  • -
-
-
    -
  • -
    -
    Direct Known Subclasses:
    -
    YamlTranslationFile
    -
    -
    -
    -
    public abstract class TranslationFile
    -extends java.lang.Object
    -
    Abstract TranslationFile
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      TranslationFile()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      abstract voidadd(java.lang.String key, - java.lang.String value) - -
      Add a value
      -
      abstract TranslationLanguage - getLanguage() - -
      A method used to get the language of the file
      -
      abstract TranslationFile - read() - -
      Read from the file
      -
      abstract voidsaveFile() - -
      Save the file
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        TranslationFile

        -
        public TranslationFile()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getLanguage

        -
        public abstract TranslationLanguage getLanguage()
        -
        A method used to get the language of the file
        -
        -
        Returns:
        -
        language
        -
        -
      • -
      - - - -
        -
      • -

        saveFile

        -
        public abstract void saveFile()
        -
        Save the file
        -
      • -
      - - - -
        -
      • -

        read

        -
        public abstract TranslationFile read()
        -
        Read from the file
        -
        -
        Returns:
        -
        instance
        -
        -
      • -
      - - - -
        -
      • -

        add

        -
        public abstract void add(java.lang.String key,
        -       java.lang.String value)
        -
        Add a value
        -
        -
        Parameters:
        -
        key - name
        -
        value - value
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html deleted file mode 100644 index 08cd7432f..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/TranslationLanguage.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - TranslationLanguage - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Class TranslationLanguage

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualsites.translation.TranslationLanguage
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class TranslationLanguage
    -extends java.lang.Object
    -
  • -
-
-
- -
-
-
    -
  • - - - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        TranslationLanguage

        -
        public TranslationLanguage(java.lang.String friendlyName,
        -                   java.lang.String countryCode,
        -                   java.lang.String languageCode)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getName

        -
        public java.lang.String getName()
        -
      • -
      - - - -
        -
      • -

        getCountryCode

        -
        public java.lang.String getCountryCode()
        -
      • -
      - - - -
        -
      • -

        getLanguageCode

        -
        public java.lang.String getLanguageCode()
        -
      • -
      - - - -
        -
      • -

        toString

        -
        public java.lang.String toString()
        -
        -
        Overrides:
        -
        toString in class java.lang.Object
        -
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html deleted file mode 100644 index c02a5ba6b..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/TranslationManager.html +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - TranslationManager - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Class TranslationManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualsites.translation.TranslationManager
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class TranslationManager
    -extends java.lang.Object
    -
    Translation Manager Main class
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
- -
-
- -
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html b/PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html deleted file mode 100644 index 9a0dcc249..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/TranslationObject.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - TranslationObject - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Class TranslationObject

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualsites.translation.TranslationObject
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class TranslationObject
    -extends java.lang.Object
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      TranslationObject(java.lang.String key, - java.lang.String defaultValue, - java.lang.String description, - java.lang.String creationDescription) 
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetCreationDescription()  -
      java.lang.StringgetDefaultValue()  -
      java.lang.StringgetDescription()  -
      java.lang.StringgetKey()  -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        TranslationObject

        -
        public TranslationObject(java.lang.String key,
        -                 java.lang.String defaultValue,
        -                 java.lang.String description,
        -                 java.lang.String creationDescription)
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        getKey

        -
        public java.lang.String getKey()
        -
      • -
      - - - -
        -
      • -

        getDefaultValue

        -
        public java.lang.String getDefaultValue()
        -
      • -
      - - - -
        -
      • -

        getDescription

        -
        public java.lang.String getDescription()
        -
      • -
      - - - -
        -
      • -

        getCreationDescription

        -
        public java.lang.String getCreationDescription()
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html b/PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html deleted file mode 100644 index 1124f409a..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/YamlTranslationFile.html +++ /dev/null @@ -1,514 +0,0 @@ - - - - - - YamlTranslationFile - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation
-

Class YamlTranslationFile

-
-
- -
-
    -
  • -
    -
    -
    public class YamlTranslationFile
    -extends TranslationFile
    -
    The YAML implementation of TranslationFile - Relies heavily on SnakeYAML -
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - - - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidadd(java.lang.String key, - java.lang.String value) - -
      Add a translation
      -
      YamlTranslationFile - fancyHeader(java.lang.String... header) - -
      Set a fancy header
      -
      TranslationLanguage - getLanguage() - -
      Get the translation language
      -
      org.yaml.snakeyaml.YamlgetYaml() - -
      Get the YAML object
      -
      YamlTranslationFile - header(java.lang.String... header) - -
      Set the header
      -
      YamlTranslationFile - read() - -
      Read the file
      -
      voidreload() - -
      Reload
      -
      voidsaveFile() - -
      Save the file
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, - wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        YamlTranslationFile

        -
        public YamlTranslationFile(java.io.File path,
        -                   TranslationLanguage language,
        -                   java.lang.String name,
        -                   TranslationManager manager)
        -
        Constructor
        -
        -
        Parameters:
        -
        path - save path
        -
        language - translation language
        -
        name - project name
        -
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        reload

        -
        public void reload()
        -
        Reload
        -
      • -
      - - - -
        -
      • -

        header

        -
        public YamlTranslationFile header(java.lang.String... header)
        -
        Set the header
        -
        -
        Parameters:
        -
        header - Comment header
        -
        Returns:
        -
        instance
        -
        -
      • -
      - - - -
        -
      • -

        fancyHeader

        -
        public YamlTranslationFile fancyHeader(java.lang.String... header)
        -
        Set a fancy header
        -
        -
        Parameters:
        -
        header - Comment header
        -
        Returns:
        -
        instance
        -
        -
      • -
      - - - -
        -
      • -

        add

        -
        public void add(java.lang.String key,
        -       java.lang.String value)
        -
        Add a translation
        -
        -
        Specified by:
        -
        add in - class TranslationFile -
        -
        Parameters:
        -
        key - translation name
        -
        value - translation value
        -
        -
      • -
      - - - - - - - -
        -
      • -

        saveFile

        -
        public void saveFile()
        -
        Save the file
        -
        -
        Specified by:
        -
        saveFile in - class TranslationFile -
        -
        -
      • -
      - - - -
        -
      • -

        getYaml

        -
        public org.yaml.snakeyaml.Yaml getYaml()
        -
        Get the YAML object
        -
        -
        Returns:
        -
        yaml object with correct settings
        -
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html deleted file mode 100644 index fa17c4aeb..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/bukkit/BukkitTranslation.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - BukkitTranslation - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation.bukkit
-

Class BukkitTranslation

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.intellectualsites.translation.bukkit.BukkitTranslation
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class BukkitTranslation
    -extends java.lang.Object
    -
    -
    Author:
    -
    Citymonstret
    -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      BukkitTranslation()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      static voidaddMaterials(TranslationManager manager) - -
      Add material names to the translation list - Will default to a somewhat friendly name -
      -
      static java.lang.Stringconvert(TranslationAsset asset) - -
      Get the converted string
      -
      TranslationLanguage - getDefaultLanguage() - -
      The default translation language
      -
      static java.io.FilegetParent(org.bukkit.plugin.java.JavaPlugin plugin) - -
      Get the universal parent based on the plugin data folder
      -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, - wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        BukkitTranslation

        -
        public BukkitTranslation()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        convert

        -
        public static java.lang.String convert(TranslationAsset asset)
        -
        Get the converted string
        -
        -
        Parameters:
        -
        asset - asset
        -
        Returns:
        -
        converted asset
        -
        -
      • -
      - - - -
        -
      • -

        getParent

        -
        public static java.io.File getParent(org.bukkit.plugin.java.JavaPlugin plugin)
        -
        Get the universal parent based on the plugin data folder
        -
        -
        Parameters:
        -
        plugin - to check
        -
        Returns:
        -
        parent folder
        -
        -
      • -
      - - - -
        -
      • -

        getDefaultLanguage

        -
        public TranslationLanguage getDefaultLanguage()
        -
        The default translation language
        -
        -
        Returns:
        -
        default translation language
        -
        -
      • -
      - - - -
        -
      • -

        addMaterials

        -
        public static void addMaterials(TranslationManager manager)
        -
        Add material names to the translation list - Will default to a somewhat friendly name -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html deleted file mode 100644 index 4ebbf3eee..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/bukkit/TranslationPlugin.html +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - TranslationPlugin - - - - - - - -
- - - - - -
- - - -
-
com.intellectualsites.translation.bukkit
-

Class TranslationPlugin

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.bukkit.plugin.PluginBase
    • -
    • -
        -
      • org.bukkit.plugin.java.JavaPlugin
      • -
      • -
          -
        • com.intellectualsites.translation.bukkit.TranslationPlugin
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter, - org.bukkit.command.TabExecutor, org.bukkit.plugin.Plugin -
    -
    -
    -
    -
    public class TranslationPlugin
    -extends org.bukkit.plugin.java.JavaPlugin
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      TranslationPlugin()  -
      -
    • -
    - -
      -
    • - - - -

      Method Summary

      - - - - - - - - - - - - - - -
      Methods 
      Modifier and TypeMethod and Description
      voidonDisable()  -
      voidonEnable()  -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.plugin.java.JavaPlugin

        - getClassLoader, getCommand, getConfig, getDatabase, getDatabaseClasses, - getDataFolder, getDefaultWorldGenerator, getDescription, getFile, getLogger, - getPlugin, getPluginLoader, getProvidingPlugin, getResource, getServer, - getTextResource, initialize, installDDL, isEnabled, isInitialized, isNaggable, - onCommand, onLoad, onTabComplete, reloadConfig, removeDDL, saveConfig, - saveDefaultConfig, saveResource, setEnabled, setNaggable, toString
      • -
      -
        -
      • - - - -

        Methods inherited from class org.bukkit.plugin.PluginBase

        - equals, getName, hashCode
      • -
      -
        -
      • - - - -

        Methods inherited from class java.lang.Object

        - clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • -
      -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - - -

      Constructor Detail

      - - - -
        -
      • -

        TranslationPlugin

        -
        public TranslationPlugin()
        -
      • -
      -
    • -
    - -
      -
    • - - - -

      Method Detail

      - - - -
        -
      • -

        onEnable

        -
        public void onEnable()
        -
        -
        Specified by:
        -
        onEnable in - interface org.bukkit.plugin.Plugin
        -
        Overrides:
        -
        onEnable in - class org.bukkit.plugin.java.JavaPlugin
        -
        -
      • -
      - - - -
        -
      • -

        onDisable

        -
        public void onDisable()
        -
        -
        Specified by:
        -
        onDisable in - interface org.bukkit.plugin.Plugin
        -
        Overrides:
        -
        onDisable in class org.bukkit.plugin.java.JavaPlugin -
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html deleted file mode 100644 index a82c2fced..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-frame.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - com.intellectualsites.translation.bukkit - - - - -

com.intellectualsites.translation.bukkit -

- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html deleted file mode 100644 index 29a5558b4..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-summary.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - com.intellectualsites.translation.bukkit - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualsites.translation.bukkit

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html b/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html deleted file mode 100644 index 045ffdee4..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/bukkit/package-tree.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - com.intellectualsites.translation.bukkit Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualsites.translation.bukkit

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualsites.translation.bukkit.BukkitTranslation
    • -
    • org.bukkit.plugin.PluginBase (implements org.bukkit.plugin.Plugin) -
        -
      • org.bukkit.plugin.java.JavaPlugin - -
      • -
      -
    • -
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/package-frame.html b/PlotSquared/doc/com/intellectualsites/translation/package-frame.html deleted file mode 100644 index 109e14b12..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/package-frame.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - com.intellectualsites.translation - - - - -

com.intellectualsites.translation -

- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/package-summary.html b/PlotSquared/doc/com/intellectualsites/translation/package-summary.html deleted file mode 100644 index 9546186df..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/package-summary.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - com.intellectualsites.translation - - - - - - - -
- - - - - -
- - -
-

Package com.intellectualsites.translation

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/com/intellectualsites/translation/package-tree.html b/PlotSquared/doc/com/intellectualsites/translation/package-tree.html deleted file mode 100644 index d2028a64f..000000000 --- a/PlotSquared/doc/com/intellectualsites/translation/package-tree.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - com.intellectualsites.translation Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package com.intellectualsites.translation

- Package Hierarchies: - -
-
-

Class Hierarchy

- -

Annotation Type Hierarchy

-
    -
  • com.intellectualsites.translation.Translation - (implements java.lang.annotation.Annotation) -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/constant-values.html b/PlotSquared/doc/constant-values.html deleted file mode 100644 index 05ac4a72a..000000000 --- a/PlotSquared/doc/constant-values.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - Constant Field Values - - - - - - - -
- - - - - -
- - -
-

Constant Field Values

- -

Contents

- -
-
- - - -

com.intellectualcrafters.*

- -
    -
  • - - - - - - - - - - - - - - -
    com.intellectualcrafters.json.HTTP 
    Modifier and TypeConstant FieldValue
    - - public static final java.lang.StringCRLF"\r\n"
    -
  • -
-
    -
  • - - - - - - - - - - - - - - -
    com.intellectualcrafters.plot.PlotMain 
    Modifier and TypeConstant FieldValue
    - - public static final java.lang.StringADMIN_PERMISSION - "plots.admin"
    -
  • -
-
    -
  • - - - - - - - - - - - - - - -
    com.intellectualcrafters.plot.api.PlotAPI 
    Modifier and TypeConstant FieldValue
    - - public static final java.lang.StringADMIN_PERMISSION - "plots.admin"
    -
  • -
-
    -
  • - - - - - - - - - - - - - - -
    com.intellectualcrafters.plot.commands.MainCommand 
    Modifier and TypeConstant FieldValue
    - - public static final java.lang.StringMAIN_PERMISSION - "plots.use"
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/deprecated-list.html b/PlotSquared/doc/deprecated-list.html deleted file mode 100644 index 1c5827523..000000000 --- a/PlotSquared/doc/deprecated-list.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - Deprecated List - - - - - - - -
- - - - - -
- - -
-

Deprecated API

- -

Contents

- -
- - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/help-doc.html b/PlotSquared/doc/help-doc.html deleted file mode 100644 index 9082fec79..000000000 --- a/PlotSquared/doc/help-doc.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - API Help - - - - - - - -
- - - - - -
- - -
-

How This API Document Is Organized

- -
This API (Application Programming Interface) document has pages corresponding to the items in - the navigation bar, described as follows. -
-
-
-
    -
  • -

    Overview

    - -

    The Overview page is the front page of this API document and provides - a list of all packages with a summary for each. This page can also contain an overall description of the - set of packages.

    -
  • -
  • -

    Package

    - -

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This - page can contain six categories:

    -
      -
    • Interfaces (italic)
    • -
    • Classes
    • -
    • Enums
    • -
    • Exceptions
    • -
    • Errors
    • -
    • Annotation Types
    • -
    -
  • -
  • -

    Class/Interface

    - -

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages - has three sections consisting of a class/interface description, summary tables, and detailed member - descriptions:

    -
      -
    • Class inheritance diagram
    • -
    • Direct Subclasses
    • -
    • All Known Subinterfaces
    • -
    • All Known Implementing Classes
    • -
    • Class/interface declaration
    • -
    • Class/interface description
    • -
    -
      -
    • Nested Class Summary
    • -
    • Field Summary
    • -
    • Constructor Summary
    • -
    • Method Summary
    • -
    -
      -
    • Field Detail
    • -
    • Constructor Detail
    • -
    • Method Detail
    • -
    -

    Each summary entry contains the first sentence from the detailed description for that item. The summary - entries are alphabetical, while the detailed descriptions are in the order they appear in the source - code. This preserves the logical groupings established by the programmer.

    -
  • -
  • -

    Annotation Type

    - -

    Each annotation type has its own separate page with the following sections:

    -
      -
    • Annotation Type declaration
    • -
    • Annotation Type description
    • -
    • Required Element Summary
    • -
    • Optional Element Summary
    • -
    • Element Detail
    • -
    -
  • -
  • -

    Enum

    - -

    Each enum has its own separate page with the following sections:

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Tree (Class Hierarchy)

    - -

    There is a Class Hierarchy page for all packages, plus a hierarchy for - each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are - organized by inheritance structure starting with java.lang.Object. The interfaces do not - inherit from java.lang.Object.

    -
      -
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • -
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy - for only that package. -
    • -
    -
  • -
  • -

    Deprecated API

    - -

    The Deprecated API page lists all of the API that have been - deprecated. A deprecated API is not recommended for use, generally due to improvements, and a - replacement API is usually given. Deprecated APIs may be removed in future implementations.

    -
  • -
  • -

    Index

    - -

    The Index contains an alphabetic list of all classes, interfaces, - constructors, methods, and fields.

    -
  • -
  • -

    Prev/Next

    - -

    These links take you to the next or previous class, interface, package, or related page.

    -
  • -
  • -

    Frames/No Frames

    - -

    These links show and hide the HTML frames. All pages are available with or without frames.

    -
  • -
  • -

    All Classes

    - -

    The All Classes link shows all classes and interfaces except - non-static nested types.

    -
  • -
  • -

    Serialized Form

    - -

    Each serializable or externalizable class has a description of its serialization fields and methods. This - information is of interest to re-implementors, not to developers using the API. While there is no link - in the navigation bar, you can get to this information by going to any serialized class and clicking - "Serialized Form" in the "See also" section of the class description.

    -
  • -
  • -

    Constant Field Values

    - -

    The Constant Field Values page lists the static final fields and their - values.

    -
  • -
- This help file applies to API documentation generated using the standard doclet.
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-1.html b/PlotSquared/doc/index-files/index-1.html deleted file mode 100644 index cf2dd025d..000000000 --- a/PlotSquared/doc/index-files/index-1.html +++ /dev/null @@ -1,525 +0,0 @@ - - - - - - A-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

A

-
-
AbstractDB - - Interface in com.intellectualcrafters.plot.database -
-
 
-
AbstractFlag - Class - in - com.intellectualcrafters.plot.flag -
-
-
Created 2014-09-23 for PlotSquared
-
-
AbstractFlag(String) - - Constructor for class com.intellectualcrafters.plot.flag.AbstractFlag
-
 
-
AbstractFlag(String, - FlagValue<?>) - Constructor for class com.intellectualcrafters.plot.flag.AbstractFlag
-
-
AbstractFlag is a parameter used in creating a new Flag
-
-
accumulate(String, - Object) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Accumulate values under a key.
-
-
add(Tag) - - Method in class com.intellectualcrafters.jnbt.ListTagBuilder
-
-
Add the given tag.
-
-
add(Logger.LogLevel, - String) - Static method in class com.intellectualcrafters.plot.util.Logger
-
 
-
add(StringWrapper, - UUID) - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
-
Add a set to the cache
-
-
add(String, - String) - Method in class com.intellectualsites.translation.TranslationFile
-
-
Add a value
-
-
add(String, - String) - Method in class com.intellectualsites.translation.YamlTranslationFile
-
-
Add a translation
-
-
addAll(Collection<? - extends Tag>) - Method in class com.intellectualcrafters.jnbt.ListTagBuilder
-
-
Add all the tags in the given list.
-
-
addComment(PlotComment) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
addDenied(UUID) - - Method in class com.intellectualcrafters.plot.object.Plot
-
-
Deny someone (use DBFunc.addDenied() as well)
-
-
addEntity(Entity, - Plot) - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
addFlag(AbstractFlag) - - Method in class com.intellectualcrafters.plot.api.PlotAPI
-
-
Register a flag for use in plots
-
-
addFlag(AbstractFlag) - - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
-
Register an AbstractFlag with PlotSquared
-
-
addFlag(Player, - World, Plot, String, String) - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
addFlag(Flag) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
addGraph(Metrics.Graph) - - Method in class com.intellectualcrafters.plot.util.Metrics
-
-
Add a Graph object to BukkitMetrics that represents data for the plugin - that should be sent to the backend -
-
-
addHelper(UUID) - - Method in class com.intellectualcrafters.plot.object.Plot
-
-
Add someone as a helper (use DBFunc as well)
-
-
addMaterials(TranslationManager) - - Static method in class com.intellectualsites.translation.bukkit.BukkitTranslation
-
-
Add material names to the translation list - Will default to a somewhat friendly name -
-
-
addPlotter(Metrics.Plotter) - - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
-
-
Add a plotter to the graph, which will be used to plot entries
-
-
addPlotWorld(String, - PlotWorld, PlotManager) - Method in class com.intellectualcrafters.plot.api.PlotAPI
-
-
Add a plot world
-
-
addPlotWorld(String, - PlotWorld, PlotManager) - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
addTranslation(TranslationObject, - TranslationAsset) - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
addTranslation(String, - TranslationAsset) - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
addTranslationObject(TranslationObject) - - Method in class com.intellectualsites.translation.TranslationManager
-
-
Add an object
-
-
addTrusted(UUID) - - Method in class com.intellectualcrafters.plot.object.Plot
-
-
Add someone as a trusted user (use DBFunc as well)
-
-
adjustWall(Player, - Plot, PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Adjusts a plot wall
-
-
adjustWallFilling(Player, - Plot, PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
ADMIN_PERMISSION - - Static variable in class com.intellectualcrafters.plot.api.PlotAPI
-
-
Permission that allows for admin access, - this permission node will allow the player - to use any part of the plugin, without limitations. -
-
-
ADMIN_PERMISSION - - Static variable in class com.intellectualcrafters.plot.PlotMain
-
 
-
alias - Variable in - class com.intellectualcrafters.plot.commands.SubCommand
-
-
Alias
-
-
aliases - Static variable - in class com.intellectualcrafters.plot.commands.Merge
-
 
-
aliases - - Static variable in class com.intellectualcrafters.plot.commands.Set
-
 
-
amount - - Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
-
 
-
AMP - Static - variable in class com.intellectualcrafters.json.XML -
-
-
The Character '&'.
-
-
API_URL - Static - variable in class com.intellectualcrafters.plot.config.Settings
-
-
API Location
-
-
APOS - Static - variable in class com.intellectualcrafters.json.XML -
-
-
The Character '''.
-
-
append(String, - Object) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Append values to the array under a key.
-
-
array() - - Method in class com.intellectualcrafters.json.JSONWriter -
-
-
Begin appending a new array.
-
-
asDouble(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a double named with the given key, even if it's another - type of number. -
-
-
asDouble(int) - - Method in class com.intellectualcrafters.jnbt.ListTag -
-
-
Get a double named with the given index, even if it's another - type of number. -
-
-
asInt(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get an int named with the given key, even if it's another - type of number. -
-
-
asInt(int) - Method in class - com.intellectualcrafters.jnbt.ListTag
-
-
Get an int named with the given index, even if it's another - type of number. -
-
-
asLong(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a long named with the given key, even if it's another - type of number. -
-
-
asLong(int) - Method in - class com.intellectualcrafters.jnbt.ListTag
-
-
Get a long named with the given index, even if it's another - type of number. -
-
-
Auto - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Auto() - - Constructor for class com.intellectualcrafters.plot.commands.Auto
-
 
-
AUTO_CLEAR - Static - variable in class com.intellectualcrafters.plot.config.Settings
-
-
Auto clear enabled
-
-
AUTO_CLEAR_DAYS - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Days until a plot gets cleared
-
-
AUTO_MERGE - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
AUTO_MERGE_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
autoMerge(World, - Plot, Player) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-10.html b/PlotSquared/doc/index-files/index-10.html deleted file mode 100644 index 1c098e0a3..000000000 --- a/PlotSquared/doc/index-files/index-10.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - J-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

J

-
-
join(String) - - Method in class com.intellectualcrafters.json.JSONArray -
-
-
Make a string from the contents of this JSONArray.
-
-
JSONArray - Class in com.intellectualcrafters.json
-
-
A JSONArray is an ordered sequence of values.
-
-
JSONArray() - Constructor - for class com.intellectualcrafters.json.JSONArray
-
-
Construct an empty JSONArray.
-
-
JSONArray(JSONTokener) - - Constructor for class com.intellectualcrafters.json.JSONArray
-
-
Construct a JSONArray from a JSONTokener.
-
-
JSONArray(String) - - Constructor for class com.intellectualcrafters.json.JSONArray
-
-
Construct a JSONArray from a source JSON text.
-
-
JSONArray(Collection<Object>) - - Constructor for class com.intellectualcrafters.json.JSONArray
-
-
Construct a JSONArray from a Collection.
-
-
JSONArray(Object) - - Constructor for class com.intellectualcrafters.json.JSONArray
-
-
Construct a JSONArray from an array
-
-
JSONException - Exception - in com.intellectualcrafters.json
-
-
The JSONException is thrown by the JSON.org classes when things are amiss.
-
-
JSONException(String) - - Constructor for exception com.intellectualcrafters.json.JSONException
-
-
Constructs a JSONException with an explanatory message.
-
-
JSONException(Throwable) - - Constructor for exception com.intellectualcrafters.json.JSONException
-
-
Constructs a new JSONException with the specified cause.
-
-
JSONML - Class in com.intellectualcrafters.json
-
-
This provides static methods to convert an XML text into a JSONArray or - JSONObject, and to covert a JSONArray or JSONObject into an XML text using - the JsonML transform. -
-
-
JSONML() - - Constructor for class com.intellectualcrafters.json.JSONML -
-
 
-
JSONObject - Class in com.intellectualcrafters.json
-
-
A JSONObject is an unordered collection of name/value pairs.
-
-
JSONObject() - - Constructor for class com.intellectualcrafters.json.JSONObject
-
-
Construct an empty JSONObject.
-
-
JSONObject(JSONObject, - String[]) - Constructor for class com.intellectualcrafters.json.JSONObject -
-
-
Construct a JSONObject from a subset of another JSONObject.
-
-
JSONObject(JSONTokener) - - Constructor for class com.intellectualcrafters.json.JSONObject
-
-
Construct a JSONObject from a JSONTokener.
-
-
JSONObject(Map<String, - Object>) - Constructor for class com.intellectualcrafters.json.JSONObject -
-
-
Construct a JSONObject from a Map.
-
-
JSONObject(Object) - - Constructor for class com.intellectualcrafters.json.JSONObject
-
-
Construct a JSONObject from an Object using bean getters.
-
-
JSONObject(Object, - String[]) - Constructor for class com.intellectualcrafters.json.JSONObject -
-
-
Construct a JSONObject from an Object, using reflection to find the - public members. -
-
-
JSONObject(String) - - Constructor for class com.intellectualcrafters.json.JSONObject
-
-
Construct a JSONObject from a source JSON text string.
-
-
JSONObject(String, - Locale) - Constructor for class com.intellectualcrafters.json.JSONObject -
-
-
Construct a JSONObject from a ResourceBundle.
-
-
JSONString - Interface - in com.intellectualcrafters.json
-
-
The JSONString interface allows a toJSONString() - method so that a class can change the behavior of - JSONObject.toString(), JSONArray.toString(), - and JSONWriter.value(Object). -
-
-
JSONStringer - Class in com.intellectualcrafters.json
-
-
JSONStringer provides a quick and convenient way of producing JSON text.
-
-
JSONStringer() - - Constructor for class com.intellectualcrafters.json.JSONStringer
-
-
Make a fresh JSONStringer.
-
-
JSONTokener - Class in com.intellectualcrafters.json
-
-
A JSONTokener takes a source string and extracts characters and tokens from - it. -
-
-
JSONTokener(Reader) - - Constructor for class com.intellectualcrafters.json.JSONTokener
-
-
Construct a JSONTokener from a Reader.
-
-
JSONTokener(InputStream) - - Constructor for class com.intellectualcrafters.json.JSONTokener
-
-
Construct a JSONTokener from an InputStream.
-
-
JSONTokener(String) - - Constructor for class com.intellectualcrafters.json.JSONTokener
-
-
Construct a JSONTokener from a string.
-
-
JSONWriter - Class in com.intellectualcrafters.json
-
-
JSONWriter provides a quick and convenient way of producing JSON text.
-
-
JSONWriter(Writer) - - Constructor for class com.intellectualcrafters.json.JSONWriter
-
-
Make a fresh JSONWriter.
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-11.html b/PlotSquared/doc/index-files/index-11.html deleted file mode 100644 index ad54b40f4..000000000 --- a/PlotSquared/doc/index-files/index-11.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - K-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

K

-
-
key(String) - - Method in class com.intellectualcrafters.json.JSONWriter -
-
-
Append a key.
-
-
keys() - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an enumeration of the keys of the JSONObject.
-
-
keySet() - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get a set of keys of the JSONObject.
-
-
Kick - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Kick() - - Constructor for class com.intellectualcrafters.plot.commands.Kick
-
 
-
KILL_ROAD_MOBS - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Kill road mobs?
-
-
KILL_ROAD_MOBS_DEFAULT - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Default kill road mobs: true
-
-
killAllEntities() - - Static method in class com.intellectualcrafters.plot.PlotMain
-
-
Kill all entities on roads
-
-
Kim - Class in com.intellectualcrafters.json
-
-
Kim makes immutable eight bit Unicode strings.
-
-
Kim(byte[], - int, int) - Constructor for class com.intellectualcrafters.json.Kim -
-
-
Make a kim from a portion of a byte array.
-
-
Kim(byte[], - int) - Constructor for class com.intellectualcrafters.json.Kim -
-
-
Make a kim from a byte array.
-
-
Kim(Kim, - int, int) - Constructor for class com.intellectualcrafters.json.Kim -
-
-
Make a new kim from a substring of an existing kim.
-
-
Kim(String) - - Constructor for class com.intellectualcrafters.json.Kim -
-
-
Make a kim from a string.
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-12.html b/PlotSquared/doc/index-files/index-12.html deleted file mode 100644 index b88bc101c..000000000 --- a/PlotSquared/doc/index-files/index-12.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - L-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

L

-
-
Lag - Class in com.intellectualcrafters.plot.util -
-
-
TPS and Lag Checker.
-
-
Lag() - - Constructor for class com.intellectualcrafters.plot.util.Lag
-
 
-
lastPlot - Static - variable in class com.intellectualcrafters.plot.commands.Auto
-
 
-
leftPlot(Location, - Location) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
length() - - Method in class com.intellectualcrafters.json.JSONArray -
-
-
Get the number of elements in the JSONArray, included nulls.
-
-
length() - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the number of keys stored in the JSONObject.
-
-
length - Variable - in class com.intellectualcrafters.json.Kim
-
-
The number of bytes in the kim.
-
-
list - Class in - com.intellectualcrafters.plot.commands -
-
 
-
list() - - Constructor for class com.intellectualcrafters.plot.commands.list
-
 
-
ListTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_List tag.
-
-
ListTag(Class<? - extends Tag>, List<? extends Tag>) - Constructor for class - com.intellectualcrafters.jnbt.ListTag
-
-
Creates the tag with an empty name.
-
-
ListTag(String, - Class<? extends Tag>, List<? extends Tag>) - Constructor for class - com.intellectualcrafters.jnbt.ListTag
-
-
Creates the tag.
-
-
ListTagBuilder - Class in - com.intellectualcrafters.jnbt
-
-
Helps create list tags.
-
-
loadConfiguration(ConfigurationSection) - - Method in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
This method is called when a world loads.
-
-
loadConfiguration(ConfigurationSection) - - Method in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
loadDefaultConfiguration(ConfigurationSection) - - Method in class com.intellectualcrafters.plot.object.PlotWorld
-
-
When a world is created, the following method will be called for each
-
-
loadWorld(String, - ChunkGenerator) - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
loadWorld(World) - - Static method in class com.intellectualcrafters.plot.PlotMain
-
-
Adds an external world as a recognized PlotSquared world - The PlotWorld - class created is based off the configuration in the settings.yml - Do not - use this method unless the required world is preconfigured in the - settings.yml -
-
-
Logger - Class in com.intellectualcrafters.plot.util -
-
-
Logging of errors and debug messages.
-
-
Logger() - Constructor for - class com.intellectualcrafters.plot.util.Logger -
-
 
-
Logger.LogLevel - Enum - in - com.intellectualcrafters.plot.util -
-
 
-
LongTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Long tag.
-
-
LongTag(long) - - Constructor for class com.intellectualcrafters.jnbt.LongTag -
-
-
Creates the tag with an empty name.
-
-
LongTag(String, - long) - Constructor for class com.intellectualcrafters.jnbt.LongTag -
-
-
Creates the tag.
-
-
LSetCube - Class in - com.intellectualcrafters.plot.util -
-
-
Cube utilities
-
-
LSetCube(Location, - Location) - Constructor for class com.intellectualcrafters.plot.util.LSetCube
-
-
Constructor
-
-
LSetCube(Location, - int) - Constructor for class com.intellectualcrafters.plot.util.LSetCube
-
-
Secondary constructor
-
-
LSetCube.LCycler - - Class in com.intellectualcrafters.plot.util -
-
 
-
LSetCube.LCycler(LSetCube) - - Constructor for class com.intellectualcrafters.plot.util.LSetCube.LCycler
-
 
-
LT - Static variable - in class com.intellectualcrafters.json.XML
-
-
The Character '<'.
-
-
LT - Static - variable in class com.intellectualcrafters.plot.util.Lag
-
-
something :_:
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-13.html b/PlotSquared/doc/index-files/index-13.html deleted file mode 100644 index 1f536a50a..000000000 --- a/PlotSquared/doc/index-files/index-13.html +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - M-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

M

-
-
MAIN_BLOCK - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Plot main block
-
-
MAIN_BLOCK_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default main block: 1
-
-
MAIN_PERMISSION - - Static variable in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
MainCommand - - Class in com.intellectualcrafters.plot.commands -
-
-
PlotMain command class
-
-
MainCommand() - - Constructor for class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
max - - Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
-
 
-
MAX_PLOTS - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Max allowed plots
-
-
maxLoc() - Method in - class com.intellectualcrafters.plot.util.LSetCube -
-
-
Returns the absolute max. of the cube
-
-
Merge - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Merge() - Constructor for - class com.intellectualcrafters.plot.commands.Merge -
-
 
-
MERGE_PRICE - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
MERGE_PRICE_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
mergePlot(World, - Plot, Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Merges 2 plots Removes the road inbetween
- - Assumes the first plot parameter is lower
- - Assumes neither are a Mega-plot
- - Assumes plots are directly next to each other
- - Saves to DB -
-
-
mergePlots(Player, - World, ArrayList<PlotId>) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Merges all plots in the arraylist (with cost)
-
-
mergePlots(World, - ArrayList<PlotId>) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Completely merges a set of plots
- (There are no checks to make sure you supply the correct - arguments)
- - Misuse of this method can result in unusable plots
- - the set of plots must belong to one owner and be rectangular
- - the plot array must be sorted in ascending order
- - Road will be removed where required
- - changes will be saved to DB
-
-
metaList - - Static variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
-
 
-
METRICS - Static - variable in class com.intellectualcrafters.plot.config.Settings
-
-
metrics
-
-
Metrics - Class in com.intellectualcrafters.plot.util -
-
 
-
Metrics(Plugin) - - Constructor for class com.intellectualcrafters.plot.util.Metrics
-
 
-
Metrics.Graph - Class - in - com.intellectualcrafters.plot.util -
-
-
Represents a custom graph on the website
-
-
Metrics.Plotter - - Class in com.intellectualcrafters.plot.util -
-
-
Interface used to collect custom data for a plugin
-
-
Metrics.Plotter() - - Constructor for class com.intellectualcrafters.plot.util.Metrics.Plotter
-
-
Construct a plotter with the default plot name
-
-
Metrics.Plotter(String) - - Constructor for class com.intellectualcrafters.plot.util.Metrics.Plotter
-
-
Construct a plotter with a specific plot name
-
-
minLoc() - Method in - class com.intellectualcrafters.plot.util.LSetCube -
-
-
Returns the absolute min. of the cube
-
-
MOB_CAP - Static - variable in class com.intellectualcrafters.plot.config.Settings
-
 
-
MOB_CAP_ENABLED - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
 
-
MOB_PATHFINDING - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
mob pathfinding?
-
-
MOB_PATHFINDING_DEFAULT - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Default mob pathfinding: true
-
-
MOB_SPAWNING - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
MOB_SPAWNING_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
MobSpawn(CreatureSpawnEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
mode - - Variable in class com.intellectualcrafters.json.JSONWriter -
-
-
The current mode.
-
-
mojangName(UUID) - - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
mojangName(UUID) - - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
-
 
-
mojangUUID(String) - - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
mojangUUID(String) - - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
-
 
-
more() - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Determine if the source string still contains characters that next() - can consume. -
-
-
MusicSubcommand - - Class in com.intellectualcrafters.plot.commands -
-
 
-
MusicSubcommand() - - Constructor for class com.intellectualcrafters.plot.commands.MusicSubcommand
-
 
-
MySQL - Class in - com.intellectualcrafters.plot.database -
-
-
Connects to and uses a MySQL database
-
-
MySQL(Plugin, - String, String, String, String, String) - Constructor for class - com.intellectualcrafters.plot.database.MySQL -
-
-
Creates a new MySQL instance
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-14.html b/PlotSquared/doc/index-files/index-14.html deleted file mode 100644 index be2cccb4d..000000000 --- a/PlotSquared/doc/index-files/index-14.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - N-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

N

-
-
nameExists(StringWrapper) - - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
-
Check if a name is cached
-
-
NameFetcher - Class - in - com.intellectualcrafters.plot.uuid -
-
-
Name Fetcher Class - From Bukkit -
-
-
NameFetcher(List<UUID>) - - Constructor for class com.intellectualcrafters.plot.uuid.NameFetcher
-
 
-
names() - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Produce a JSONArray containing the names of the elements of this - JSONObject. -
-
-
NBTConstants - Class in com.intellectualcrafters.jnbt
-
-
A class which holds constant values.
-
-
NBTInputStream - Class in - com.intellectualcrafters.jnbt
-
-
This class reads NBT, or Named Binary Tag - streams, and produces an object graph of subclasses of the Tag - object. -
-
-
NBTInputStream(InputStream) - - Constructor for class com.intellectualcrafters.jnbt.NBTInputStream
-
-
Creates a new NBTInputStream, which will source its data - from the specified input stream. -
-
-
NBTOutputStream - Class in - com.intellectualcrafters.jnbt
-
-
- This class writes NBT, or Named Binary Tag - Tag objects to an underlying OutputStream. -
-
-
NBTOutputStream(OutputStream) - - Constructor for class com.intellectualcrafters.jnbt.NBTOutputStream
-
-
Creates a new NBTOutputStream, which will write data to the - specified underlying output stream. -
-
-
NBTUtils - Class in com.intellectualcrafters.jnbt
-
-
A class which contains NBT-related utility methods.
-
-
next() - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Get the next character in the source string.
-
-
next(char) - Method in - class com.intellectualcrafters.json.JSONTokener
-
-
Consume the next character, and check that it matches a specified - character. -
-
-
next(int) - Method in - class com.intellectualcrafters.json.JSONTokener
-
-
Get the next n characters.
-
-
nextCDATA() - - Method in class com.intellectualcrafters.json.XMLTokener -
-
-
Get the text in the CDATA block.
-
-
nextClean() - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Get the next char in the string, skipping whitespace.
-
-
nextContent() - Method - in class com.intellectualcrafters.json.XMLTokener
-
-
Get the next XML outer token, trimming whitespace.
-
-
nextEntity(char) - - Method in class com.intellectualcrafters.json.XMLTokener -
-
-
Return the next entity.
-
-
nextLong() - - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
 
-
nextLong() - - Method in class com.intellectualcrafters.plot.generator.XPopulator
-
 
-
nextLong() - Static - method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
nextMeta() - Method in - class com.intellectualcrafters.json.XMLTokener
-
-
Returns the next XML meta token.
-
-
nextString(char) - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Return the characters up to the next close quote character.
-
-
nextTest() - Method in class Test1
-
 
-
nextTo(char) - Method - in class com.intellectualcrafters.json.JSONTokener -
-
-
Get the text up but not including the specified character or the - end of line, whichever comes first. -
-
-
nextTo(String) - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Get the text up but not including one of the specified delimiter - characters or the end of line, whichever comes first. -
-
-
nextToken() - - Method in class com.intellectualcrafters.json.HTTPTokener -
-
-
Get the next token or string.
-
-
nextToken() - - Method in class com.intellectualcrafters.json.XMLTokener -
-
-
Get the next XML Token.
-
-
nextValue() - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Get the next value.
-
-
no_permission(Player, - String) - Static method in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
noMask(LocalSession) - - Static method in class com.intellectualcrafters.plot.util.PWE
-
 
-
noSpace(String) - - Static method in class com.intellectualcrafters.json.XML -
-
-
Throw an exception if the string contains whitespace.
-
-
NULL - - Static variable in class com.intellectualcrafters.json.JSONObject
-
-
It is sometimes more convenient and less ambiguous to have a - NULL object than to use Java's null value. -
-
-
numberToString(Number) - - Static method in class com.intellectualcrafters.json.JSONObject
-
-
Produce a string from a Number.
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-15.html b/PlotSquared/doc/index-files/index-15.html deleted file mode 100644 index 403d62256..000000000 --- a/PlotSquared/doc/index-files/index-15.html +++ /dev/null @@ -1,759 +0,0 @@ - - - - - - O-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

O

-
-
object() - - Method in class com.intellectualcrafters.json.JSONWriter
-
-
Begin appending a new object.
-
-
of(Object) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
-
-
apply fiend for object
-
-
of(Object) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
-
-
apply method to object
-
-
onBD(BlockDamageEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBF(BlockFormEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBigBoom(EntityExplodeEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBlockIgnite(BlockIgniteEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBlockPistonExtend(BlockPistonExtendEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBlockPistonRetract(BlockPistonRetractEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBS(BlockSpreadEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBucketEmpty(PlayerBucketEmptyEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onBucketFill(PlayerBucketFillEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onChange(BlockFromToEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onChangeWorld(PlayerChangedWorldEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onChat(AsyncPlayerChatEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onChunkDespawn(ChunkUnloadEvent) - - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
onChunkLoad(ChunkLoadEvent) - - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
onCommand(CommandSender, - Command, String, String[]) - Method in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
onCreatureSpawn(CreatureSpawnEvent) - - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
onDamage(EntityDamageEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onDelete(PlotDeleteEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onDisable() - - Method in class com.intellectualcrafters.plot.PlotMain
-
-
On unload
-
-
onDisable() - - Method in class com.intellectualsites.translation.bukkit.TranslationPlugin
-
 
-
onEnable() - - Method in class com.intellectualcrafters.plot.PlotMain
-
-
On Load.
-
-
onEnable() - - Method in class com.intellectualsites.translation.bukkit.TranslationPlugin
-
 
-
onEntityBlockForm(EntityBlockFormEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onEntityDamageByEntityEvent(EntityDamageByEntityEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onEntityDeath(EntityDeathEvent) - - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
onFade(BlockFadeEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onGrow(BlockGrowEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onHangingBreakByEntity(HangingBreakByEntityEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onHangingPlace(HangingPlaceEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onInteract(PlayerInteractEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onInteract(BlockDamageEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onInteract(PlayerInteractEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onInventoryAction(InventoryInteractEvent) - - Method in class com.intellectualcrafters.plot.listeners.InventoryListener
-
 
-
onInventoryClick(InventoryClickEvent) - - Method in class com.intellectualcrafters.plot.listeners.InventoryListener
-
 
-
onInventoryClick(InventoryClickEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onInventoryClick(InventoryClickEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onItemDrop(PlayerDropItemEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onItemPickup(PlayerPickupItemEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onJoin(PlayerJoinEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onLeave(PlayerQuitEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onMerge(PlotMergeEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
onOptOut() - Method in - class com.intellectualcrafters.plot.util.Metrics.Graph -
-
-
Called when the server owner decides to opt-out of BukkitMetrics - while the server is running. -
-
-
onPeskyMobsChangeTheWorldLikeWTFEvent(EntityChangeBlockEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onPlayerCommand(PlayerCommandPreprocessEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onPlayerEggThrow(PlayerEggThrowEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onPlayerInteract(PlayerInteractEvent) - - Static method in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
onPlayerInteractEntity(PlayerInteractEntityEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onPlayerJoin(PlayerJoinEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onPlayerMove(PlayerMoveEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onPlayerQuit(PlayerQuitEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onPlotClaim(PlayerClaimPlotEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
onPlotDelete(PlotDeleteEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
onPlotEnter(PlayerEnterPlotEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onPlotEntry(PlayerMoveEvent) - - Method in class com.intellectualcrafters.plot.listeners.ForceFieldListener
-
 
-
onPlotLeave(PlayerLeavePlotEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
onPortal(PlayerPortalEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onStructureGrow(StructureGrowEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onTabComplete(CommandSender, - Command, String, String[]) - Method in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
onTeleport(PlayerTeleportEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
onTeleport(PlayerTeleportEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
onUnlink(PlotUnlinkEvent) - - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
onWorldLoad(WorldLoadEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
OP - Class in com.intellectualcrafters.plot.commands -
-
-
Created 2014-11-09 for PlotSquared
-
-
OP() - Constructor - for class com.intellectualcrafters.plot.commands.OP -
-
 
-
openConnection() - - Method in class com.intellectualcrafters.plot.database.Database
-
-
Opens a connection with the database
-
-
openConnection() - - Method in class com.intellectualcrafters.plot.database.MySQL
-
 
-
openConnection() - - Method in class com.intellectualcrafters.plot.database.SQLite
-
 
-
opt(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional object value associated with an index.
-
-
opt(String) - Method in - class com.intellectualcrafters.json.JSONObject
-
-
Get an optional value associated with a key.
-
-
optBoolean(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Get the optional boolean value associated with an index.
-
-
optBoolean(int, - boolean) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional boolean value associated with an index.
-
-
optBoolean(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional boolean associated with a key.
-
-
optBoolean(String, - boolean) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional boolean associated with a key.
-
-
optDouble(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Get the optional double value associated with an index.
-
-
optDouble(int, - double) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional double value associated with an index.
-
-
optDouble(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional double associated with a key, or NaN if there is no such - key or if its value is not a number. -
-
-
optDouble(String, - double) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional double associated with a key, or the defaultValue if - there is no such key or if its value is not a number. -
-
-
optInt(int) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional int value associated with an index.
-
-
optInt(int, - int) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional int value associated with an index.
-
-
optInt(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional int value associated with a key, or zero if there is no - such key or if the value is not a number. -
-
-
optInt(String, - int) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional int value associated with a key, or the default if there - is no such key or if the value is not a number. -
-
-
optJSONArray(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional JSONArray associated with an index.
-
-
optJSONArray(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional JSONArray associated with a key.
-
-
optJSONObject(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional JSONObject associated with an index.
-
-
optJSONObject(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional JSONObject associated with a key.
-
-
optLong(int) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional long value associated with an index.
-
-
optLong(int, - long) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional long value associated with an index.
-
-
optLong(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional long value associated with a key, or zero if there is no - such key or if the value is not a number. -
-
-
optLong(String, - long) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional long value associated with a key, or the default if there - is no such key or if the value is not a number. -
-
-
optString(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Get the optional string value associated with an index.
-
-
optString(int, - String) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the optional string associated with an index.
-
-
optString(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional string associated with a key.
-
-
optString(String, - String) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an optional string associated with a key.
-
-
owner - Variable - in class com.intellectualcrafters.plot.object.Plot
-
-
plot owner
-
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-16.html b/PlotSquared/doc/index-files/index-16.html deleted file mode 100644 index e2e10d288..000000000 --- a/PlotSquared/doc/index-files/index-16.html +++ /dev/null @@ -1,1189 +0,0 @@ - - - - - - P-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

P

-
-
parse(String) - - Method in class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
-
 
-
parse(String) - - Method in class com.intellectualcrafters.plot.flag.FlagValue -
-
 
-
parse(String) - - Method in class com.intellectualcrafters.plot.flag.FlagValue.StringValue
-
 
-
parseFlags(List<String>) - - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
 
-
parseObject(Object) - - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
-
 
-
parseString(String) - - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
-
 
-
parseValue(String) - - Method in class com.intellectualcrafters.plot.flag.AbstractFlag
-
 
-
PASSWORD - - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL Password
-
-
Paste - Class in com.intellectualcrafters.plot.commands -
-
 
-
Paste() - - Constructor for class com.intellectualcrafters.plot.commands.Paste
-
 
-
paste(World, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotSelection
-
 
-
paste(Location, - SchematicHandler.Schematic, Plot, int, int) - Static method in class - com.intellectualcrafters.plot.util.SchematicHandler
-
-
Paste a schematic
-
-
pastePart(World, - SchematicHandler.DataCollection[], Location, int, int, int, int, int, int) - Static method in class - com.intellectualcrafters.plot.util.SchematicHandler
-
 
-
permission - - Variable in class com.intellectualcrafters.plot.commands.CommandPermission
-
 
-
permission - Variable in - class com.intellectualcrafters.plot.commands.SubCommand -
-
-
Permission node
-
-
PlayerClaimPlotEvent - - Class in com.intellectualcrafters.plot.events -
-
 
-
PlayerClaimPlotEvent(Player, - Plot, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
-
PlayerClaimPlotEvent: Called when a plot is claimed
-
-
PlayerEnterPlotEvent - - Class in com.intellectualcrafters.plot.events -
-
 
-
PlayerEnterPlotEvent(Player, - Plot) - Constructor for class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
-
-
PlayerEnterPlotEvent: Called when a player leaves a plot
-
-
PlayerEvents - Class in - com.intellectualcrafters.plot.listeners -
-
-
Player Events involving plots
-
-
PlayerEvents() - - Constructor for class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
PlayerFunctions - Class in com.intellectualcrafters.plot.util
-
-
Functions involving players, plots and locations.
-
-
PlayerFunctions() - - Constructor for class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
PlayerLeavePlotEvent - - Class in com.intellectualcrafters.plot.events -
-
 
-
PlayerLeavePlotEvent(Player, - Plot) - Constructor for class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
-
-
PlayerLeavePlotEvent: Called when a player leaves a plot
-
-
PlayerMove(PlayerMoveEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
PlayerPlotDeniedEvent - - Class in com.intellectualcrafters.plot.events -
-
 
-
PlayerPlotDeniedEvent(Player, - Plot, UUID, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
-
PlayerPlotDeniedEvent: Called when the denied UUID list is modified for a - plot -
-
-
PlayerPlotHelperEvent - - Class in com.intellectualcrafters.plot.events -
-
 
-
PlayerPlotHelperEvent(Player, - Plot, UUID, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
-
PlayerPlotHelperEvent: Called when a plot helper is added/removed
-
-
PlayerPlotTrustedEvent - - Class in com.intellectualcrafters.plot.events -
-
 
-
PlayerPlotTrustedEvent(Player, - Plot, UUID, boolean) - Constructor for class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
-
PlayerPlotTrustedEvent: Called when a plot trusted user is added/removed
-
-
PlayerTeleportToPlotEvent - - Class in com.intellectualcrafters.plot.events -
-
-
Called when a player teleports to a plot
-
-
PlayerTeleportToPlotEvent(Player, - Location, Plot) - Constructor for class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
-
PlayerTeleportToPlotEvent: Called when a player teleports to a plot
-
-
Plot - Class in com.intellectualcrafters.plot.object -
-
-
The plot class
-
-
Plot(PlotId, - UUID, Biome, ArrayList<UUID>, ArrayList<UUID>, String) - Constructor for class - com.intellectualcrafters.plot.object.Plot
-
-
Deprecated. 
-
-
Plot(PlotId, - UUID, ArrayList<UUID>, ArrayList<UUID>, String) - Constructor for class - com.intellectualcrafters.plot.object.Plot
-
-
Primary constructor
-
-
Plot(PlotId, - UUID, Biome, ArrayList<UUID>, ArrayList<UUID>, ArrayList<UUID>, String, PlotHomePosition, Flag[], - String, boolean[]) - Constructor for class com.intellectualcrafters.plot.object.Plot -
-
-
Deprecated. 
-
-
Plot(PlotId, - UUID, ArrayList<UUID>, ArrayList<UUID>, ArrayList<UUID>, String, PlotHomePosition, Flag[], String, - boolean[]) - Constructor for class com.intellectualcrafters.plot.object.Plot -
-
-
Constructor for saved plots
-
-
PLOT_BIOME - Variable in - class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
PLOT_BIOME_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
PLOT_CHAT - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
PLOT_CHAT_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
PLOT_HEIGHT - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
plot height
-
-
PLOT_HEIGHT_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default plot height: 64
-
-
PLOT_PRICE - Variable in - class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
PLOT_PRICE_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
PLOT_SPECIFIC_RESOURCE_PACK - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
plot specific resource pack
-
-
PLOT_WIDTH - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
plot width
-
-
PLOT_WIDTH_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default plot width: 32
-
-
PlotAPI - Class in com.intellectualcrafters.plot.api
-
-
PlotSquared API
-
-
PlotAPI(JavaPlugin) - - Constructor for class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Constructor.
-
-
PlotBlock - Class in com.intellectualcrafters.plot.object -
-
 
-
PlotBlock(short, - byte) - Constructor for class com.intellectualcrafters.plot.object.PlotBlock
-
 
-
PlotClearEvent - Class in - com.intellectualcrafters.plot.events
-
-
Called when a plot is cleared
-
-
PlotClearEvent(String, - PlotId) - Constructor for class com.intellectualcrafters.plot.events.PlotClearEvent
-
-
PlotDeleteEvent: Called when a plot is cleared
-
-
PlotComment - Class in com.intellectualcrafters.plot.object -
-
 
-
PlotComment(String, - String, int) - Constructor for class com.intellectualcrafters.plot.object.PlotComment
-
 
-
PlotDeleteEvent - Class in - com.intellectualcrafters.plot.events
-
-
Called when a plot is deleted
-
-
PlotDeleteEvent(String, - PlotId) - Constructor for class com.intellectualcrafters.plot.events.PlotDeleteEvent
-
-
PlotDeleteEvent: Called when a plot is deleted
-
-
plotEntry(Player, - Plot) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
plotExit(Player, - Plot) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
PlotFlagAddEvent - Class in - com.intellectualcrafters.plot.events
-
-
Called when a Flag is added to a plot
-
-
PlotFlagAddEvent(Flag, - Plot) - Constructor for class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
-
PlotFlagAddEvent: Called when a Flag is added to a plot
-
-
PlotFlagRemoveEvent - Class - in com.intellectualcrafters.plot.events -
-
-
Called when a flag is removed from a plot
-
-
PlotFlagRemoveEvent(Flag, - Plot) - Constructor for class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
-
PlotFlagRemoveEvent: Called when a flag is removed from a plot
-
-
PlotGenerator - Class in com.intellectualcrafters.plot.object -
-
 
-
PlotGenerator(String) - - Constructor for class com.intellectualcrafters.plot.object.PlotGenerator
-
 
-
PlotHelper - Class in com.intellectualcrafters.plot.util
-
-
plot functions
-
-
PlotHelper() - Constructor - for class com.intellectualcrafters.plot.util.PlotHelper -
-
 
-
PlotHomePosition - Enum in - com.intellectualcrafters.plot.object
-
 
-
PlotId - Class in com.intellectualcrafters.plot.object -
-
 
-
PlotId(int, - int) - Constructor for class com.intellectualcrafters.plot.object.PlotId
-
-
PlotId class (PlotId x,y values do not correspond to Block locations)
-
-
PlotListener - Class in - com.intellectualcrafters.plot.listeners -
-
 
-
PlotListener() - - Constructor for class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
PlotMain - Class in com.intellectualcrafters.plot -
-
-
PlotMain class.
-
-
PlotMain() - - Constructor for class com.intellectualcrafters.plot.PlotMain -
-
 
-
PlotManager - Class in com.intellectualcrafters.plot.object -
-
 
-
PlotManager() - - Constructor for class com.intellectualcrafters.plot.object.PlotManager
-
 
-
PlotMeConverter - Class - in - com.intellectualcrafters.plot.database -
-
-
Created 2014-08-17 for PlotSquared
-
-
PlotMeConverter(PlotMain) - - Constructor for class com.intellectualcrafters.plot.database.PlotMeConverter
-
-
Constructor
-
-
PlotMergeEvent - Class in - com.intellectualcrafters.plot.events
-
 
-
PlotMergeEvent(World, - Plot, ArrayList<PlotId>) - Constructor for class com.intellectualcrafters.plot.events.PlotMergeEvent
-
-
PlotMergeEvent: Called when plots are merged
-
-
PlotPlusListener - Class - in - com.intellectualcrafters.plot.listeners -
-
-
Created 2014-10-30 for PlotSquared
-
-
PlotPlusListener() - - Constructor for class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
PlotPlusListener.Interval - Class in com.intellectualcrafters.plot.listeners -
-
 
-
PlotPlusListener.Interval(int, - int, int) - Constructor for class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
-
 
-
PlotPlusListener.RecordMeta - - Class in com.intellectualcrafters.plot.listeners -
-
-
Record Meta Class
-
-
PlotPlusListener.RecordMeta(String, - Material) - Constructor for class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
-
 
-
PlotSelection - Class in com.intellectualcrafters.plot.object -
-
-
Created 2014-10-12 for PlotSquared
-
-
PlotSelection(int, - World, Plot) - Constructor for class com.intellectualcrafters.plot.object.PlotSelection
-
 
-
PlotSettings - Class in com.intellectualcrafters.plot.object -
-
-
plot settings
-
-
PlotSettings(Plot) - - Constructor for class com.intellectualcrafters.plot.object.PlotSettings
-
-
Constructor
-
-
PlotSquaredException - - Exception in com.intellectualcrafters.plot.util -
-
-
Created 2014-09-29 for PlotSquared
-
-
PlotSquaredException(PlotSquaredException.PlotError, - String) - Constructor for exception com.intellectualcrafters.plot.util.PlotSquaredException
-
 
-
PlotSquaredException.PlotError - - Enum in com.intellectualcrafters.plot.util -
-
 
-
PlotTable - - Class in com.intellectualcrafters.plot.database.sqlobjects -
-
-
Created by Citymonstret on 2014-10-28.
-
-
PlotTable() - - Constructor for class com.intellectualcrafters.plot.database.sqlobjects.PlotTable
-
 
-
PlotUnlinkEvent - Class in - com.intellectualcrafters.plot.events
-
 
-
PlotUnlinkEvent(World, - ArrayList<PlotId>) - Constructor for class com.intellectualcrafters.plot.events.PlotUnlinkEvent
-
-
Called when a mega-plot is unlinked.
-
-
PlotUUIDSaver - Class in com.intellectualcrafters.plot.uuid
-
-
Plot UUID Saver/Fetcher
-
-
PlotUUIDSaver() - - Constructor for class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
PlotWorld - Class in com.intellectualcrafters.plot.object -
-
 
-
PlotWorld(String) - - Constructor for class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
plugin - Class in com.intellectualcrafters.plot.commands -
-
 
-
plugin() - - Constructor for class com.intellectualcrafters.plot.commands.plugin
-
 
-
plugin - - Variable in class com.intellectualcrafters.plot.database.Database
-
-
Plugin instance, use for plugin.getDataFolder()
-
-
populate(World, - Random, Chunk) - Method in class com.intellectualcrafters.plot.generator.XPopulator
-
 
-
PORT - - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL Port
-
-
PREFIX - - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL Prefix
-
-
Property - Class in com.intellectualcrafters.json -
-
-
Converts a Property file data into JSONObject and back.
-
-
Property() - - Constructor for class com.intellectualcrafters.json.Property -
-
 
-
Purge - Class in com.intellectualcrafters.plot.commands -
-
 
-
Purge() - - Constructor for class com.intellectualcrafters.plot.commands.Purge
-
 
-
purge(String, - PlotId) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Purgle a plot
-
-
purge(String) - - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Purge a whole world
-
-
purge(String, - PlotId) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
purge(String) - - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
purge(String, - PlotId) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
purge(String) - - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
put(String, - Tag) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and tag into the compound tag.
-
-
put(boolean) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Append a boolean value.
-
-
put(Collection<Object>) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put a value in the JSONArray, where the value will be a JSONArray which - is produced from a Collection. -
-
-
put(double) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Append a double value.
-
-
put(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Append an int value.
-
-
put(long) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Append an long value.
-
-
put(Map<String, - Object>) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put a value in the JSONArray, where the value will be a JSONObject which - is produced from a Map. -
-
-
put(Object) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Append an object value.
-
-
put(int, - boolean) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put or replace a boolean value in the JSONArray.
-
-
put(int, - Collection<Object>) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put a value in the JSONArray, where the value will be a JSONArray which - is produced from a Collection. -
-
-
put(int, - double) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put or replace a double value.
-
-
put(int, - int) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put or replace an int value.
-
-
put(int, - long) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put or replace a long value.
-
-
put(int, - Map<String, Object>) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put a value in the JSONArray, where the value will be a JSONObject that - is produced from a Map. -
-
-
put(int, - Object) - Method in class com.intellectualcrafters.json.JSONArray
-
-
Put or replace an object value in the JSONArray.
-
-
put(String, - boolean) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/boolean pair in the JSONObject.
-
-
put(String, - Collection<Object>) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/value pair in the JSONObject, where the value will be a - JSONArray which is produced from a Collection. -
-
-
put(String, - double) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/double pair in the JSONObject.
-
-
put(String, - int) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/int pair in the JSONObject.
-
-
put(String, - long) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/long pair in the JSONObject.
-
-
put(String, Map<String, - Object>) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/value pair in the JSONObject, where the value will be a - JSONObject which is produced from a Map. -
-
-
put(String, - Object) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/value pair in the JSONObject.
-
-
putAll(Map<String, - ? extends Tag>) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put all the entries from the given map into this map.
-
-
putByte(String, - byte) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a ByteTag.
-
-
putByteArray(String, - byte[]) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a - ByteArrayTag. -
-
-
putDouble(String, - double) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a DoubleTag.
-
-
putFloat(String, - float) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a FloatTag.
-
-
putInt(String, - int) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as an IntTag.
-
-
putIntArray(String, - int[]) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a - IntArrayTag. -
-
-
putLong(String, - long) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a LongTag.
-
-
putOnce(String, - Object) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/value pair in the JSONObject, but only if the key and the value - are both non-null, and only if there is not already a member with that - name. -
-
-
putOpt(String, - Object) - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Put a key/value pair in the JSONObject, but only if the key and the value - are both non-null. -
-
-
putShort(String, - short) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a ShortTag.
-
-
putString(String, - String) - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder -
-
-
Put the given key and value into the compound tag as a StringTag.
-
-
PVE - Variable - in class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
PVE_DEFAULT - Static - variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
PVP - Variable - in class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
PVP_DEFAULT - Static - variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
PWE - Class in com.intellectualcrafters.plot.util -
-
 
-
PWE() - Constructor - for class com.intellectualcrafters.plot.util.PWE
-
 
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-17.html b/PlotSquared/doc/index-files/index-17.html deleted file mode 100644 index 0db6d3bf3..000000000 --- a/PlotSquared/doc/index-files/index-17.html +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - Q-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

Q

-
-
querySQL(String) - - Method in class com.intellectualcrafters.plot.database.Database
-
-
Executes a SQL Query
- If the connection is closed, it will be opened -
-
-
querySQL(String) - - Method in class com.intellectualcrafters.plot.database.MySQL
-
 
-
querySQL(String) - - Method in class com.intellectualcrafters.plot.database.SQLite
-
 
-
QUEST - Static - variable in class com.intellectualcrafters.json.XML -
-
-
The Character '?'.
-
-
QUOT - Static - variable in class com.intellectualcrafters.json.XML -
-
-
The Character '"'.
-
-
quote(String) - - Static method in class com.intellectualcrafters.json.JSONObject
-
-
Produce a string in double quotes with backslash sequences in all the - right places. -
-
-
quote(String, - Writer) - Static method in class com.intellectualcrafters.json.JSONObject -
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-18.html b/PlotSquared/doc/index-files/index-18.html deleted file mode 100644 index 7a798007d..000000000 --- a/PlotSquared/doc/index-files/index-18.html +++ /dev/null @@ -1,654 +0,0 @@ - - - - - - R-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

R

-
-
random(int) - - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
 
-
random(int) - Method in - class com.intellectualcrafters.plot.generator.XPopulator -
-
 
-
random(int) - Static method - in class com.intellectualcrafters.plot.util.PlotHelper -
-
 
-
Rate - Class in com.intellectualcrafters.plot.commands -
-
 
-
Rate() - - Constructor for class com.intellectualcrafters.plot.commands.Rate
-
 
-
read() - - Method in class com.intellectualsites.translation.TranslationFile
-
-
Read from the file
-
-
read() - Method in class - com.intellectualsites.translation.YamlTranslationFile
-
-
Read the file
-
-
readTag() - - Method in class com.intellectualcrafters.jnbt.NBTInputStream -
-
-
Reads an NBT tag from the stream.
-
-
ReflectionUtils - Class in com.intellectualcrafters.plot.util
-
 
-
ReflectionUtils() - - Constructor for class com.intellectualcrafters.plot.util.ReflectionUtils
-
 
-
ReflectionUtils.RefClass - - Class in com.intellectualcrafters.plot.util -
-
-
RefClass - utility to simplify work with reflections.
-
-
ReflectionUtils.RefConstructor - Class in com.intellectualcrafters.plot.util
-
-
Constructor wrapper
-
-
ReflectionUtils.RefField - - Class in com.intellectualcrafters.plot.util -
-
 
-
ReflectionUtils.RefField.RefExecutor - Class in com.intellectualcrafters.plot.util
-
 
-
ReflectionUtils.RefField.RefExecutor(Object) - - Constructor for class com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
-
 
-
ReflectionUtils.RefMethod - - Class in com.intellectualcrafters.plot.util -
-
-
Method wrapper
-
-
ReflectionUtils.RefMethod.RefExecutor - Class in com.intellectualcrafters.plot.util
-
 
-
ReflectionUtils.RefMethod.RefExecutor(Object) - - Constructor for class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod.RefExecutor
-
 
-
refreshPlotChunks(World, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
registerCommand(SubCommand) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Register a subcommand
-
-
Reload - Class in com.intellectualcrafters.plot.commands -
-
 
-
Reload() - - Constructor for class com.intellectualcrafters.plot.commands.Reload
-
 
-
reload() - Method in - class com.intellectualsites.translation.YamlTranslationFile -
-
-
Reload
-
-
reloadTranslations() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
remove(int) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Remove an index and close the hole.
-
-
remove(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Remove a name and its value, if present.
-
-
removeComment(String, - Plot, PlotComment) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Remove a plot comment
-
-
removeComment(String, - Plot, PlotComment) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
removeComment(String, - Plot, PlotComment) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
removeComment(PlotComment) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
removeComments(ArrayList<PlotComment>) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
removeDenied(String, - Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
removeDenied(String, - Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
removeDenied(String, - Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
removeDenied(UUID) - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Remove a denied player (use DBFunc as well)
-
-
removeFlag(Flag[], - String) - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
 
-
removeFlag(Set<Flag>, - String) - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
 
-
removeFlag(AbstractFlag) - - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
-
Remove a registered AbstractFlag
-
-
removeFlag(Player, - World, Plot, String) - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
removeHelper(String, - Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
removeHelper(String, - Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
removeHelper(String, - Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
removeHelper(UUID) - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Remove a helper (use DBFunc as well)
-
-
removeMask(Player, - LocalSession) - Static method in class com.intellectualcrafters.plot.util.PWE
-
 
-
removeMask(Player) - - Static method in class com.intellectualcrafters.plot.util.PWE -
-
 
-
removePlot(String, - PlotId, boolean) - Static method in class com.intellectualcrafters.plot.PlotMain
-
 
-
removePlotter(Metrics.Plotter) - - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
-
-
Remove a plotter from the graph
-
-
removePlotWorld(String) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
removeRoadEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
removeRoadEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
removeRoadSouth(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
removeRoadSouth(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
removeRoadSouthEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
removeRoadSouthEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
removeSign(World, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
removeTranslationObject(TranslationObject) - - Method in class com.intellectualsites.translation.TranslationManager
-
-
Remove an object
-
-
removeTrusted(String, - Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
removeTrusted(String, - Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
removeTrusted(String, - Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
removeTrusted(UUID) - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Remove a trusted user (use DBFunc as well)
-
-
reset() - - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
-
-
Called after the website graphs have been updated
-
-
resetTitle(Player) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Reset the title settings
-
-
restrictedcmds - - Variable in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
ROAD_BLOCK - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Road block
-
-
ROAD_BLOCK_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default road block: 155
-
-
ROAD_HEIGHT - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Road Height
-
-
ROAD_HEIGHT_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default Road Height: 64
-
-
ROAD_STRIPES - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Road stripes
-
-
ROAD_STRIPES_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default road stripes: 35
-
-
ROAD_STRIPES_ENABLED - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
enable road stripes
-
-
ROAD_STRIPES_ENABLED_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
 
-
ROAD_WIDTH - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Road width
-
-
ROAD_WIDTH_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default road width: 7
-
-
rowToJSONArray(JSONTokener) - - Static method in class com.intellectualcrafters.json.CDL -
-
-
Produce a JSONArray of strings from a row of comma delimited values.
-
-
rowToJSONObject(JSONArray, - JSONTokener) - Static method in class com.intellectualcrafters.json.CDL
-
-
Produce a JSONObject from a row of comma delimited text, using a - parallel JSONArray of strings to provides the names of the elements. -
-
-
rowToString(JSONArray) - - Static method in class com.intellectualcrafters.json.CDL -
-
-
Produce a comma delimited text row from a JSONArray.
-
-
run() - Method in - class com.intellectualcrafters.plot.util.Lag
-
 
-
runAsync() - Method - in class com.intellectualcrafters.plot.database.PlotMeConverter
-
 
-
runners - - Static variable in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
runners_p - - Static variable in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
russianRussian - - Static variable in class com.intellectualsites.translation.TranslationLanguage
-
 
-
RUtils - Class in com.intellectualcrafters.plot.util
-
-
Random utilities
-
-
RUtils() - - Constructor for class com.intellectualcrafters.plot.util.RUtils -
-
 
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-19.html b/PlotSquared/doc/index-files/index-19.html deleted file mode 100644 index 20bb216bb..000000000 --- a/PlotSquared/doc/index-files/index-19.html +++ /dev/null @@ -1,1402 +0,0 @@ - - - - - - S-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

S

-
-
s() - Method in enum - com.intellectualcrafters.plot.config.C
-
-
Get translated if exists
-
-
save(CompoundTag, - String) - Static method in class com.intellectualcrafters.plot.util.SchematicHandler
-
-
Saves a schematic to a file path
-
-
save(UUIDSet) - - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
save(UUIDSet) - - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
-
 
-
saveAll(TranslationFile) - - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
saveConfiguration(ConfigurationSection) - - Method in class com.intellectualcrafters.plot.object.PlotWorld
-
-
Saving core plotworld settings
-
-
saveFile() - Method in - class com.intellectualsites.translation.TranslationFile -
-
-
Save the file
-
-
saveFile(TranslationFile) - - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
saveFile() - Method - in class com.intellectualsites.translation.YamlTranslationFile -
-
-
Save the file
-
-
saveTranslations() - Static - method in enum com.intellectualcrafters.plot.config.C -
-
 
-
scan(Class, - TranslationManager) - Static method in class com.intellectualsites.translation.TranslationManager
-
 
-
Schematic - Class in com.intellectualcrafters.plot.commands -
-
 
-
Schematic() - - Constructor for class com.intellectualcrafters.plot.commands.Schematic
-
 
-
SCHEMATIC_CLAIM_SPECIFY - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SCHEMATIC_CLAIM_SPECIFY_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SCHEMATIC_FILE - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SCHEMATIC_FILE_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SCHEMATIC_ON_CLAIM - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SCHEMATIC_ON_CLAIM_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SCHEMATIC_SAVE_PATH - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Schematic Save Path
-
-
SchematicHandler - Class in - com.intellectualcrafters.plot.util
-
-
Schematic Handler
-
-
SchematicHandler() - - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler
-
 
-
SchematicHandler.DataCollection - Class in com.intellectualcrafters.plot.util
-
-
Schematic Data Collection
-
-
SchematicHandler.DataCollection(short, - byte) - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
-
 
-
SchematicHandler.Dimension - - Class in com.intellectualcrafters.plot.util -
-
-
Schematic Dimensions
-
-
SchematicHandler.Dimension(int, - int, int) - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
-
 
-
SchematicHandler.Schematic - - Class in com.intellectualcrafters.plot.util -
-
-
Schematic Class
-
-
SchematicHandler.Schematic(SchematicHandler.DataCollection[], - SchematicHandler.Dimension, File) - Constructor for class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
-
 
-
SCHEMATICS - Variable in - class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
SCHEMATICS_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SELL_PRICE - Variable in - class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
SELL_PRICE_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
send(Player) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Send the title to a player
-
-
sendConsoleMessage(String) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Send a message to the console. - Supports color codes
-
-
sendConsoleMessage(C) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Send a message to the console
-
-
sendConsoleSenderMessage(String) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Send a message to the console.
-
-
sendConsoleSenderMessage(C) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Send a message to the console
-
-
senderName - Variable in - class com.intellectualcrafters.plot.object.PlotComment -
-
 
-
sendMessage(Player, - C) - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Send a message to a player.
-
-
sendMessage(Player, - String) - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Send a message to a player. - Supports color codes
-
-
sendMessage(Player, - C, String...) - Method in class com.intellectualcrafters.plot.commands.SubCommand
-
-
Send a message
-
-
sendMessage(Player, - String) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Send a message to the player
-
-
sendMessage(Player, - C, String...) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Send a message to the player
-
-
sendMessageWrapped(Player, - String) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
\\previous\\
-
-
Set - Class in com.intellectualcrafters.plot.commands -
-
 
-
Set() - - Constructor for class com.intellectualcrafters.plot.commands.Set
-
 
-
set(Plot) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Deprecated. 
-
-
set(Object) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
-
-
set field value for applied object
-
-
set(World, - int, int, int, int, byte) - Static method in class com.intellectualcrafters.plot.util.SetBlockFast
-
 
-
SET_OWNER - Variable in - class com.intellectualcrafters.plot.database.SQLManager -
-
 
-
setAlias(String, - Plot, String) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Set the plot alias
-
-
setAlias(String, - Plot, String) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setAlias(String, - Plot, String) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setAlias(String) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
-
Set the plot alias
-
-
setAllPlotsRaw(HashMap<String, - HashMap<PlotId, Plot>>) - Static method in class com.intellectualcrafters.plot.PlotMain
-
 
-
setAllPlotsRaw(LinkedHashMap<String, - HashMap<PlotId, Plot>>) - Static method in class com.intellectualcrafters.plot.PlotMain
-
 
-
setBiome(World, - Plot, Biome) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Set a plot biome
-
-
setBiome(World, - Plot, Biome) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
setBiome(World, - Plot, Biome) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
setBlock(Block, - PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Set a block quickly, attempts to use NMS if possible
-
-
SetBlockFast - Class in com.intellectualcrafters.plot.util
-
-
SetBlockFast class
- Used to do fast world editing -
-
-
SetBlockFast() - - Constructor for class com.intellectualcrafters.plot.util.SetBlockFast
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
-
 
-
setCancelled(boolean) - - Method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
-
 
-
setComment(String, - Plot, PlotComment) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Set a plot comment
-
-
setComment(String, - Plot, PlotComment) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setComment(String, - Plot, PlotComment) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setComments(ArrayList<PlotComment>) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
setCuboid(World, - Location, Location, PlotBlock[]) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
setCuboidRegion(int, - int, int, int, int, int, PlotBlock) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Cuboid based plot generation is quick, as it requires no calculations - inside the loop - You don't have to use this this method, but you may - find it useful. -
-
-
setCuboidRegion(int, - int, int, int, int, int, PlotBlock, World) - Method in class com.intellectualcrafters.plot.generator.XPopulator
-
 
-
setDenied(String, - Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
setDenied(String, - Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setDenied(String, - Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setFadeInTime(int) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Set title fade in time
-
-
setFadeOutTime(int) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Set title fade out time
-
-
setFlags(String, - Plot, Flag[]) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Set plot flags
-
-
setFlags(String, - Plot, Flag[]) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setFlags(String, - Plot, Flag[]) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setFlags(int, - Flag[]) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setFlags(Flag[]) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
-
Set multiple flags
-
-
setFloor(World, - PlotWorld, PlotId, PlotBlock[]) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
setFloor(World, - PlotWorld, PlotId, PlotBlock[]) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
setFloor(Player, - Plot, PlotBlock[]) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
setHelper(String, - Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
setHelper(String, - Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setHelper(String, - Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setMask(Player, - Location) - Static method in class com.intellectualcrafters.plot.util.PWE
-
 
-
setMerged(String, - Plot, boolean[]) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Set the merged status for a plot
-
-
setMerged(String, - Plot, boolean[]) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setMerged(String, - Plot, boolean[]) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setMerged(boolean[]) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
setMerged(int, - boolean) - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
setNBT(World, - short, byte, int, int, int, CompoundTag) - Static method in class com.intellectualcrafters.jnbt.WorldEditUtils -
-
 
-
setNoMask(Player) - - Static method in class com.intellectualcrafters.plot.util.PWE -
-
 
-
SetOwner - Class in com.intellectualcrafters.plot.commands -
-
 
-
SetOwner() - Constructor - for class com.intellectualcrafters.plot.commands.SetOwner -
-
 
-
setOwner(Plot, - UUID) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Set Plot owner
-
-
setOwner(Plot, - UUID) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setOwner(Plot, - UUID) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
-
Set Plot owner
-
-
setOwner(Player) - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Set the owner
-
-
setPosition(String, - Plot, String) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Set Plot Home Position
-
-
setPosition(String, - Plot, String) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setPosition(String, - Plot, String) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setPosition(PlotHomePosition) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
setSign(Player, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
setSign(World, - String, Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
setSimpleCuboid(World, - Location, Location, PlotBlock) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
setStayTime(int) - Method - in class com.intellectualcrafters.plot.object.Title -
-
-
Set title stay time
-
-
setSubtitleColor(ChatColor) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Set the subtitle color
-
-
setTimingsToSeconds() - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Set timings to seconds
-
-
setTimingsToTicks() - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Set timings to ticks
-
-
Settings - Class in com.intellectualcrafters.plot.config -
-
-
Updater and DB settings
-
-
Settings() - Constructor for - class com.intellectualcrafters.plot.config.Settings -
-
 
-
settings - - Variable in class com.intellectualcrafters.plot.object.Plot -
-
-
External settings class
-
-
Settings.DB - Class in com.intellectualcrafters.plot.config -
-
-
Database settings
-
-
Settings.DB() - - Constructor for class com.intellectualcrafters.plot.config.Settings.DB
-
 
-
setTitleColor(ChatColor) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Set the title color
-
-
setTrusted(String, - Plot, OfflinePlayer) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
setTrusted(String, - Plot, OfflinePlayer) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
setTrusted(String, - Plot, OfflinePlayer) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
setup(JavaPlugin) - - Static method in class com.intellectualcrafters.plot.commands.plugin
-
 
-
Setup - Class in com.intellectualcrafters.plot.commands -
-
-
Created 2014-09-26 for PlotSquared
-
-
Setup() - - Constructor for class com.intellectualcrafters.plot.commands.Setup
-
 
-
setup(File) - - Static method in class com.intellectualcrafters.plot.util.Logger
-
 
-
setupMap - - Static variable in class com.intellectualcrafters.plot.commands.Setup
-
 
-
setupTranslations() - - Static method in enum com.intellectualcrafters.plot.config.C
-
 
-
setUUIDSaver(UUIDSaver) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Set the uuid saver
-
-
setValue(Map<String, - Tag>) - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Return a new compound tag with the given values.
-
-
setValue(List<Tag>) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Create a new list tag with this tag's name and type.
-
-
setValue(String) - - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
-
 
-
setWall(World, - PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
setWall(World, - PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
setWallFilling(World, - PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
setWallFilling(World, - PlotWorld, PlotId, PlotBlock) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
ShortTag - Class in com.intellectualcrafters.jnbt -
-
-
The TAG_Short tag.
-
-
ShortTag(short) - Constructor - for class com.intellectualcrafters.jnbt.ShortTag
-
-
Creates the tag with an empty name.
-
-
ShortTag(String, - short) - Constructor for class com.intellectualcrafters.jnbt.ShortTag
-
-
Creates the tag.
-
-
similar(Object) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Determine if two JSONArrays are similar.
-
-
similar(Object) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Determine if two JSONObjects are similar.
-
-
skipPast(String) - - Method in class com.intellectualcrafters.json.XMLTokener -
-
-
Skip characters until past the requested string.
-
-
skipTo(char) - Method in class - com.intellectualcrafters.json.JSONTokener
-
-
Skip characters until the next character is the requested character.
-
-
SLASH - Static variable in - class com.intellectualcrafters.json.XML
-
-
The Character '/'.
-
-
sLetterPair(String) - - Static method in class com.intellectualcrafters.plot.util.StringComparison
-
-
Get an array containing letter pairs
-
-
SPAWN_BREEDING - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SPAWN_BREEDING_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SPAWN_CUSTOM - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SPAWN_CUSTOM_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SPAWN_EGGS - Variable in - class com.intellectualcrafters.plot.object.PlotWorld -
-
 
-
SPAWN_EGGS_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
SQLField - - Class in com.intellectualcrafters.plot.database.sqlobjects -
-
-
Created by Citymonstret on 2014-10-28.
-
-
SQLField(SQLType, - Object) - Constructor for class com.intellectualcrafters.plot.database.sqlobjects.SQLField
-
 
-
SQLite - Class in com.intellectualcrafters.plot.database -
-
-
Connects to and uses a SQLite database
-
-
SQLite(Plugin, - String) - Constructor for class com.intellectualcrafters.plot.database.SQLite
-
-
Creates a new SQLite instance
-
-
SQLITE_DB - Static variable - in class com.intellectualcrafters.plot.config.Settings.DB -
-
-
SQLite Database name
-
-
SQLManager - Class in com.intellectualcrafters.plot.database -
-
 
-
SQLManager(Connection, - String) - Constructor for class com.intellectualcrafters.plot.database.SQLManager
-
-
Constructor
-
-
SQLTable - - Class in com.intellectualcrafters.plot.database.sqlobjects -
-
-
Created by Citymonstret on 2014-10-28.
-
-
SQLTable(String, - String, SQLField...) - Constructor for class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
-
 
-
SQLType - Enum - in com.intellectualcrafters.plot.database.sqlobjects -
-
-
Created by Citymonstret on 2014-10-28.
-
-
square(int) - Static method - in class com.intellectualcrafters.plot.util.PlotHelper -
-
 
-
start() - - Method in class com.intellectualcrafters.plot.util.Metrics -
-
-
Start measuring statistics.
-
-
startPlotMerge(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
startPlotMerge(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
startPlotUnlink(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
startPlotUnlink(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
startRunnable(JavaPlugin) - - Static method in class com.intellectualcrafters.plot.listeners.PlotPlusListener
-
 
-
storage - Static - variable in class com.intellectualcrafters.plot.PlotMain
-
-
Contains storage options
-
-
storage_ver - - Static variable in class com.intellectualcrafters.plot.PlotMain -
-
-
Storage version
-
-
storageFile - - Static variable in class com.intellectualcrafters.plot.PlotMain -
-
-
storage.properties
-
-
str_flags - - Variable in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
STRING - - Static variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
StringComparison - Class in - com.intellectualcrafters.plot.util
-
-
String comparison library
-
-
StringComparison(String, - Object[]) - Constructor for class com.intellectualcrafters.plot.util.StringComparison
-
-
Constructor
-
-
STRINGLIST - - Static variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
StringTag - Class in com.intellectualcrafters.jnbt -
-
-
The TAG_String tag.
-
-
StringTag(String) - - Constructor for class com.intellectualcrafters.jnbt.StringTag -
-
-
Creates the tag with an empty name.
-
-
StringTag(String, - String) - Constructor for class com.intellectualcrafters.jnbt.StringTag
-
-
Creates the tag.
-
-
stringToValue(String) - - Static method in class com.intellectualcrafters.json.JSONObject -
-
-
Try to convert a string into a number, boolean, or null.
-
-
stringToValue(String) - - Static method in class com.intellectualcrafters.json.XML -
-
-
Try to convert a string into a number, boolean, or null.
-
-
StringWrapper - Class in com.intellectualcrafters.plot.object -
-
 
-
StringWrapper(String) - - Constructor for class com.intellectualcrafters.plot.object.StringWrapper
-
-
Constructor
-
-
SubCommand - Class in com.intellectualcrafters.plot.commands -
-
-
SubCommand class
-
-
SubCommand(String, - String, String, String, String, SubCommand.CommandCategory, boolean) - Constructor for class - com.intellectualcrafters.plot.commands.SubCommand -
-
 
-
SubCommand(Command, - String, String, SubCommand.CommandCategory, boolean) - Constructor for class - com.intellectualcrafters.plot.commands.SubCommand -
-
 
-
SubCommand.CommandCategory - - Enum in com.intellectualcrafters.plot.commands -
-
 
-
subCommands - Static - variable in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
Swap - Class in com.intellectualcrafters.plot.commands -
-
-
Created by Citymonstret on 2014-08-01.
-
-
Swap() - - Constructor for class com.intellectualcrafters.plot.commands.Swap
-
 
-
swap(World, - PlotId, PlotId) - Static method in class com.intellectualcrafters.plot.object.PlotSelection
-
 
-
swedishSwedish - - Static variable in class com.intellectualsites.translation.TranslationLanguage
-
 
-
syntaxError(String) - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Make a JSONException to signal a syntax error.
-
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-2.html b/PlotSquared/doc/index-files/index-2.html deleted file mode 100644 index 72649e235..000000000 --- a/PlotSquared/doc/index-files/index-2.html +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - B-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

B

-
-
back() - - Method in class com.intellectualcrafters.json.JSONTokener -
-
-
Back up one character.
-
-
Ban - Class in com.intellectualcrafters.plot.commands -
-
-
Created 2014-11-09 for PlotSquared
-
-
Ban() - - Constructor for class com.intellectualcrafters.plot.commands.Ban
-
 
-
BANG - Static - variable in class com.intellectualcrafters.json.XML -
-
-
The Character '!'.
-
-
barAPI - - Static variable in class com.intellectualcrafters.plot.PlotMain
-
-
BarAPI object
-
-
BIOME - Static - variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
BLOCK - Static - variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
blockChange(Block, - Cancellable) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
BlockCreate(BlockPlaceEvent) - - Method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
BlockDestroy(BlockBreakEvent) - - Static method in class com.intellectualcrafters.plot.listeners.PlayerEvents
-
 
-
blockedcmds - - Variable in class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
BLOCKLIST - - Static variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
BLOCKS - Static variable - in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
BlockWrapper - - Class in com.intellectualcrafters.plot.object -
-
-
Wrapper class for blocks, using - pure data rather than the object. -
-
-
BlockWrapper(int, - int, int, short, byte) - Constructor for class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Constructor
-
-
BlockWrapper(Block) - - Constructor for class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Alternative Constructor - Uses block data, rather than typed data -
-
-
BOOLEAN - Static - variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
booleanFlag(Plot, - String) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
booleanFlags - - Static variable in class com.intellectualcrafters.plot.PlotMain
-
-
Boolean Flags (material)
-
-
broadcast() - Method in - class com.intellectualcrafters.plot.object.Title -
-
-
Broadcast the title to all players
-
-
Broadcast(C) - - Static method in class com.intellectualcrafters.plot.PlotMain
-
-
Broadcast publicly
-
-
BroadcastWithPerms(C) - - Static method in class com.intellectualcrafters.plot.PlotMain
-
-
Broadcast a message to all admins
-
-
build() - - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder
-
-
Build an unnamed compound tag with this builder's entries.
-
-
build(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTagBuilder
-
-
Build a new compound tag with this builder's entries.
-
-
build() - Method in class - com.intellectualcrafters.jnbt.ListTagBuilder
-
-
Build an unnamed list tag with this builder's entries.
-
-
build(String) - - Method in class com.intellectualcrafters.jnbt.ListTagBuilder
-
-
Build a new list tag with this builder's entries.
-
-
build() - Method in - class com.intellectualcrafters.plot.object.InfoInventory
-
 
-
BukkitTranslation - Class in com.intellectualsites.translation.bukkit -
-
 
-
BukkitTranslation() - - Constructor for class com.intellectualsites.translation.bukkit.BukkitTranslation
-
 
-
ByteArrayTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Byte_Array tag.
-
-
ByteArrayTag(byte[]) - - Constructor for class com.intellectualcrafters.jnbt.ByteArrayTag
-
-
Creates the tag with an empty name.
-
-
ByteArrayTag(String, - byte[]) - Constructor for class com.intellectualcrafters.jnbt.ByteArrayTag
-
-
Creates the tag.
-
-
ByteTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Byte tag.
-
-
ByteTag(byte) - - Constructor for class com.intellectualcrafters.jnbt.ByteTag -
-
-
Creates the tag with an empty name.
-
-
ByteTag(String, - byte) - Constructor for class com.intellectualcrafters.jnbt.ByteTag -
-
-
Creates the tag.
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-20.html b/PlotSquared/doc/index-files/index-20.html deleted file mode 100644 index ae2faf84c..000000000 --- a/PlotSquared/doc/index-files/index-20.html +++ /dev/null @@ -1,877 +0,0 @@ - - - - - - T-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

T

-
-
T - Static variable in - class com.intellectualcrafters.plot.util.Lag
-
-
Ticks
-
-
t1() - Method in class Test1 -
-
 
-
t2() - Method in class Test1 -
-
 
-
t3() - Method in class Test1 -
-
 
-
t4() - Method in class Test1 -
-
 
-
t5() - Method in class Test1 -
-
 
-
t6() - Method in class Test1 -
-
 
-
t7() - Method in class Test1 -
-
 
-
t8() - Method in class Test1 -
-
 
-
t9() - Method in class Test1 -
-
 
-
Tag - Class in com.intellectualcrafters.jnbt -
-
-
Represents a NBT tag.
-
-
TC - Static variable in - class com.intellectualcrafters.plot.util.Lag
-
-
Tick count
-
-
teleportPlayer(Player, - Location, Plot) - Static method in class com.intellectualcrafters.plot.PlotMain
-
-
..
-
-
Test1 - Class in <Unnamed>
-
 
-
Test1() - Constructor for class Test1
-
 
-
test1_Square() - Method in class Test1
-
 
-
test2_InitMain() - Method in class Test1
-
 
-
test3_InitPlotId() - Method in class Test1
-
 
-
test4_InitPlot() - Method in class Test1
-
 
-
test5_InitDBFunc() - Method in class Test1
-
 
-
test6_Plots() - Method in class Test1
-
 
-
test7_OnEnable() - Method in class Test1
-
 
-
test8_AddPlotWorld() - Method in class - Test1
-
 
-
test9_CanSetFast() - Method in class Test1
-
 
-
testValidity(Object) - - Static method in class com.intellectualcrafters.json.JSONObject -
-
-
Throw an exception if the object is a NaN or infinite number.
-
-
textures(Player) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
tier - - Variable in class com.intellectualcrafters.plot.object.PlotComment
-
 
-
Title - Class in com.intellectualcrafters.plot.object -
-
-
Minecraft 1.8 Title
-
-
Title(String) - - Constructor for class com.intellectualcrafters.plot.object.Title
-
-
Create a new 1.8 title
-
-
Title(String, - String) - Constructor for class com.intellectualcrafters.plot.object.Title -
-
-
Create a new 1.8 title
-
-
Title(String, - String, int, int, int) - Constructor for class com.intellectualcrafters.plot.object.Title -
-
-
Create a new 1.8 title
-
-
TITLES - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
 
-
toBlock(World) - - Method in class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Get a block based on the block wrapper
-
-
toBytes(UUID) - - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
-
 
-
toJSONArray(String) - - Static method in class com.intellectualcrafters.json.CDL -
-
-
Produce a JSONArray of JSONObjects from a comma delimited text string, - using the first row as a source of names. -
-
-
toJSONArray(JSONTokener) - - Static method in class com.intellectualcrafters.json.CDL -
-
-
Produce a JSONArray of JSONObjects from a comma delimited text string, - using the first row as a source of names. -
-
-
toJSONArray(JSONArray, - String) - Static method in class com.intellectualcrafters.json.CDL
-
-
Produce a JSONArray of JSONObjects from a comma delimited text string - using a supplied JSONArray as the source of element names. -
-
-
toJSONArray(JSONArray, - JSONTokener) - Static method in class com.intellectualcrafters.json.CDL
-
-
Produce a JSONArray of JSONObjects from a comma delimited text string - using a supplied JSONArray as the source of element names. -
-
-
toJSONArray(String) - - Static method in class com.intellectualcrafters.json.JSONML -
-
-
Convert a well-formed (but not necessarily valid) XML string into a - JSONArray using the JsonML transform. -
-
-
toJSONArray(XMLTokener) - - Static method in class com.intellectualcrafters.json.JSONML -
-
-
Convert a well-formed (but not necessarily valid) XML string into a - JSONArray using the JsonML transform. -
-
-
toJSONArray(JSONArray) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Produce a JSONArray containing the values of the members of this - JSONObject. -
-
-
toJSONObject(String) - - Static method in class com.intellectualcrafters.json.Cookie -
-
-
Convert a cookie specification string into a JSONObject.
-
-
toJSONObject(String) - - Static method in class com.intellectualcrafters.json.CookieList -
-
-
Convert a cookie list into a JSONObject.
-
-
toJSONObject(String) - - Static method in class com.intellectualcrafters.json.HTTP -
-
-
Convert an HTTP header string into a JSONObject.
-
-
toJSONObject(JSONArray) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Produce a JSONObject by combining a JSONArray of names with the values of - this JSONArray. -
-
-
toJSONObject(XMLTokener) - - Static method in class com.intellectualcrafters.json.JSONML -
-
-
Convert a well-formed (but not necessarily valid) XML string into a - JSONObject using the JsonML transform. -
-
-
toJSONObject(String) - - Static method in class com.intellectualcrafters.json.JSONML -
-
-
Convert a well-formed (but not necessarily valid) XML string into a - JSONObject using the JsonML transform. -
-
-
toJSONObject(Properties) - - Static method in class com.intellectualcrafters.json.Property -
-
-
Converts a property file object into a JSONObject.
-
-
toJSONObject(String) - - Static method in class com.intellectualcrafters.json.XML -
-
-
Convert a well-formed (but not necessarily valid) XML string into a - JSONObject. -
-
-
toJSONString() - Method in - interface com.intellectualcrafters.json.JSONString
-
-
The toJSONString method allows a class to produce its own - JSON - serialization. -
-
-
TOP_BLOCK - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Top blocks
-
-
TOP_BLOCK_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default top blocks: {"2"}
-
-
toProperties(JSONObject) - - Static method in class com.intellectualcrafters.json.Property -
-
-
Converts the JSONObject into a property file object.
-
-
toString() - - Method in class com.intellectualcrafters.jnbt.ByteArrayTag -
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.ByteTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.CompoundTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.DoubleTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.EndTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.FloatTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.IntArrayTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.IntTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.ListTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.LongTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.ShortTag
-
 
-
toString() - - Method in class com.intellectualcrafters.jnbt.StringTag
-
 
-
toString(JSONArray) - - Static method in class com.intellectualcrafters.json.CDL -
-
-
Produce a comma delimited text from a JSONArray of JSONObjects.
-
-
toString(JSONArray, - JSONArray) - Static method in class com.intellectualcrafters.json.CDL
-
-
Produce a comma delimited text from a JSONArray of JSONObjects using - a provided list of names. -
-
-
toString(JSONObject) - - Static method in class com.intellectualcrafters.json.Cookie -
-
-
Convert a JSONObject into a cookie specification string.
-
-
toString(JSONObject) - - Static method in class com.intellectualcrafters.json.CookieList -
-
-
Convert a JSONObject into a cookie list.
-
-
toString(JSONObject) - - Static method in class com.intellectualcrafters.json.HTTP -
-
-
Convert a JSONObject into an HTTP header.
-
-
toString() - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Make a JSON text of this JSONArray.
-
-
toString(int) - Method in class - com.intellectualcrafters.json.JSONArray
-
-
Make a prettyprinted JSON text of this JSONArray.
-
-
toString(JSONArray) - - Static method in class com.intellectualcrafters.json.JSONML -
-
-
Reverse the JSONML transformation, making an XML text from a JSONArray.
-
-
toString(JSONObject) - - Static method in class com.intellectualcrafters.json.JSONML -
-
-
Reverse the JSONML transformation, making an XML text from a JSONObject.
-
-
toString() - - Method in class com.intellectualcrafters.json.JSONObject
-
-
Make a JSON text of this JSONObject.
-
-
toString(int) - Method in class - com.intellectualcrafters.json.JSONObject
-
-
Make a prettyprinted JSON text of this JSONObject.
-
-
toString() - - Method in class com.intellectualcrafters.json.JSONStringer -
-
-
Return the JSON text.
-
-
toString() - - Method in class com.intellectualcrafters.json.JSONTokener
-
-
Make a printable string of this JSONTokener.
-
-
toString() - Method - in class com.intellectualcrafters.json.Kim
-
-
Produce a UTF-16 String from this kim.
-
-
toString(Object) - Static - method in class com.intellectualcrafters.json.XML
-
-
Convert a JSONObject into a well-formed, element-normal XML string.
-
-
toString(Object, - String) - Static method in class com.intellectualcrafters.json.XML
-
-
Convert a JSONObject into a well-formed, element-normal XML string.
-
-
toString() - - Method in enum com.intellectualcrafters.plot.commands.SubCommand.CommandCategory
-
 
-
toString() - - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
-
 
-
toString() - - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
-
 
-
toString() - Method in - class com.intellectualcrafters.plot.flag.AbstractFlag -
-
 
-
toString() - - Method in class com.intellectualcrafters.plot.flag.Flag -
-
 
-
toString() - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
-
 
-
toString() - - Method in class com.intellectualcrafters.plot.object.PlotId -
-
 
-
toString() - - Method in class com.intellectualcrafters.plot.object.StringWrapper
-
-
Get the string value
-
-
toString() - - Method in enum com.intellectualcrafters.plot.util.Logger.LogLevel
-
 
-
toString() - - Method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
-
 
-
toString() - - Method in class com.intellectualcrafters.plot.uuid.UUIDSet -
-
 
-
toString() - Method - in class com.intellectualsites.translation.TranslationLanguage -
-
 
-
TP - Class in com.intellectualcrafters.plot.commands -
-
 
-
TP() - Constructor - for class com.intellectualcrafters.plot.commands.TP -
-
 
-
transformEnum(Object[]) - - Static method in class com.intellectualsites.translation.TranslationManager
-
 
-
translated() - - Method in enum com.intellectualcrafters.plot.config.C -
-
 
-
Translation - Annotation - Type in com.intellectualsites.translation -
-
-
Translation annotation
-
-
TranslationAsset - Class in com.intellectualsites.translation
-
-
Asset
-
-
TranslationAsset(TranslationObject, - String, TranslationLanguage) - Constructor for class com.intellectualsites.translation.TranslationAsset
-
 
-
TranslationFile - Class in com.intellectualsites.translation
-
-
Abstract TranslationFile
-
-
TranslationFile() - - Constructor for class com.intellectualsites.translation.TranslationFile
-
 
-
TranslationLanguage - Class in - com.intellectualsites.translation
-
 
-
TranslationLanguage(String, - String, String) - Constructor for class com.intellectualsites.translation.TranslationLanguage
-
 
-
TranslationManager - Class in - com.intellectualsites.translation
-
-
Translation Manager Main class
-
-
TranslationManager() - - Constructor for class com.intellectualsites.translation.TranslationManager
-
-
Constructor
-
-
TranslationManager(TranslationObject[]) - - Constructor for class com.intellectualsites.translation.TranslationManager
-
-
Constructor
-
-
TranslationObject - Class in - com.intellectualsites.translation
-
 
-
TranslationObject(String, - String, String, String) - Constructor for class com.intellectualsites.translation.TranslationObject
-
 
-
TranslationPlugin - - Class in com.intellectualsites.translation.bukkit -
-
 
-
TranslationPlugin() - - Constructor for class com.intellectualsites.translation.bukkit.TranslationPlugin
-
 
-
translations() - - Method in class com.intellectualsites.translation.TranslationManager
-
-
Get the translation objects
-
-
Trusted - Class in com.intellectualcrafters.plot.commands -
-
 
-
Trusted() - - Constructor for class com.intellectualcrafters.plot.commands.Trusted
-
 
-
trusted - - Variable in class com.intellectualcrafters.plot.object.Plot -
-
-
List of trusted users (with plot permissions)
-
-
TYPE_BYTE - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_BYTE_ARRAY - Static - variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_COMPOUND - Static - variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_DOUBLE - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_END - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_FLOAT - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_INT - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_INT_ARRAY - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_LIST - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_LONG - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_SHORT - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
TYPE_STRING - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-21.html b/PlotSquared/doc/index-files/index-21.html deleted file mode 100644 index 9797d7091..000000000 --- a/PlotSquared/doc/index-files/index-21.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - U-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

U

-
-
Unban - Class in - com.intellectualcrafters.plot.commands -
-
-
Created 2014-11-09 for PlotSquared
-
-
Unban() - Constructor for - class com.intellectualcrafters.plot.commands.Unban -
-
 
-
unescape(String) - - Static method in class com.intellectualcrafters.json.Cookie -
-
-
Convert %hh sequences to single characters, and - convert plus to space. -
-
-
Unlink - Class in - com.intellectualcrafters.plot.commands -
-
-
Created 2014-08-01 for PlotSquared
-
-
Unlink() - Constructor - for class com.intellectualcrafters.plot.commands.Unlink
-
 
-
update(Player) - - Static method in class com.intellectualcrafters.plot.util.SetBlockFast
-
 
-
updatePlot(Plot) - - Static method in class com.intellectualcrafters.plot.PlotMain
-
-
Replace the plot object with an updated version
-
-
updateSQL(String) - - Method in class com.intellectualcrafters.plot.database.Database
-
-
Executes an Update SQL Query
- See Statement.executeUpdate(String)
- If the connection is closed, it will be opened -
-
-
updateSQL(String) - - Method in class com.intellectualcrafters.plot.database.MySQL
-
 
-
updateSQL(String) - - Method in class com.intellectualcrafters.plot.database.SQLite
-
 
-
usage - Variable in - class com.intellectualcrafters.plot.commands.SubCommand
-
-
Command usage
-
-
USE_ECONOMY - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
USE_ECONOMY_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
USE_MONGO - Static - variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MongoDB enabled?
-
-
USE_MYSQL - Static - variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL Enabled?
-
-
USE_SQLITE - - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
SQLite enabled?
-
-
useEconomy - Static variable - in class com.intellectualcrafters.plot.PlotMain
-
-
Use Economy?
-
-
USER - - Static variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL User
-
-
uuidExists(UUID) - - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
-
Check if a uuid is cached
-
-
UUIDFetcher - Class - in - com.intellectualcrafters.plot.uuid -
-
-
UUID Fetcher - From Bukkit -
-
-
UUIDFetcher(List<String>, - boolean) - Constructor for class com.intellectualcrafters.plot.uuid.UUIDFetcher
-
 
-
UUIDFetcher(List<String>) - - Constructor for class com.intellectualcrafters.plot.uuid.UUIDFetcher
-
 
-
UUIDHandler - Class - in - com.intellectualcrafters.plot.util -
-
-
This class can be used to efficiently translate UUIDs and names back and - forth. -
-
-
UUIDHandler() - - Constructor for class com.intellectualcrafters.plot.util.UUIDHandler
-
 
-
UUIDSaver - - Interface in com.intellectualcrafters.plot.uuid -
-
 
-
UUIDSet - Class in com.intellectualcrafters.plot.uuid -
-
 
-
UUIDSet(String, - UUID) - Constructor for class com.intellectualcrafters.plot.uuid.UUIDSet
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-22.html b/PlotSquared/doc/index-files/index-22.html deleted file mode 100644 index c2140c378..000000000 --- a/PlotSquared/doc/index-files/index-22.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - V-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

V

-
-
validateValue(String) - - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
-
 
-
validValue(Object) - - Method in class com.intellectualcrafters.plot.flag.FlagValue
-
 
-
value(boolean) - - Method in class com.intellectualcrafters.json.JSONWriter -
-
-
Append either the value true or the value false - . -
-
-
value(double) - Method - in class com.intellectualcrafters.json.JSONWriter
-
-
Append a double value.
-
-
value(long) - - Method in class com.intellectualcrafters.json.JSONWriter -
-
-
Append a long value.
-
-
value(Object) - - Method in class com.intellectualcrafters.json.JSONWriter -
-
-
Append an object value.
-
-
value - Variable in - class com.intellectualcrafters.plot.object.StringWrapper
-
 
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.commands.Command
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.commands.SubCommand.CommandCategory
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.config.C
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.object.PlotHomePosition
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.util.Logger.LogLevel
-
-
Returns the enum constant of this type with the specified name.
-
-
valueOf(String) - - Static method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
-
-
Returns the enum constant of this type with the specified name.
-
-
values() - - Static method in enum com.intellectualcrafters.plot.commands.Command
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values - - Static variable in class com.intellectualcrafters.plot.commands.Merge
-
 
-
values - - Static variable in class com.intellectualcrafters.plot.commands.Set
-
 
-
values() - - Static method in enum com.intellectualcrafters.plot.commands.SubCommand.CommandCategory
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values() - - Static method in enum com.intellectualcrafters.plot.config.C
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values() - - Static method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values() - - Static method in enum com.intellectualcrafters.plot.object.PlotHomePosition
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values() - Static - method in enum com.intellectualcrafters.plot.util.Logger.LogLevel
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values() - - Static method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
-
-
Returns an array containing the constants of this enum type, in - the order they are declared. -
-
-
values() - - Static method in class com.intellectualsites.translation.TranslationLanguage
-
 
-
valueToString(Object) - - Static method in class com.intellectualcrafters.json.JSONObject
-
-
Make a JSON text of an Object value.
-
-
version - Static - variable in class com.intellectualcrafters.plot.commands.plugin
-
 
-
Visit - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Visit() - Constructor for - class com.intellectualcrafters.plot.commands.Visit -
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-23.html b/PlotSquared/doc/index-files/index-23.html deleted file mode 100644 index c6ec8db4c..000000000 --- a/PlotSquared/doc/index-files/index-23.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - W-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

W

-
-
WALL_BLOCK - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Wall block
-
-
WALL_BLOCK_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default wall block: 44
-
-
WALL_FILLING - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Wall filling
-
-
WALL_FILLING_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default wall filling: 1
-
-
WALL_HEIGHT - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Wall height
-
-
WALL_HEIGHT_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
Default Wall Height: 64
-
-
wasAdded() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
-
If a user was added
-
-
wasAdded() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
-
If a player was added
-
-
wasAdded() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
-
If a player was added
-
-
wasAuto() - - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
 
-
wLetterPair(String) - - Static method in class com.intellectualcrafters.plot.util.StringComparison
-
-
Create an ArrayList containing pairs of letters
-
-
world - - Variable in class com.intellectualcrafters.plot.object.Plot
-
-
plot world
-
-
worldEdit - - Static variable in class com.intellectualcrafters.plot.PlotMain
-
-
WorldEdit object
-
-
WorldEditListener - Class in com.intellectualcrafters.plot.listeners -
-
 
-
WorldEditListener() - - Constructor for class com.intellectualcrafters.plot.listeners.WorldEditListener
-
 
-
WorldEditUtils - Class in - com.intellectualcrafters.jnbt
-
 
-
WorldEditUtils() - - Constructor for class com.intellectualcrafters.jnbt.WorldEditUtils
-
 
-
WorldGenerator - - Class in com.intellectualcrafters.plot.generator -
-
 
-
WorldGenerator(String) - - Constructor for class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Initialize variables, and create plotworld object used in calculations
-
-
WORLDGUARD - Static - variable in class com.intellectualcrafters.plot.config.Settings
-
-
WorldGuard region on claimed plots
-
-
worldGuard - Static variable - in class com.intellectualcrafters.plot.PlotMain
-
-
World Guard Object
-
-
WorldGuardListener - Class in com.intellectualcrafters.plot.listeners -
-
-
Created 2014-09-24 for PlotSquared
-
-
WorldGuardListener(PlotMain) - - Constructor for class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
worldGuardListener - - Static variable in class com.intellectualcrafters.plot.PlotMain
-
-
World Guard Listener
-
-
worldname - Variable - in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
wrap(Object) - - Static method in class com.intellectualcrafters.json.JSONObject
-
-
Wrap an object, if necessary.
-
-
write(Writer) - - Method in class com.intellectualcrafters.json.JSONArray -
-
-
Write the contents of the JSONArray as JSON text to a writer.
-
-
write(Writer) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Write the contents of the JSONObject as JSON text to a writer.
-
-
write() - - Static method in class com.intellectualcrafters.plot.util.Logger
-
 
-
writer - - Variable in class com.intellectualcrafters.json.JSONWriter -
-
-
The writer that will receive the output.
-
-
writeTag(Tag) - - Method in class com.intellectualcrafters.jnbt.NBTOutputStream
-
-
Writes a tag.
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-24.html b/PlotSquared/doc/index-files/index-24.html deleted file mode 100644 index 83e565517..000000000 --- a/PlotSquared/doc/index-files/index-24.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - X-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

X

-
-
x - - Variable in class com.intellectualcrafters.plot.object.BlockWrapper
-
-
X Coordinate
-
-
x - Variable - in class com.intellectualcrafters.plot.object.PlotId -
-
-
x value
-
-
XML - Class in com.intellectualcrafters.json
-
-
This provides static methods to convert an XML text into a JSONObject, - and to covert a JSONObject into an XML text. -
-
-
XML() - - Constructor for class com.intellectualcrafters.json.XML -
-
 
-
XMLTokener - Class in com.intellectualcrafters.json
-
-
The XMLTokener extends the JSONTokener to provide additional methods - for the parsing of XML texts. -
-
-
XMLTokener(String) - - Constructor for class com.intellectualcrafters.json.XMLTokener
-
-
Construct an XMLTokener from a string.
-
-
xorShift64(long) - - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
 
-
xorShift64(long) - - Method in class com.intellectualcrafters.plot.generator.XPopulator
-
 
-
xorShift64(long) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
XPopulator - - Class in com.intellectualcrafters.plot.generator -
-
 
-
XPopulator(PlotWorld) - - Constructor for class com.intellectualcrafters.plot.generator.XPopulator
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-25.html b/PlotSquared/doc/index-files/index-25.html deleted file mode 100644 index 06ac1f362..000000000 --- a/PlotSquared/doc/index-files/index-25.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - Y-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

Y

-
-
y - - Variable in class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Y Coordinate
-
-
y - Variable - in class com.intellectualcrafters.plot.object.PlotId -
-
-
y value
-
-
YamlTranslationFile - - Class in com.intellectualsites.translation -
-
-
The YAML implementation of TranslationFile - Relies heavily on SnakeYAML -
-
-
YamlTranslationFile(File, - TranslationLanguage, String, TranslationManager) - Constructor for class - com.intellectualsites.translation.YamlTranslationFile -
-
-
Constructor
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-26.html b/PlotSquared/doc/index-files/index-26.html deleted file mode 100644 index 4ebd31440..000000000 --- a/PlotSquared/doc/index-files/index-26.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - Z-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

Z

-
-
z - - Variable in class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Z Coordinate
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-3.html b/PlotSquared/doc/index-files/index-3.html deleted file mode 100644 index b43125d3e..000000000 --- a/PlotSquared/doc/index-files/index-3.html +++ /dev/null @@ -1,975 +0,0 @@ - - - - - - C-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

C

-
-
C - Enum in com.intellectualcrafters.plot.config -
-
-
Captions class.
-
-
calculateVelocity(Player, - Player) - Method in class com.intellectualcrafters.plot.listeners.ForceFieldListener
-
 
-
call(Object...) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
-
-
call static method
-
-
call(Object...) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod.RefExecutor
-
-
apply method for selected object
-
-
call() - - Method in class com.intellectualcrafters.plot.uuid.NameFetcher -
-
 
-
call() - - Method in class com.intellectualcrafters.plot.uuid.UUIDFetcher -
-
 
-
canSetFast - Static variable - in class com.intellectualcrafters.plot.util.PlotHelper -
-
 
-
canSpawn(World, - int, int) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Allow spawning everywhere
-
-
category - Variable in - class com.intellectualcrafters.plot.commands.SubCommand -
-
 
-
CDL - Class in com.intellectualcrafters.json -
-
-
This provides static methods to convert comma delimited text into a - JSONArray, and to covert a JSONArray into comma delimited text. -
-
-
CDL() - Constructor for - class com.intellectualcrafters.json.CDL
-
 
-
changeOwner(Player, - UUID, World, Plot) - Method in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
characterAt(int) - Method in class - com.intellectualcrafters.json.Kim
-
-
Returns the character at the specified index.
-
-
characterSize(int) - Static - method in class com.intellectualcrafters.json.Kim
-
-
Returns the number of bytes needed to contain the character in Kim - format. -
-
-
CHARSET - - Static variable in class com.intellectualcrafters.jnbt.NBTConstants -
-
 
-
chatColor(ChatColor) - - Static method in class com.intellectualcrafters.plot.util.ConsoleColors
-
 
-
checkConnection() - - Method in class com.intellectualcrafters.plot.database.Database
-
-
Checks if a connection is open with the database
-
-
checkConnection() - - Method in class com.intellectualcrafters.plot.database.MySQL
-
 
-
checkConnection() - - Method in class com.intellectualcrafters.plot.database.SQLite
-
 
-
checkForExpiredPlots() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Check for expired plots
-
-
Claim - Class in com.intellectualcrafters.plot.commands -
-
 
-
Claim() - - Constructor for class com.intellectualcrafters.plot.commands.Claim
-
 
-
CLAIMED_WALL_BLOCK - - Variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
 
-
CLAIMED_WALL_BLOCK_DEFAULT - - Static variable in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
 
-
claimPlot(Player, - Plot, boolean, boolean) - Static method in class com.intellectualcrafters.plot.commands.Claim
-
 
-
claimPlot(Player, - Plot, boolean, String, boolean) - Static method in class com.intellectualcrafters.plot.commands.Claim
-
 
-
claimPlot(Player, - Plot, boolean) - Static method in class com.intellectualcrafters.plot.commands.DebugClaimTest
-
 
-
claimPlot(Player, - Plot, boolean, String) - Static method in class com.intellectualcrafters.plot.commands.DebugClaimTest
-
 
-
Clear - Class in com.intellectualcrafters.plot.commands -
-
 
-
Clear() - - Constructor for class com.intellectualcrafters.plot.commands.Clear
-
 
-
clear(Player) - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Clear a plot
-
-
clear(World, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
clear(Player, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Clear a plot
-
-
clearAllEntities(World, - Plot, boolean) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
clearPlot(World, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Clearing the plot needs to only consider removing the blocks - This - implementation has used the SetCuboid function, as it is fast, and uses - NMS code - It also makes use of the fact that deleting chunks is a lot - faster than block updates This code is very messy, but you don't need to - do something quite as complex unless you happen to have 512x512 sized - plots -
-
-
clearPlot(World, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
clearTitle(Player) - - Method in class com.intellectualcrafters.plot.object.Title -
-
-
Clear the title
-
-
Clipboard - Class in com.intellectualcrafters.plot.commands -
-
 
-
Clipboard() - - Constructor for class com.intellectualcrafters.plot.commands.Clipboard
-
 
-
clone() - Method - in class com.intellectualcrafters.plot.object.Plot
-
-
Get a clone of the plot
-
-
close() - - Method in class com.intellectualcrafters.jnbt.NBTInputStream -
-
 
-
close() - - Method in class com.intellectualcrafters.jnbt.NBTOutputStream -
-
 
-
closeConnection() - - Method in class com.intellectualcrafters.plot.database.Database
-
-
Closes the connection with the database
-
-
closeConnection() - - Method in class com.intellectualcrafters.plot.database.MySQL
-
 
-
closeConnection() - - Method in class com.intellectualcrafters.plot.database.SQLite
-
 
-
cmd - - Variable in class com.intellectualcrafters.plot.commands.SubCommand
-
-
Command
-
-
com.intellectualcrafters.jnbt - package - com.intellectualcrafters.jnbt -
-
 
-
com.intellectualcrafters.json - package - com.intellectualcrafters.json -
-
 
-
com.intellectualcrafters.plot - package - com.intellectualcrafters.plot -
-
 
-
com.intellectualcrafters.plot.api - package - com.intellectualcrafters.plot.api -
-
 
-
com.intellectualcrafters.plot.commands - - package com.intellectualcrafters.plot.commands -
-
 
-
com.intellectualcrafters.plot.config - - package com.intellectualcrafters.plot.config -
-
 
-
com.intellectualcrafters.plot.database - - package com.intellectualcrafters.plot.database -
-
 
-
com.intellectualcrafters.plot.database.sqlobjects - - package com.intellectualcrafters.plot.database.sqlobjects -
-
 
-
com.intellectualcrafters.plot.events - - package com.intellectualcrafters.plot.events -
-
 
-
com.intellectualcrafters.plot.flag - - package com.intellectualcrafters.plot.flag -
-
 
-
- com.intellectualcrafters.plot.generator - - package com.intellectualcrafters.plot.generator -
-
 
-
- com.intellectualcrafters.plot.listeners - - package com.intellectualcrafters.plot.listeners -
-
 
-
com.intellectualcrafters.plot.object - - package com.intellectualcrafters.plot.object -
-
 
-
com.intellectualcrafters.plot.util - - package com.intellectualcrafters.plot.util -
-
 
-
com.intellectualcrafters.plot.uuid - - package com.intellectualcrafters.plot.uuid -
-
 
-
com.intellectualsites.translation - package - com.intellectualsites.translation -
-
 
-
- com.intellectualsites.translation.bukkit - - package com.intellectualsites.translation.bukkit -
-
 
-
Command - Enum in com.intellectualcrafters.plot.commands -
-
-
Created by Citymonstret on 2014-08-03.
-
-
CommandPermission - Class - in - com.intellectualcrafters.plot.commands -
-
-
Created by Citymonstret on 2014-08-03.
-
-
CommandPermission(String) - - Constructor for class com.intellectualcrafters.plot.commands.CommandPermission
-
 
-
Comment - Class in com.intellectualcrafters.plot.commands -
-
 
-
Comment() - - Constructor for class com.intellectualcrafters.plot.commands.Comment
-
 
-
comment - - Variable in class com.intellectualcrafters.plot.object.PlotComment
-
 
-
compare(String, - String) - Static method in class com.intellectualcrafters.plot.util.StringComparison
-
-
Compare two strings
-
-
compareDirections(Location, - Location) - Method in class com.intellectualcrafters.plot.util.RUtils -
-
 
-
CompoundTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Compound tag.
-
-
CompoundTag(Map<String, - Tag>) - Constructor for class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Creates the tag with an empty name.
-
-
CompoundTag(String, - Map<String, Tag>) - Constructor for class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Creates the tag.
-
-
CompoundTagBuilder - Class in com.intellectualcrafters.jnbt
-
-
Helps create compound tags.
-
-
config - Static - variable in class com.intellectualcrafters.plot.PlotMain
-
-
The main configuration file
-
-
configFile - - Static variable in class com.intellectualcrafters.plot.PlotMain -
-
-
settings.properties
-
-
configs() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Load configuration files
-
-
Configuration - Class in com.intellectualcrafters.plot.config -
-
-
Main Configuration Utility
-
-
Configuration() - - Constructor for class com.intellectualcrafters.plot.config.Configuration
-
 
-
Configuration.SettingValue - - Class in com.intellectualcrafters.plot.config -
-
-
Create your own SettingValue object to make the management of plotworld - configuration easier -
-
-
Configuration.SettingValue(String) - - Constructor for class com.intellectualcrafters.plot.config.Configuration.SettingValue
-
 
-
ConfigurationNode - Class - in com.intellectualcrafters.plot.config -
-
 
-
ConfigurationNode(String, - Object, String, Configuration.SettingValue, boolean) - Constructor for class - com.intellectualcrafters.plot.config.ConfigurationNode -
-
 
-
connection - - Static variable in class com.intellectualcrafters.plot.PlotMain -
-
-
MySQL Connection
-
-
ConsoleColors - Class in com.intellectualcrafters.plot.util
-
 
-
ConsoleColors() - - Constructor for class com.intellectualcrafters.plot.util.ConsoleColors
-
 
-
containsKey(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Returns whether this compound tag contains the given key.
-
-
convert(TranslationAsset) - - Static method in class com.intellectualsites.translation.bukkit.BukkitTranslation
-
-
Get the converted string
-
-
Cookie - Class in com.intellectualcrafters.json -
-
-
Convert a web browser cookie specification to a JSONObject and back.
-
-
Cookie() - - Constructor for class com.intellectualcrafters.json.Cookie -
-
 
-
CookieList - Class in com.intellectualcrafters.json -
-
-
Convert a web browser cookie list string to a JSONObject and back.
-
-
CookieList() - - Constructor for class com.intellectualcrafters.json.CookieList -
-
 
-
copy(byte[], - int) - Method in class com.intellectualcrafters.json.Kim -
-
-
Copy the contents of this kim to a byte array.
-
-
Copy - Class in com.intellectualcrafters.plot.commands -
-
 
-
Copy() - - Constructor for class com.intellectualcrafters.plot.commands.Copy
-
 
-
count - - Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
-
 
-
countsTowardsMax - Variable - in class com.intellectualcrafters.plot.object.Plot
-
 
-
create() - - Static method in class com.intellectualcrafters.jnbt.CompoundTagBuilder
-
-
Create a new builder instance.
-
-
create(Class<? - extends Tag>) - Static method in class com.intellectualcrafters.jnbt.ListTagBuilder -
-
-
Create a new builder instance.
-
-
create() - Method - in class com.intellectualcrafters.plot.database.sqlobjects.PlotTable
-
 
-
create() - Method - in class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
-
 
-
create(Object...) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
-
-
create new instance with constructor
-
-
CREATE_HELPERS - - Variable in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
CREATE_PLOT - - Variable in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
CREATE_PLOTS - Variable - in class com.intellectualcrafters.plot.database.SQLManager -
-
 
-
CREATE_SETTINGS - - Variable in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
createAllSettingsAndHelpers(ArrayList<Plot>) - - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Create all settings, and create default helpers, trusted + denied lists
-
-
createAllSettingsAndHelpers(ArrayList<Plot>) - - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
createAllSettingsAndHelpers(ArrayList<Plot>) - - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
createBuilder() - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Create a compound tag builder.
-
-
createConfiguration(PlotWorld) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
createGraph(String) - - Method in class com.intellectualcrafters.plot.util.Metrics -
-
-
Construct and create a Graph that can be used to separate specific - plotters to their own graphs on the metrics website. -
-
-
createId(int, - int) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
createPlot(Plot) - - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Create a plot
-
-
createPlot(Plot) - - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
-
Create a plot
-
-
createPlot(Plot) - - Method in class com.intellectualcrafters.plot.database.SQLManager
-
-
Create a plot
-
-
createPlot(Player, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
createPlots(ArrayList<Plot>) - - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Create a plot
-
-
createPlots(ArrayList<Plot>) - - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
createPlots(ArrayList<Plot>) - - Method in class com.intellectualcrafters.plot.database.SQLManager
-
-
Create a plot
-
-
createPlotSettings(int, - Plot) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Create plot settings
-
-
createPlotSettings(int, - Plot) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
-
Create plot settings
-
-
createPlotSettings(int, - Plot) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
-
Create plot settings
-
-
createRoadEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
PLOT MERGING
-
-
createRoadEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
createRoadSouth(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
createRoadSouth(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
createRoadSouthEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
createRoadSouthEast(PlotWorld, - Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
createTables(String, - boolean) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Create tables
-
-
createTables(String, - boolean) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
-
Create tables
-
-
createTables(String, - boolean) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
-
Create tables
-
-
createWith(T...) - - Static method in class com.intellectualcrafters.jnbt.ListTagBuilder -
-
-
Create a new builder instance.
-
-
CRLF - Static variable in - class com.intellectualcrafters.json.HTTP
-
-
Carriage return/line feed.
-
-
currentSelection - - Static variable in class com.intellectualcrafters.plot.object.PlotSelection
-
 
-
CUSTOM_API - Static variable - in class com.intellectualcrafters.plot.config.Settings -
-
-
Use the custom API
-
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-4.html b/PlotSquared/doc/index-files/index-4.html deleted file mode 100644 index 0a94bb364..000000000 --- a/PlotSquared/doc/index-files/index-4.html +++ /dev/null @@ -1,462 +0,0 @@ - - - - - - D-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

D

-
-
d() - Method in - enum com.intellectualcrafters.plot.config.C
-
-
Get the default string
-
-
data - Variable in - class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Block Data Value
-
-
data - - Variable in class com.intellectualcrafters.plot.object.PlotBlock
-
 
-
Database - Class - in com.intellectualcrafters.plot.commands -
-
-
Created 2014-11-15 for PlotSquared
-
-
Database() - - Constructor for class com.intellectualcrafters.plot.commands.Database
-
 
-
DATABASE - Static - variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL DB
-
-
Database - Class - in com.intellectualcrafters.plot.database -
-
-
Abstract Database class, serves as a base for any connection method (MySQL, - SQLite, etc.) -
-
-
Database(Plugin) - - Constructor for class com.intellectualcrafters.plot.database.Database
-
-
Creates a new Database
-
-
DBFunc - Class in - com.intellectualcrafters.plot.database -
-
 
-
DBFunc() - Constructor - for class com.intellectualcrafters.plot.database.DBFunc
-
 
-
dbManager - - Static variable in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
Debug - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Debug() - Constructor for - class com.intellectualcrafters.plot.commands.Debug -
-
 
-
DEBUG - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Verbose?
-
-
debug(PrintStream) - - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
DebugClaimTest - - Class in com.intellectualcrafters.plot.commands -
-
 
-
DebugClaimTest() - - Constructor for class com.intellectualcrafters.plot.commands.DebugClaimTest
-
 
-
DebugLoadTest - - Class in com.intellectualcrafters.plot.commands -
-
 
-
DebugLoadTest() - - Constructor for class com.intellectualcrafters.plot.commands.DebugLoadTest
-
 
-
DebugSaveTest - - Class in com.intellectualcrafters.plot.commands -
-
 
-
DebugSaveTest() - - Constructor for class com.intellectualcrafters.plot.commands.DebugSaveTest
-
 
-
DEFAULT_FLAGS - - Variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
DEFAULT_FLAGS_DEFAULT - - Static variable in class com.intellectualcrafters.plot.object.PlotWorld
-
 
-
DefaultPlotManager - Class in com.intellectualcrafters.plot.generator -
-
 
-
DefaultPlotManager() - - Constructor for class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
DefaultPlotWorld - - Class in com.intellectualcrafters.plot.generator -
-
 
-
DefaultPlotWorld(String) - - Constructor for class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
 
-
dehexchar(char) - - Static method in class com.intellectualcrafters.json.JSONTokener
-
-
Get the hex value of a character (base16).
-
-
Delete - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Delete() - Constructor - for class com.intellectualcrafters.plot.commands.Delete
-
 
-
delete(String, - Plot) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Delete a plot
-
-
delete(String, - Plot) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
-
Delete a plot
-
-
delete(String, - Plot) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
-
Delete a plot
-
-
delete - - Variable in class com.intellectualcrafters.plot.object.Plot
-
-
Delete on next save cycle?
-
-
DELETE_PLOTS_ON_BAN - - Static variable in class com.intellectualcrafters.plot.config.Settings
-
-
Delete plots on ban?
-
-
Denied - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Denied() - Constructor - for class com.intellectualcrafters.plot.commands.Denied
-
 
-
denied - - Variable in class com.intellectualcrafters.plot.object.Plot
-
-
List of denied players
-
-
deny_entry - Variable in - class com.intellectualcrafters.plot.object.Plot -
-
-
Deny Entry
-
-
deny_entry(Player) - - Method in class com.intellectualcrafters.plot.object.Plot
-
-
Should the player be allowed to enter?
-
-
DEOP - Class in - com.intellectualcrafters.plot.commands -
-
-
Created 2014-11-09 for PlotSquared
-
-
DEOP() - - Constructor for class com.intellectualcrafters.plot.commands.DEOP
-
 
-
description - - Variable in class com.intellectualcrafters.plot.commands.SubCommand
-
-
Simple description
-
-
direction(float) - - Static method in class com.intellectualcrafters.plot.commands.Merge
-
 
-
disable() - Method in - class com.intellectualcrafters.plot.util.Metrics -
-
-
Disables metrics for the server by setting "opt-out" to true in the - config file and canceling the metrics task. -
-
-
display() - - Method in class com.intellectualcrafters.plot.object.InfoInventory
-
 
-
DOUBLE - - Static variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
DoubleTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Double tag.
-
-
DoubleTag(double) - - Constructor for class com.intellectualcrafters.jnbt.DoubleTag
-
-
Creates the tag with an empty name.
-
-
DoubleTag(String, - double) - Constructor for class com.intellectualcrafters.jnbt.DoubleTag -
-
-
Creates the tag.
-
-
doubleToString(double) - - Static method in class com.intellectualcrafters.json.JSONObject
-
-
Produce a string from a double.
-
-
downloads - - Static variable in class com.intellectualcrafters.plot.commands.plugin
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-5.html b/PlotSquared/doc/index-files/index-5.html deleted file mode 100644 index 4f4f3ed50..000000000 --- a/PlotSquared/doc/index-files/index-5.html +++ /dev/null @@ -1,583 +0,0 @@ - - - - - - E-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

E

-
-
economy - - Static variable in class com.intellectualcrafters.plot.PlotMain
-
-
Economy Object (vault)
-
-
enable() - Method in class - com.intellectualcrafters.plot.util.Metrics
-
-
Enables metrics for the server by setting "opt-out" to false in the - config file and starting the metrics task. -
-
-
end() - - Method in class com.intellectualcrafters.json.JSONTokener -
-
 
-
endArray() - Method in - class com.intellectualcrafters.json.JSONWriter
-
-
End an array.
-
-
endObject() - - Method in class com.intellectualcrafters.json.JSONWriter -
-
-
End an object.
-
-
EndTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_End tag.
-
-
EndTag() - - Constructor for class com.intellectualcrafters.jnbt.EndTag -
-
-
Creates the tag.
-
-
englishAmerican - - Static variable in class com.intellectualsites.translation.TranslationLanguage
-
 
-
englishBritish - - Static variable in class com.intellectualsites.translation.TranslationLanguage
-
 
-
enteredPlot(Location, - Location) - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
entity - - Static variable in class com.intellectualcrafters.json.XMLTokener
-
-
The table of entity values.
-
-
EntityListener - - Class in com.intellectualcrafters.plot.listeners -
-
 
-
EntityListener() - - Constructor for class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
entityMap - - Static variable in class com.intellectualcrafters.plot.listeners.EntityListener
-
 
-
EQ - Static variable - in class com.intellectualcrafters.json.XML
-
-
The Character '='.
-
-
equals(Object) - - Method in class com.intellectualcrafters.json.Kim -
-
-
Two kim objects containing exactly the same bytes in the same order are - equal to each other. -
-
-
equals(Object) - - Method in class com.intellectualcrafters.plot.flag.AbstractFlag
-
 
-
equals(Object) - - Method in class com.intellectualcrafters.plot.flag.Flag
-
 
-
equals(Object) - - Method in class com.intellectualcrafters.plot.object.Plot
-
 
-
equals(Object) - - Method in class com.intellectualcrafters.plot.object.PlotId
-
 
-
equals(Object) - - Method in class com.intellectualcrafters.plot.object.StringWrapper
-
-
Check if a wrapped string equals another one
-
-
equals(Object) - - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
-
 
-
equals(Object) - - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
-
 
-
escape(String) - - Static method in class com.intellectualcrafters.json.Cookie -
-
-
Produce a copy of a string in which the characters '+', '%', '=', ';' - and control characters are replaced with "%hh". -
-
-
escape(String) - - Static method in class com.intellectualcrafters.json.XML -
-
-
Replace special characters with XML escapes: -

- - & - (ampersand) - is replaced by &amp; - < - (less than) - is replaced by &lt; - > - (greater than) - is replaced by &gt; - " - (double quote) - is replaced by &quot; -

-
-
everyone - Static - variable in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
The UUID that will count as everyone
-
-
everyone - Static - variable in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Auto
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Ban
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Claim
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Clear
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Clipboard
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Comment
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Copy
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Database
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Debug
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.DebugClaimTest
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.DebugLoadTest
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.DebugSaveTest
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Delete
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Denied
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.DEOP
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Help
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Helpers
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Home
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Inbox
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Info
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Inventory
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Kick
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.list
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Merge
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.MusicSubcommand
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.OP
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Paste
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.plugin
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Purge
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Rate
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Reload
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Schematic
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Set
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.SetOwner
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Setup
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.SubCommand
-
-
Execute.
-
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Swap
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.TP
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Trusted
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Unban
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Unlink
-
 
-
execute(Player, - String...) - Method in class com.intellectualcrafters.plot.commands.Visit
-
 
-
executeConsole(String...) - - Method in class com.intellectualcrafters.plot.commands.SubCommand
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-6.html b/PlotSquared/doc/index-files/index-6.html deleted file mode 100644 index d8fc556d8..000000000 --- a/PlotSquared/doc/index-files/index-6.html +++ /dev/null @@ -1,386 +0,0 @@ - - - - - - F-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

F

-
-
fancyHeader(String...) - - Method in class com.intellectualsites.translation.YamlTranslationFile
-
-
Set a fancy header
-
-
findConstructor(int) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find constructor by number of arguments
-
-
findField(ReflectionUtils.RefClass) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find field by type
-
-
findField(Class) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find field by type
-
-
findMethod(Object...) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find method by type parameters
-
-
findMethodByName(String...) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find method by name
-
-
findMethodByReturnType(ReflectionUtils.RefClass) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find method by return value
-
-
findMethodByReturnType(Class) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
find method by return value
-
-
finishPlotMerge(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Finishing off plot merging by adding in the walls surrounding the plot - (OPTIONAL)(UNFINISHED) -
-
-
finishPlotMerge(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
finishPlotUnlink(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
 
-
finishPlotUnlink(World, - PlotWorld, ArrayList<PlotId>) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
Flag - Class in com.intellectualcrafters.plot.flag -
-
 
-
Flag(AbstractFlag, - String) - Constructor for class com.intellectualcrafters.plot.flag.Flag
-
-
Flag object used to store basic information for a Plot.
-
-
FlagManager - Class - in - com.intellectualcrafters.plot.flag -
-
-
Flag Manager Utility
-
-
FlagManager() - - Constructor for class com.intellectualcrafters.plot.flag.FlagManager
-
 
-
flags - - Variable in class com.intellectualcrafters.plot.listeners.WorldGuardListener
-
 
-
FlagValue<T> - - Class in com.intellectualcrafters.plot.flag -
-
-
Created 2014-11-17 for PlotSquared
-
-
FlagValue() - - Constructor for class com.intellectualcrafters.plot.flag.FlagValue
-
 
-
FlagValue(Class<T>) - - Constructor for class com.intellectualcrafters.plot.flag.FlagValue
-
 
-
FlagValue.BooleanValue - Class in com.intellectualcrafters.plot.flag -
-
 
-
FlagValue.BooleanValue() - - Constructor for class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
-
 
-
FlagValue.StringValue - - Class in com.intellectualcrafters.plot.flag -
-
 
-
FlagValue.StringValue() - - Constructor for class com.intellectualcrafters.plot.flag.FlagValue.StringValue
-
 
-
FlatFileManager - - Class in com.intellectualcrafters.plot.database -
-
-
Created by Citymonstret on 2014-09-23.
-
-
FlatFileManager() - - Constructor for class com.intellectualcrafters.plot.database.FlatFileManager
-
 
-
FloatTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Float tag.
-
-
FloatTag(float) - - Constructor for class com.intellectualcrafters.jnbt.FloatTag
-
-
Creates the tag with an empty name.
-
-
FloatTag(String, - float) - Constructor for class com.intellectualcrafters.jnbt.FloatTag -
-
-
Creates the tag.
-
-
ForceFieldListener - Class in com.intellectualcrafters.plot.listeners -
-
 
-
ForceFieldListener(JavaPlugin) - - Constructor for class com.intellectualcrafters.plot.listeners.ForceFieldListener
-
 
-
forceTexture(Player) - - Method in class com.intellectualcrafters.plot.util.RUtils
-
-
Force textures on the client
-
-
formatTime(double) - - Static method in class com.intellectualcrafters.plot.util.RUtils
-
-
Get formatted time
-
-
fromBytes(byte[]) - - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
-
 
-
fromChatColor(ChatColor) - - Static method in class com.intellectualcrafters.plot.util.ConsoleColors
-
 
-
fromString(String) - - Static method in class com.intellectualcrafters.plot.object.PlotId
-
-
Get a Plot Id based on a string
-
-
fromString(String) - - Static method in class com.intellectualcrafters.plot.util.ConsoleColors
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-7.html b/PlotSquared/doc/index-files/index-7.html deleted file mode 100644 index ae2c9daec..000000000 --- a/PlotSquared/doc/index-files/index-7.html +++ /dev/null @@ -1,2583 +0,0 @@ - - - - - - G-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

G

-
-
gcd(int, - int) - Static method in class com.intellectualcrafters.plot.config.Configuration
-
 
-
generateExtBlockSections(World, - Random, int, int, ChunkGenerator.BiomeGrid) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
This part is a fucking mess. - Refer to a proper tutorial if you would - like to learn how to make a world generator -
-
-
get(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Get the object value associated with an index.
-
-
get(String) - Method in - class com.intellectualcrafters.json.JSONObject
-
-
Get the value object associated with a key.
-
-
get(int) - Method in - class com.intellectualcrafters.json.Kim
-
-
Get a byte from a kim.
-
-
get() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
-
-
get field value for applied object
-
-
get(String) - - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
get(UUID) - - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
get(String) - - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
-
 
-
get(UUID) - Method in - interface com.intellectualcrafters.plot.uuid.UUIDSaver -
-
 
-
GET_ALL_PLOTS - - Variable in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
getAbstractFlag() - Method - in class com.intellectualcrafters.plot.flag.Flag
-
-
Get the AbstractFlag used in creating the flag
-
-
getAlias() - Method in enum - com.intellectualcrafters.plot.commands.Command
-
 
-
getAlias() - Method in - class com.intellectualcrafters.plot.object.PlotSettings -
-
 
-
getAllowedPlots(Player) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the numbers of plots, which the player is able to build in
-
-
getAllowedPlots(Player) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Get the maximum number of plots a player is allowed
-
-
getAllPlots() - Method in - class com.intellectualcrafters.plot.api.PlotAPI
-
-
Get all plots
-
-
getAllPlotsRaw() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getBestMatch() - - Method in class com.intellectualcrafters.plot.util.StringComparison
-
-
Get the best match value
-
-
getBestMatchAdvanced() - - Method in class com.intellectualcrafters.plot.util.StringComparison
-
-
Will return both the match number, and the actual match string
-
-
getBiome() - Method in - class com.intellectualcrafters.plot.object.PlotSettings -
-
 
-
getBlock(String) - - Method in class com.intellectualcrafters.plot.generator.XPopulator
-
 
-
getBlock(String) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getBlock() - - Method in class com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
-
 
-
getBlockCollection() - - Method in class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
-
 
-
getBlocks() - Method in - class com.intellectualcrafters.plot.object.PlotSelection -
-
 
-
getBoolean(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Get the boolean value associated with an index.
-
-
getBoolean(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the boolean value associated with a key.
-
-
getBottomLocation(Plot) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get Bottom Location (min, min, min)
-
-
getBottomPlot(World, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
getByte(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a byte named with the given key.
-
-
getByte(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get a byte named with the given index.
-
-
getByteArray(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a byte array named with the given key.
-
-
getByteArray(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get a byte array named with the given index.
-
-
getCaptions() - Method in - class com.intellectualcrafters.plot.api.PlotAPI
-
-
C class contains all the captions from the translations.yml file.
-
-
getCause() - - Method in exception com.intellectualcrafters.json.JSONException -
-
-
Returns the cause of this exception or null if the cause is nonexistent - or unknown. -
-
-
getChildTag(Map<String, - Tag>, String, Class<T>) - Static method in class com.intellectualcrafters.jnbt.NBTUtils
-
-
Get child tag of a NBT structure.
-
-
getClassFromType(int) - - Static method in class com.intellectualcrafters.jnbt.NBTConstants -
-
-
Convert a type ID to its corresponding Tag - class. -
-
-
getColumnName() - - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
-
-
Get the column name for the plotted point
-
-
getCommand() - - Method in enum com.intellectualcrafters.plot.commands.Command
-
 
-
getCommands(SubCommand.CommandCategory, - Player) - Static method in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
getCommenst(String, - Plot, int) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
getComments(String, - Plot, int) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Get Plot Comments
-
-
getComments(String, - Plot, int) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
getComments(int) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
getCompoundTag(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.SchematicHandler
-
-
Gets the schematic of a plot
-
-
getConfig() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
 
-
getConfigFile() - Method in - class com.intellectualcrafters.plot.util.Metrics
-
-
Gets the File object of the config file that should be used to store data - such as the GUID and opt-out status -
-
-
getConnection() - - Method in class com.intellectualcrafters.plot.database.Database
-
-
Gets the connection with the database
-
-
getConnection() - Method - in class com.intellectualcrafters.plot.database.MySQL -
-
 
-
getConnection() - Method - in class com.intellectualcrafters.plot.database.SQLite -
-
 
-
getConnection() - Static method - in class com.intellectualcrafters.plot.PlotMain
-
-
Get MySQL Connection
-
-
getConstant() - - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
-
 
-
getConstructor(Object...) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
get existing constructor by types
-
-
getCountryCode() - - Method in class com.intellectualsites.translation.TranslationLanguage
-
 
-
getCreationDescription() - - Method in class com.intellectualsites.translation.TranslationObject
-
 
-
getCurrentPlot(Location) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
getCurrentPlot(Player) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Returns the plot a player is currently in.
-
-
getCurrentPlot(Location) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Returns the plot at a given location
-
-
getCycler() - Method in class - com.intellectualcrafters.plot.util.LSetCube
-
-
Creates a LCycler for the cube.
-
-
getData() - - Method in class com.intellectualcrafters.plot.util.SchematicHandler.DataCollection
-
 
-
getDefault(String) - - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
getDefaultLanguage() - - Method in class com.intellectualsites.translation.bukkit.BukkitTranslation
-
-
The default translation language
-
-
getDefaultPopulators(World) - - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Return the block populator
-
-
getDefaultValue() - - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
-
 
-
getDefaultValue() - - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
-
 
-
getDefaultValue() - - Method in class com.intellectualsites.translation.TranslationObject
-
 
-
getDefaultWorldGenerator(String, - String) - Method in class com.intellectualcrafters.plot.PlotMain
-
-
!!
-
-
getDescription() - - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
-
 
-
getDescription() - - Method in class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
-
 
-
getDescription() - - Method in class com.intellectualcrafters.plot.flag.FlagValue -
-
 
-
getDescription() - - Method in class com.intellectualcrafters.plot.flag.FlagValue.StringValue
-
 
-
getDescription(String) - - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
getDescription() - - Method in class com.intellectualsites.translation.TranslationObject
-
 
-
getDirection(Location) - - Method in class com.intellectualcrafters.plot.util.RUtils -
-
 
-
getDisplayName() - Method - in class com.intellectualcrafters.plot.object.Plot
-
-
Get plot display name
-
-
getDouble(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a double named with the given key.
-
-
getDouble(int) - Method in class - com.intellectualcrafters.jnbt.ListTag
-
-
Get a double named with the given index.
-
-
getDouble(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Get the double value associated with an index.
-
-
getDouble(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the double value associated with a key.
-
-
getElapsed(int) - Static method - in class com.intellectualcrafters.plot.util.Lag
-
-
Get number of ticks since
-
-
getEntities(World) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getField(String) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
get field by name
-
-
getFieldRefClass() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
-
 
-
getFields() - - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLTable
-
 
-
getFile() - - Method in class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
-
 
-
getFixedSpawnLocation(World, - Random) - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Return the default spawn location for this world
-
-
getFlag() - - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
-
Get the flag involved
-
-
getFlag() - Method - in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
-
Get the flag involved
-
-
getFlag(String) - - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
-
Get an AbstractFlag by a string Returns null if flag does not exist
-
-
getFlag(String, - boolean) - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
-
Get an AbstractFlag by a string
-
-
getFlag(String) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
-
Get a flag
-
-
getFlagManager() - Method - in class com.intellectualcrafters.plot.api.PlotAPI
-
-
FlagManager class contains methods relating to plot flags
-
-
getFlags() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
get all the currently registered flags
-
-
getFlags() - Static method - in class com.intellectualcrafters.plot.flag.FlagManager -
-
-
Get a list of registered AbstractFlag objects
-
-
getFlags(Player) - - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
-
Get a list of registerd AbstragFlag objects based on player permissions
-
-
getFlags() - Method in - class com.intellectualcrafters.plot.object.PlotSettings -
-
-
Get all flags applied for the plot
-
-
getFlagValue(String) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
getFloat(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a float named with the given key.
-
-
getFloat(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get a float named with the given index.
-
-
getFreeRam() - Static method in - class com.intellectualcrafters.plot.util.RUtils
-
-
Get the total free ram
-
-
getFrom() - - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
-
Get the from location
-
-
getFullPercentage() - - Static method in class com.intellectualcrafters.plot.util.Lag -
-
-
Get TPS percentage (of 20)
-
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlotClearEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlotMergeEvent
-
 
-
getHandlerList() - - Static method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
-
 
-
getHandlers() - - Method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
-
 
-
getHeader() - - Method in enum com.intellectualcrafters.plot.util.PlotSquaredException.PlotError
-
 
-
getHeighestBlock(World, - int, int) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getHomeLocation(Plot) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get home location
-
-
getId(String, - PlotId) - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Get the table entry ID
-
-
getId(String, - PlotId) - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
-
Get a plot id
-
-
getId(String, - PlotId) - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
getId() - Method - in class com.intellectualcrafters.plot.object.Plot
-
-
Get the plot ID
-
-
getIfExists(int) - Method in - class com.intellectualcrafters.jnbt.ListTag
-
-
Get the tag if it exists at the given index.
-
-
getInitiator() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
-
The player initiating the action
-
-
getInitiator() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
-
The player initiating the action
-
-
getInitiator() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
-
The player initiating the action
-
-
getInt(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get an int named with the given key.
-
-
getInt(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get an int named with the given index.
-
-
getInt(int) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the int value associated with an index.
-
-
getInt(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the int value associated with a key.
-
-
getIntArray(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a int[] named with the given key.
-
-
getIntArray(int) - Method in - class com.intellectualcrafters.jnbt.ListTag
-
-
Get a int[] named with the given index.
-
-
getInventory() - - Method in class com.intellectualcrafters.plot.object.InfoInventory
-
 
-
getJavaClass() - - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
-
 
-
getJoinMessage() - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
getJSONArray(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Get the JSONArray associated with an index.
-
-
getJSONArray(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the JSONArray value associated with a key.
-
-
getJSONObject(int) - Method - in class com.intellectualcrafters.json.JSONArray
-
-
Get the JSONObject associated with an index.
-
-
getJSONObject(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the JSONObject value associated with a key.
-
-
getKey() - - Method in class com.intellectualcrafters.plot.flag.AbstractFlag
-
-
AbstractFlag key
-
-
getKey() - Method - in class com.intellectualcrafters.plot.flag.Flag
-
-
Get the key for the AbstractFlag
-
-
getKey() - Method in - class com.intellectualsites.translation.TranslationObject -
-
 
-
getLang() - Method in - class com.intellectualsites.translation.TranslationAsset -
-
 
-
getLanguage() - Method - in class com.intellectualsites.translation.TranslationFile -
-
-
A method used to get the language of the file
-
-
getLanguage() - - Method in class com.intellectualsites.translation.YamlTranslationFile
-
-
Get the translation language
-
-
getLanguageCode() - - Method in class com.intellectualsites.translation.TranslationLanguage
-
 
-
getLastPlayed(UUID) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getLeaveMessage() - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
-
Get the "farewell" flag value
-
-
getLength() - - Method in enum com.intellectualcrafters.plot.database.sqlobjects.SQLType
-
 
-
getList(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a list of tags named with the given key.
-
-
getList(String, - Class<T>) - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a list of tags named with the given key.
-
-
getList(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get a list of tags named with the given index.
-
-
getList(int, - Class<T>) - Method in class com.intellectualcrafters.jnbt.ListTag -
-
-
Get a list of tags named with the given index.
-
-
getListTag(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a TagList named with the given key.
-
-
getListTag(int) - Method in - class com.intellectualcrafters.jnbt.ListTag
-
-
Get a TagList named with the given index.
-
-
getLoadedChunks(World) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getLocations(Plot) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get plot locations
-
-
getLong(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a long named with the given key.
-
-
getLong(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get a long named with the given index.
-
-
getLong(int) - - Method in class com.intellectualcrafters.json.JSONArray
-
-
Get the long value associated with an index.
-
-
getLong(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the long value associated with a key.
-
-
getMain() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the main class for this plugin
- - Contains a lot of fields and methods - not very well organized
- Only use this if you really need it -
-
-
getMain() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Returns the main class.
-
-
getMatchObject() - - Method in class com.intellectualcrafters.plot.util.StringComparison
-
-
Get the object
-
-
getMaterial() - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
-
 
-
getMaxPlotSelectionIds(World, - PlotId, PlotId) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
getMerged(int) - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
-
Check if the plot is merged in a direction
- 0 = North
- 1 = East
- 2 = South
- 3 = West
-
-
getMerged() - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
 
-
getMethod(String, - Object...) - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
get existing method by name and types
-
-
getName() - Method in - class com.intellectualcrafters.jnbt.Tag
-
-
Gets the name of this tag.
-
-
getName(UUID) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
getName() - Method in class - com.intellectualcrafters.plot.util.Metrics.Graph
-
-
Gets the graph's name
-
-
getName(UUID) - - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
 
-
getName() - - Method in class com.intellectualcrafters.plot.uuid.UUIDSet -
-
 
-
getName() - - Method in class com.intellectualsites.translation.TranslationLanguage
-
 
-
getNames(JSONObject) - - Static method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an array of field names from a JSONObject.
-
-
getNames(Object) - - Static method in class com.intellectualcrafters.json.JSONObject -
-
-
Get an array of field names from an Object.
-
-
getNewPlotWorld(String) - - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Get a new plotworld class For square plots you can use the - DefaultPlotWorld class which comes with PlotSquared -
-
-
getNewPlotWorld(String) - - Method in class com.intellectualcrafters.plot.object.PlotGenerator
-
 
-
getNext() - Method in - class com.intellectualcrafters.plot.util.LSetCube.LCycler -
-
 
-
getNextPlot(PlotId, - int) - Static method in class com.intellectualcrafters.plot.commands.Auto
-
 
-
getObject() - Method in - class com.intellectualsites.translation.TranslationAsset -
-
 
-
getOwner() - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Get the UUID of the owner
-
-
getParent(JavaPlugin) - - Static method in class com.intellectualsites.translation.bukkit.BukkitTranslation
-
-
Get the universal parent based on the plugin data folder
-
-
getPercentage() - Static method - in class com.intellectualcrafters.plot.util.Lag
-
-
Get lag percentage
-
-
getPermission() - - Method in enum com.intellectualcrafters.plot.commands.Command
-
 
-
getPlayer() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
-
The player added/removed
-
-
getPlayer() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
-
The UUID added/removed
-
-
getPlayer() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
-
The UUID added/removed
-
-
getPlayerFunctions() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
PlayerFunctions class contains useful methods relating to players - Some - player/plot methods are here as well -
-
-
getPlayerName(UUID) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getPlayerPlotCount(World, - Player) - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the player plot count
-
-
getPlayerPlotCount(World, - Player) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Get the number of plots for a player
-
-
getPlayerPlots(Player) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Return all plots for a player
-
-
getPlayerPlots(World, - Player) - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get a collection containing the players plots
-
-
getPlayerPlots(World, - Player) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Get the plots for a player
-
-
getPlot(World, - int, int) - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get a plot based on the ID
-
-
getPlot(Location) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get a plot based on the location
-
-
getPlot(Player) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get a plot based on the player location
-
-
getPlot() - Method - in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
-
Get the plot involved
-
-
getPlot() - Method - in class com.intellectualcrafters.plot.events.PlayerEnterPlotEvent
-
-
Get the plot involved
-
-
getPlot() - Method - in class com.intellectualcrafters.plot.events.PlayerLeavePlotEvent
-
-
Get the plot involved
-
-
getPlot() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotDeniedEvent
-
-
The plot involved
-
-
getPlot() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotHelperEvent
-
-
The plot involved
-
-
getPlot() - - Method in class com.intellectualcrafters.plot.events.PlayerPlotTrustedEvent
-
-
The plot involved
-
-
getPlot() - - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
-
Get the plot involved
-
-
getPlot() - - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
-
Get the plot involved
-
-
getPlot() - Method - in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
-
Get the plot involved
-
-
getPlot() - Method in - class com.intellectualcrafters.plot.events.PlotMergeEvent -
-
-
Get the main plot
-
-
getPlot(Player) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
getPlot() - Method in - class com.intellectualcrafters.plot.object.PlotSelection -
-
 
-
getPlot(Location) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Returns the plot id at a location (mega plots are considered)
-
-
getPlot(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Fetches the plot from the main class
-
-
getPlotAbs(Location) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Returns the plot at a location (mega plots are not considered, all plots - are treated as small plots) -
-
-
getPlotBottomLoc(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Gets the bottom loc of a plot (if mega, returns bottom loc of that mega - plot) - - If you would like each plot treated as a small plot use - getPlotBottomLocAbs(...) -
-
-
getPlotBottomLocAbs(PlotWorld, - PlotId) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Get the bottom plot loc (some basic math)
-
-
getPlotBottomLocAbs(PlotWorld, - PlotId) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
getPlotBottomLocAbs(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Gets the bottom plot location of a plot (all plots are treated as small - plots) - - To get the top loc of a mega plot use getPlotBottomLoc(...) -
-
-
getPlotFlags(Plot) - - Static method in class com.intellectualcrafters.plot.flag.FlagManager
-
-
Get the flags for a plot
-
-
getPlotHelper() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
PlotHelper class contains useful methods relating to plots.
-
-
getPlotHome(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getPlotHome(World, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getPlotId() - Method - in class com.intellectualcrafters.plot.events.PlotClearEvent -
-
-
Get the PlotId
-
-
getPlotId() - Method - in class com.intellectualcrafters.plot.events.PlotDeleteEvent -
-
-
Get the PlotId
-
-
getPlotId(PlotWorld, - Location) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Some complex stuff for traversing mega plots (return getPlotIdAbs if you - do not support mega plots) -
-
-
getPlotId(PlotWorld, - Location) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
getPlotIdAbs(PlotWorld, - Location) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Default implementation of getting a plot at a given location For a - simplified explanation of the math involved: - Get the current coords - - shift these numbers down to something relatable for a single plot - (similar to reducing trigonometric functions down to the first quadrant) - - e.g. -
-
-
getPlotIdAbs(PlotWorld, - Location) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
getPlotIdRelative(PlotId, - int) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
direction 0 = north, 1 = south, etc:
-
-
getPlotMain() - Method in - class com.intellectualcrafters.plot.api.PlotAPI
-
-
Get the plotMain class
-
-
getPlotManager(World) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the plot manager for a world. - Most of these methods can be accessed - through the PlotHelper -
-
-
getPlotManager(String) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the plot manager for a world. - Contains useful low level methods for - plot merging, clearing, and tessellation -
-
-
getPlotManager() - - Method in class com.intellectualcrafters.plot.generator.WorldGenerator
-
-
Return the plot manager for this type of generator, or create one For - square plots you may as well use the default plot manager which comes - with PlotSquared -
-
-
getPlotManager() - - Method in class com.intellectualcrafters.plot.object.PlotGenerator
-
 
-
getPlotManager(World) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getPlotManager(String) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getPlots(World, - Player, boolean) - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get all plots for the player
-
-
getPlots(World) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get all plots for the world
-
-
getPlots(UUID) - - Method in class com.intellectualcrafters.plot.commands.Visit
-
 
-
getPlots() - Method in - interface com.intellectualcrafters.plot.database.AbstractDB -
-
 
-
getPlots() - Static method in - class com.intellectualcrafters.plot.database.DBFunc -
-
 
-
getPlots() - Method in - class com.intellectualcrafters.plot.database.SQLManager -
-
 
-
getPlots() - - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
-
-
Get the plots being added;
-
-
getPlots() - Method in - class com.intellectualcrafters.plot.events.PlotUnlinkEvent -
-
-
Get the plots involved
-
-
getPlots() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Get all plots
-
-
getPlots(Player) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getPlots(World, - Player) - Static method in class com.intellectualcrafters.plot.PlotMain
-
 
-
getPlots(String) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getPlots(World) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getPlots() - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
-
Deprecated. 
-
-
getPlotSelectionIds(World, - PlotId, PlotId) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
getPlotsSorted() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Get a sorted list of plots
-
-
getPlotters() - Method - in class com.intellectualcrafters.plot.util.Metrics.Graph -
-
-
Gets an unmodifiable set of the plotter objects in the graph
-
-
getPlotTopLoc(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Gets the top loc of a plot (if mega, returns top loc of that mega plot) - - If you would like each plot treated as a small plot use - getPlotTopLocAbs(...) -
-
-
getPlotTopLocAbs(PlotWorld, - PlotId) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Get the top plot loc (some basic math)
-
-
getPlotTopLocAbs(PlotWorld, - PlotId) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
getPlotTopLocAbs(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Gets the top plot location of a plot (all plots are treated as small - plots) - - To get the top loc of a mega plot use getPlotTopLoc(...) -
-
-
getPlotWidth(World, - PlotId) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
-
Obtains the width of a plot (x width)
-
-
getPlotWorld(World) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
getPlotWorlds() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get all plot worlds
-
-
getPlotWorlds() - Static method - in class com.intellectualcrafters.plot.PlotMain
-
-
get all plot worlds
-
-
getPlotWorldsString() - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getPosition() - Method - in class com.intellectualcrafters.plot.object.PlotSettings -
-
 
-
getRamPercentage() - - Static method in class com.intellectualcrafters.plot.util.RUtils
-
-
Percentage of used ram
-
-
getRatings(Plot) - - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
-
Get Plots ratings
-
-
getRatings(Plot) - - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
getRatings(Plot) - - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
getRealClass() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
get passed class
-
-
getRealConstructor() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
-
 
-
getRealField() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
-
 
-
getRealMethod() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
-
 
-
getRefClass(String...) - - Static method in class com.intellectualcrafters.plot.util.ReflectionUtils
-
-
Get class for name.
-
-
getRefClass(Class) - - Static method in class com.intellectualcrafters.plot.util.ReflectionUtils
-
-
get RefClass object by real class
-
-
getRefClass() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
-
 
-
getRefClass() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefField
-
 
-
getRefClass() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
-
 
-
getReturnRefClass() - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod
-
 
-
getSchematic(String) - - Static method in class com.intellectualcrafters.plot.util.SchematicHandler
-
-
Get a schematic
-
-
getSchematicDimension() - - Method in class com.intellectualcrafters.plot.util.SchematicHandler.Schematic
-
 
-
getSchematicHandler() - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
SchematicHandler class contains methods related to pasting schematics
-
-
getSettingNodes() - - Method in class com.intellectualcrafters.plot.generator.DefaultPlotWorld
-
-
CONFIG NODE | DEFAULT VALUE | DESCRIPTION | CONFIGURATION TYPE | REQUIRED - FOR INITIAL SETUP -

- Set the last boolean to false if you do not require a specific config - node to be set while using the setup command - this may be useful if a - config value can be changed at a later date, and has no impact on the - actual world generation -

-
-
getSettingNodes() - - Method in class com.intellectualcrafters.plot.object.PlotWorld
-
-
Used for the /plot setup command Return null if you do not want to - support this feature -
-
-
getSettings(int) - - Method in interface com.intellectualcrafters.plot.database.AbstractDB
-
 
-
getSettings(int) - - Static method in class com.intellectualcrafters.plot.database.DBFunc
-
 
-
getSettings(int) - - Method in class com.intellectualcrafters.plot.database.SQLManager
-
 
-
getShort(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a short named with the given key.
-
-
getShort(int) - - Method in class com.intellectualcrafters.jnbt.ListTag
-
-
Get a short named with the given index.
-
-
getSignLoc(World, - PlotWorld, Plot) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Remove sign for a plot
-
-
getSignLoc(World, - PlotWorld, Plot) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
getStorage() - Method in class - com.intellectualcrafters.plot.api.PlotAPI
-
 
-
getString(String) - - Method in class com.intellectualcrafters.jnbt.CompoundTag -
-
-
Get a string named with the given key.
-
-
getString(int) - Method in class - com.intellectualcrafters.jnbt.ListTag
-
-
Get a string named with the given index.
-
-
getString(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Get the string associated with an index.
-
-
getString(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Get the string associated with a key.
-
-
getStringSized(int, - String) - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getTileEntities(World) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getTopLocation(Plot) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get Top Location (max, max, max)
-
-
getTopPlot(World, - Plot) - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
getTotalRam() - Static method - in class com.intellectualcrafters.plot.util.RUtils
-
-
Get the total allocated ram
-
-
getTPS() - Static - method in class com.intellectualcrafters.plot.util.Lag -
-
-
Get the server TPS
-
-
getTPS(int) - - Static method in class com.intellectualcrafters.plot.util.Lag -
-
-
Return the tick per second (measured in $ticks)
-
-
getTranslated() - - Method in class com.intellectualsites.translation.TranslationAsset
-
 
-
getTranslated(String, - String) - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
getTranslated(String, - TranslationLanguage) - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
getTranslated(TranslationObject, - TranslationLanguage) - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
getTranslation(String, - TranslationLanguage) - Method in class com.intellectualsites.translation.TranslationManager
-
 
-
getType() - Method - in class com.intellectualcrafters.jnbt.ListTag
-
-
Gets the type of item in this list.
-
-
getType() - - Method in class com.intellectualcrafters.plot.config.Configuration.SettingValue
-
 
-
getType() - Method in - class com.intellectualcrafters.plot.config.ConfigurationNode -
-
 
-
getType() - - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLField
-
 
-
getTypeClass(int) - Static - method in class com.intellectualcrafters.jnbt.NBTUtils
-
-
Gets the class of a type of tag.
-
-
getTypeCode(Class<? - extends Tag>) - Static method in class com.intellectualcrafters.jnbt.NBTUtils
-
-
Gets the type code of a tag class.
-
-
getTypeName(Class<? - extends Tag>) - Static method in class com.intellectualcrafters.jnbt.NBTUtils
-
-
Gets the type name of a tag.
-
-
getUUID(String) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
getUUID(String) - - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
 
-
getUUID(String) - - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
-
 
-
getUUID() - - Method in class com.intellectualcrafters.plot.uuid.UUIDSet -
-
 
-
getUuidMap() - - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
-
Get the map containing all names/uuids
-
-
getUUIDOf(String) - - Static method in class com.intellectualcrafters.plot.uuid.UUIDFetcher
-
 
-
getUUIDSaver() - Static method - in class com.intellectualcrafters.plot.PlotMain
-
-
Get the uuid saver
-
-
getValue() - - Method in class com.intellectualcrafters.jnbt.ByteArrayTag -
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.ByteTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.CompoundTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.DoubleTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.EndTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.FloatTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.IntArrayTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.IntTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.ListTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.LongTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.ShortTag
-
 
-
getValue() - - Method in class com.intellectualcrafters.jnbt.StringTag
-
 
-
getValue() - Method - in class com.intellectualcrafters.jnbt.Tag
-
-
Gets the value of this tag.
-
-
getValue() - Method - in class com.intellectualcrafters.plot.config.ConfigurationNode
-
 
-
getValue() - - Method in class com.intellectualcrafters.plot.database.sqlobjects.SQLField
-
 
-
getValue() - - Method in class com.intellectualcrafters.plot.flag.Flag -
-
-
Get the value
-
-
getValue(String) - - Method in class com.intellectualcrafters.plot.flag.FlagValue.BooleanValue
-
 
-
getValue(String) - - Method in class com.intellectualcrafters.plot.flag.FlagValue -
-
 
-
getValue(String) - - Method in class com.intellectualcrafters.plot.flag.FlagValue.StringValue
-
 
-
getValue() - - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
-
-
Get the current value for the plotted point.
-
-
getValueDesc() - Method - in class com.intellectualcrafters.plot.flag.AbstractFlag -
-
 
-
getWidth() - - Method in class com.intellectualcrafters.plot.object.PlotSelection
-
 
-
getWorld() - - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
-
-
Get the world name
-
-
getWorld() - Method in - class com.intellectualcrafters.plot.events.PlotDeleteEvent -
-
-
Get the world name
-
-
getWorld() - - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
-
 
-
getWorld() - Method in - class com.intellectualcrafters.plot.events.PlotUnlinkEvent -
-
 
-
getWorld() - - Method in class com.intellectualcrafters.plot.object.Plot -
-
-
Get the plot World
-
-
getWorldFolderSize(World) - - Static method in class com.intellectualcrafters.plot.util.PlotHelper
-
 
-
getWorldPlots(World) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getWorldSettings(World) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the settings for a world (settings bundled in PlotWorld class) - You - will need to downcast for the specific settings a Generator has. e.g. -
-
-
getWorldSettings(String) - - Method in class com.intellectualcrafters.plot.api.PlotAPI -
-
-
Get the settings for a world (settings bundled in PlotWorld class)
-
-
getWorldSettings(World) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getWorldSettings(String) - - Static method in class com.intellectualcrafters.plot.PlotMain -
-
 
-
getX() - Method - in class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
-
 
-
getY() - Method - in class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
-
 
-
getYaml() - - Method in class com.intellectualsites.translation.YamlTranslationFile
-
-
Get the YAML object
-
-
getZ() - Method - in class com.intellectualcrafters.plot.util.SchematicHandler.Dimension
-
 
-
globalPopulate() - - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
globalPopulate() - - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
-
 
-
globalSave(BiMap<StringWrapper, - UUID>) - Method in class com.intellectualcrafters.plot.uuid.PlotUUIDSaver
-
 
-
globalSave(BiMap<StringWrapper, - UUID>) - Method in interface com.intellectualcrafters.plot.uuid.UUIDSaver
-
 
-
GT - Static variable in class - com.intellectualcrafters.json.XML
-
-
The Character '>'.
-
-
gzip(String) - - Static method in class com.intellectualcrafters.plot.util.Metrics
-
-
GZip compress a string of bytes
-
-
-A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-8.html b/PlotSquared/doc/index-files/index-8.html deleted file mode 100644 index f2151e6a8..000000000 --- a/PlotSquared/doc/index-files/index-8.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - H-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

H

-
-
handleSaving() - - Static method in class com.intellectualcrafters.plot.util.UUIDHandler
-
-
Handle saving of uuids
-
-
has(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Determine if the JSONObject contains a specific key.
-
-
hasChanged - Variable in - class com.intellectualcrafters.plot.object.Plot -
-
-
Has the plot changed since the last save cycle?
-
-
hasExpired(Plot) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
hashCode() - - Method in class com.intellectualcrafters.json.Kim
-
-
Returns a hash code value for the kim.
-
-
hashCode() - Method in - class com.intellectualcrafters.plot.flag.Flag -
-
 
-
hashCode() - - Method in class com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta
-
 
-
hashCode() - Method in - class com.intellectualcrafters.plot.object.Plot -
-
-
Get the plot hashcode
-
-
hashCode() - - Method in class com.intellectualcrafters.plot.object.PlotId
-
 
-
hashCode() - - Method in class com.intellectualcrafters.plot.object.StringWrapper
-
-
Get the hash value
-
-
hashCode() - - Method in class com.intellectualcrafters.plot.util.Metrics.Graph
-
 
-
hashCode() - - Method in class com.intellectualcrafters.plot.util.Metrics.Plotter
-
 
-
hasNext() - - Method in class com.intellectualcrafters.plot.util.LSetCube.LCycler
-
 
-
hasOwner() - Method in - class com.intellectualcrafters.plot.object.Plot -
-
-
Check if the plot has a set owner
-
-
hasPermission(Player) - - Method in class com.intellectualcrafters.plot.commands.CommandPermission
-
 
-
hasPermission(Player, - String) - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Check a player for a permission
- - Op has all permissions
- - checks for '*' nodes -
-
-
hasPermissionRange(Player, - String, int) - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Check a range of permissions e.g.
-
-
hasPermissions(Player, - String[]) - Static method in class com.intellectualcrafters.plot.PlotMain -
-
-
Check a player for a permission
- - Op has all permissions
- - checks for '*' nodes -
-
-
hasPlot(World, - Player) - Method in class com.intellectualcrafters.plot.api.PlotAPI
-
-
Check whether or not a player has a plot
-
-
hasRights(Player) - - Method in class com.intellectualcrafters.plot.object.Plot
-
-
Check if the player is either the owner or on the helpers list
-
-
header(String...) - - Method in class com.intellectualsites.translation.YamlTranslationFile
-
-
Set the header
-
-
Help - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Help() - - Constructor for class com.intellectualcrafters.plot.commands.Help
-
 
-
Helpers - Class - in com.intellectualcrafters.plot.commands -
-
 
-
Helpers() - - Constructor for class com.intellectualcrafters.plot.commands.Helpers
-
 
-
helpers - - Variable in class com.intellectualcrafters.plot.object.Plot
-
-
List of helpers (with plot permissions)
-
-
helpMenu(Player, - SubCommand.CommandCategory, int) - Static method in class com.intellectualcrafters.plot.commands.MainCommand
-
 
-
Home - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Home() - - Constructor for class com.intellectualcrafters.plot.commands.Home
-
 
-
HOST_NAME - Static - variable in class com.intellectualcrafters.plot.config.Settings.DB
-
-
MySQL Host name
-
-
HTTP - Class in com.intellectualcrafters.json
-
-
Convert an HTTP header to a JSONObject and back.
-
-
HTTP() - - Constructor for class com.intellectualcrafters.json.HTTP -
-
 
-
HTTPTokener - Class in com.intellectualcrafters.json
-
-
The HTTPTokener extends the JSONTokener to provide additional methods - for the parsing of HTTP headers. -
-
-
HTTPTokener(String) - - Constructor for class com.intellectualcrafters.json.HTTPTokener
-
-
Construct an HTTPTokener from a string.
-
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index-files/index-9.html b/PlotSquared/doc/index-files/index-9.html deleted file mode 100644 index 4dade99d0..000000000 --- a/PlotSquared/doc/index-files/index-9.html +++ /dev/null @@ -1,469 +0,0 @@ - - - - - - I-Index - - - - - - - -
- - - - - -
- - -
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  - - - -

I

-
-
id - - Variable in class com.intellectualcrafters.plot.object.BlockWrapper
-
-
Block ID
-
-
id - Variable - in class com.intellectualcrafters.plot.object.Plot -
-
-
plot ID
-
-
id - - Variable in class com.intellectualcrafters.plot.object.PlotBlock
-
 
-
Inbox - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Inbox() - Constructor for - class com.intellectualcrafters.plot.commands.Inbox -
-
 
-
increment(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Increment a property of a JSONObject.
-
-
Info - Class in - com.intellectualcrafters.plot.commands -
-
 
-
Info() - - Constructor for class com.intellectualcrafters.plot.commands.Info
-
 
-
InfoInventory - - Class in com.intellectualcrafters.plot.object -
-
-
Created 2014-11-18 for PlotSquared
-
-
InfoInventory(Plot, - Player) - Constructor for class com.intellectualcrafters.plot.object.InfoInventory
-
-
Constructor
-
-
insertPlots(SQLManager, - UUID, Connection) - Static method in class com.intellectualcrafters.plot.commands.Database
-
 
-
instance() - - Method in class com.intellectualsites.translation.TranslationManager
-
-
Don't use this!
-
-
IntArrayTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Int_Array tag.
-
-
IntArrayTag(int[]) - - Constructor for class com.intellectualcrafters.jnbt.IntArrayTag
-
-
Creates the tag with an empty name.
-
-
IntArrayTag(String, - int[]) - Constructor for class com.intellectualcrafters.jnbt.IntArrayTag -
-
-
Creates the tag.
-
-
INTEGER - Static - variable in class com.intellectualcrafters.plot.config.Configuration
-
 
-
interval - - Variable in class com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
-
 
-
IntTag - Class in com.intellectualcrafters.jnbt
-
-
The TAG_Int tag.
-
-
IntTag(int) - Constructor for - class com.intellectualcrafters.jnbt.IntTag
-
-
Creates the tag with an empty name.
-
-
IntTag(String, - int) - Constructor for class com.intellectualcrafters.jnbt.IntTag -
-
-
Creates the tag.
-
-
Inventory - Class - in com.intellectualcrafters.plot.commands -
-
 
-
Inventory() - - Constructor for class com.intellectualcrafters.plot.commands.Inventory
-
 
-
InventoryListener - Class in com.intellectualcrafters.plot.listeners -
-
-
Created 2014-11-18 for PlotSquared
-
-
InventoryListener() - - Constructor for class com.intellectualcrafters.plot.listeners.InventoryListener
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlayerClaimPlotEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlayerTeleportToPlotEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlotClearEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlotDeleteEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlotFlagAddEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlotFlagRemoveEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlotMergeEvent
-
 
-
isCancelled() - - Method in class com.intellectualcrafters.plot.events.PlotUnlinkEvent
-
 
-
isForge() - - Static method in class com.intellectualcrafters.plot.util.ReflectionUtils
-
 
-
isInPlot(Player) - - Method in class com.intellectualcrafters.plot.api.PlotAPI
-
-
Check whether or not a player is in a plot
-
-
isInPlot(Player) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
isInPlot(Location) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
isInPlot(Player) - - Static method in class com.intellectualcrafters.plot.util.PlayerFunctions
-
 
-
isInPlotAbs(PlotWorld, - Location, PlotId) - Method in class com.intellectualcrafters.plot.generator.DefaultPlotManager
-
-
Check if a location is inside a specific plot(non-Javadoc) - For this - implementation, we don't need to do anything fancier than referring to - getPlotIdAbs(...) -
-
-
isInPlotAbs(PlotWorld, - Location, PlotId) - Method in class com.intellectualcrafters.plot.object.PlotManager
-
 
-
isInstance(Object) - - Method in class com.intellectualcrafters.plot.util.ReflectionUtils.RefClass
-
-
see Class.isInstance(Object)
-
-
isMatching(String) - - Method in enum com.intellectualcrafters.plot.object.PlotHomePosition
-
 
-
isMerged() - - Method in class com.intellectualcrafters.plot.object.PlotSettings
-
-
Returns true if the plot is merged (i.e. if it's a mega plot)
-
-
isNull(int) - Method in - class com.intellectualcrafters.json.JSONArray
-
-
Determine if the value is null.
-
-
isNull(String) - - Method in class com.intellectualcrafters.json.JSONObject -
-
-
Determine if the value associated with the key is null or if there is no - value. -
-
-
isOptOut() - - Method in class com.intellectualcrafters.plot.util.Metrics
-
-
Has the server owner denied plugin metrics?
-
-
isPlayer - Variable - in class com.intellectualcrafters.plot.commands.SubCommand
-
 
-
isPlotWorld(World) - - Method in class com.intellectualcrafters.plot.api.PlotAPI
-
-
Get if plot world
-
-
isPlotWorld(World) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
isPlotWorld(Location) - - Static method in class com.intellectualcrafters.plot.listeners.PlotListener
-
 
-
isPlotWorld(World) - - Static method in class com.intellectualcrafters.plot.PlotMain
-
 
-
isPlotWorld(String) - - Static method in class com.intellectualcrafters.plot.PlotMain
-
 
-
isUnowned(World, - PlotId, PlotId) - Method in class com.intellectualcrafters.plot.commands.Auto
-
 
-
isValid(String) - - Method in class com.intellectualcrafters.plot.config.ConfigurationNode
-
 
-
- A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/index.html b/PlotSquared/doc/index.html deleted file mode 100644 index 342427aa7..000000000 --- a/PlotSquared/doc/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - Generated Documentation (Untitled) - - - - - - - - - - <noscript> - <div>JavaScript is disabled on your browser.</div> - </noscript> - <h2>Frame Alert</h2> - - <p>This document is designed to be viewed using the frames feature. If you see this message, you are using a - non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> - - - diff --git a/PlotSquared/doc/overview-frame.html b/PlotSquared/doc/overview-frame.html deleted file mode 100644 index d85d05426..000000000 --- a/PlotSquared/doc/overview-frame.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - Overview List - - - - - - -

 

- - diff --git a/PlotSquared/doc/overview-summary.html b/PlotSquared/doc/overview-summary.html deleted file mode 100644 index 4afc24697..000000000 --- a/PlotSquared/doc/overview-summary.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - Overview - - - - - - - -
- - - - - -
- - - - -
- - - - - -
- - - - diff --git a/PlotSquared/doc/overview-tree.html b/PlotSquared/doc/overview-tree.html deleted file mode 100644 index c53fc2434..000000000 --- a/PlotSquared/doc/overview-tree.html +++ /dev/null @@ -1,905 +0,0 @@ - - - - - - Class Hierarchy - - - - - - - -
- - - - - -
- - - -
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • com.intellectualcrafters.plot.flag.AbstractFlag
    • -
    • org.bukkit.generator.BlockPopulator -
        -
      • com.intellectualcrafters.plot.generator.XPopulator
      • -
      -
    • -
    • com.intellectualcrafters.plot.object.BlockWrapper
    • -
    • com.intellectualsites.translation.bukkit.BukkitTranslation
    • -
    • com.intellectualcrafters.json.CDL -
    • -
    • org.bukkit.generator.ChunkGenerator - -
    • -
    • com.intellectualcrafters.plot.commands.CommandPermission
    • -
    • com.intellectualcrafters.jnbt.CompoundTagBuilder -
    • -
    • com.intellectualcrafters.plot.config.Configuration
    • -
    • com.intellectualcrafters.plot.config.Configuration.SettingValue -
    • -
    • com.intellectualcrafters.plot.config.ConfigurationNode
    • -
    • com.intellectualcrafters.plot.util.ConsoleColors
    • -
    • com.intellectualcrafters.json.Cookie -
    • -
    • com.intellectualcrafters.json.CookieList -
    • -
    • com.intellectualcrafters.plot.database.Database -
        -
      • com.intellectualcrafters.plot.database.MySQL
      • -
      • com.intellectualcrafters.plot.database.SQLite
      • -
      -
    • -
    • com.intellectualcrafters.plot.database.DBFunc
    • -
    • com.intellectualcrafters.plot.listeners.EntityListener - (implements org.bukkit.event.Listener) -
    • -
    • org.bukkit.event.Event - -
    • -
    • com.intellectualcrafters.plot.flag.Flag
    • -
    • com.intellectualcrafters.plot.flag.FlagManager
    • -
    • com.intellectualcrafters.plot.flag.FlagValue<T> - -
    • -
    • com.intellectualcrafters.plot.database.FlatFileManager
    • -
    • com.intellectualcrafters.plot.listeners.ForceFieldListener - (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.json.HTTP -
    • -
    • com.intellectualcrafters.plot.object.InfoInventory (implements org.bukkit.inventory.InventoryHolder) -
    • -
    • com.intellectualcrafters.plot.listeners.InventoryListener - (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.json.JSONArray -
    • -
    • com.intellectualcrafters.json.JSONML -
    • -
    • com.intellectualcrafters.json.JSONObject -
    • -
    • com.intellectualcrafters.json.JSONTokener - -
    • -
    • com.intellectualcrafters.json.JSONWriter - -
    • -
    • com.intellectualcrafters.json.Kim -
    • -
    • com.intellectualcrafters.plot.util.Lag (implements java.lang.Runnable) -
    • -
    • com.intellectualcrafters.jnbt.ListTagBuilder -
    • -
    • com.intellectualcrafters.plot.util.Logger
    • -
    • com.intellectualcrafters.plot.util.LSetCube
    • -
    • com.intellectualcrafters.plot.util.LSetCube.LCycler
    • -
    • com.intellectualcrafters.plot.commands.MainCommand (implements - org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter) -
    • -
    • com.intellectualcrafters.plot.util.Metrics
    • -
    • com.intellectualcrafters.plot.util.Metrics.Graph
    • -
    • com.intellectualcrafters.plot.util.Metrics.Plotter
    • -
    • com.intellectualcrafters.plot.uuid.NameFetcher (implements java.util.concurrent.Callable<V>) -
    • -
    • com.intellectualcrafters.jnbt.NBTConstants -
    • -
    • com.intellectualcrafters.jnbt.NBTInputStream - (implements java.io.Closeable) -
    • -
    • com.intellectualcrafters.jnbt.NBTOutputStream - (implements java.io.Closeable) -
    • -
    • com.intellectualcrafters.jnbt.NBTUtils -
    • -
    • com.intellectualcrafters.plot.util.PlayerFunctions
    • -
    • com.intellectualcrafters.plot.object.Plot (implements java.lang.Cloneable) -
    • -
    • com.intellectualcrafters.plot.api.PlotAPI
    • -
    • com.intellectualcrafters.plot.object.PlotBlock
    • -
    • com.intellectualcrafters.plot.object.PlotComment
    • -
    • com.intellectualcrafters.plot.util.PlotHelper
    • -
    • com.intellectualcrafters.plot.object.PlotId
    • -
    • com.intellectualcrafters.plot.listeners.PlotListener -
        -
      • com.intellectualcrafters.plot.listeners.PlayerEvents - (implements org.bukkit.event.Listener) -
      • -
      • com.intellectualcrafters.plot.listeners.PlotPlusListener (implements org.bukkit.event.Listener) -
      • -
      -
    • -
    • com.intellectualcrafters.plot.object.PlotManager - -
    • -
    • com.intellectualcrafters.plot.database.PlotMeConverter
    • -
    • com.intellectualcrafters.plot.listeners.PlotPlusListener.Interval
    • -
    • com.intellectualcrafters.plot.listeners.PlotPlusListener.RecordMeta -
    • -
    • com.intellectualcrafters.plot.object.PlotSelection
    • -
    • com.intellectualcrafters.plot.object.PlotSettings
    • -
    • com.intellectualcrafters.plot.uuid.PlotUUIDSaver (implements com.intellectualcrafters.plot.uuid.UUIDSaver) -
    • -
    • com.intellectualcrafters.plot.object.PlotWorld - -
    • -
    • org.bukkit.plugin.PluginBase (implements org.bukkit.plugin.Plugin) -
        -
      • org.bukkit.plugin.java.JavaPlugin - -
      • -
      -
    • -
    • com.intellectualcrafters.json.Property -
    • -
    • com.intellectualcrafters.plot.util.PWE
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefClass -
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefConstructor
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefField -
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefField.RefExecutor
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod -
    • -
    • com.intellectualcrafters.plot.util.ReflectionUtils.RefMethod.RefExecutor
    • -
    • com.intellectualcrafters.plot.util.RUtils
    • -
    • com.intellectualcrafters.plot.util.SchematicHandler
    • -
    • com.intellectualcrafters.plot.util.SchematicHandler.DataCollection -
    • -
    • com.intellectualcrafters.plot.util.SchematicHandler.Dimension -
    • -
    • com.intellectualcrafters.plot.util.SchematicHandler.Schematic -
    • -
    • com.intellectualcrafters.plot.util.SetBlockFast
    • -
    • com.intellectualcrafters.plot.config.Settings
    • -
    • com.intellectualcrafters.plot.config.Settings.DB
    • -
    • com.intellectualcrafters.plot.database.sqlobjects.SQLField
    • -
    • com.intellectualcrafters.plot.database.SQLManager (implements - com.intellectualcrafters.plot.database.AbstractDB) -
    • -
    • com.intellectualcrafters.plot.database.sqlobjects.SQLTable -
        -
      • com.intellectualcrafters.plot.database.sqlobjects.PlotTable -
      • -
      -
    • -
    • com.intellectualcrafters.plot.util.StringComparison
    • -
    • com.intellectualcrafters.plot.object.StringWrapper
    • -
    • com.intellectualcrafters.plot.commands.SubCommand -
        -
      • com.intellectualcrafters.plot.commands.Auto
      • -
      • com.intellectualcrafters.plot.commands.Ban
      • -
      • com.intellectualcrafters.plot.commands.Claim
      • -
      • com.intellectualcrafters.plot.commands.Clear
      • -
      • com.intellectualcrafters.plot.commands.Clipboard
      • -
      • com.intellectualcrafters.plot.commands.Comment
      • -
      • com.intellectualcrafters.plot.commands.Copy
      • -
      • com.intellectualcrafters.plot.commands.Database
      • -
      • com.intellectualcrafters.plot.commands.Debug
      • -
      • com.intellectualcrafters.plot.commands.DebugClaimTest -
      • -
      • com.intellectualcrafters.plot.commands.DebugLoadTest -
      • -
      • com.intellectualcrafters.plot.commands.DebugSaveTest -
      • -
      • com.intellectualcrafters.plot.commands.Delete
      • -
      • com.intellectualcrafters.plot.commands.Denied
      • -
      • com.intellectualcrafters.plot.commands.DEOP
      • -
      • com.intellectualcrafters.plot.commands.Help
      • -
      • com.intellectualcrafters.plot.commands.Helpers
      • -
      • com.intellectualcrafters.plot.commands.Home
      • -
      • com.intellectualcrafters.plot.commands.Inbox
      • -
      • com.intellectualcrafters.plot.commands.Info
      • -
      • com.intellectualcrafters.plot.commands.Inventory
      • -
      • com.intellectualcrafters.plot.commands.Kick
      • -
      • com.intellectualcrafters.plot.commands.list
      • -
      • com.intellectualcrafters.plot.commands.Merge
      • -
      • com.intellectualcrafters.plot.commands.MusicSubcommand -
      • -
      • com.intellectualcrafters.plot.commands.OP
      • -
      • com.intellectualcrafters.plot.commands.Paste
      • -
      • com.intellectualcrafters.plot.commands.plugin
      • -
      • com.intellectualcrafters.plot.commands.Purge
      • -
      • com.intellectualcrafters.plot.commands.Rate
      • -
      • com.intellectualcrafters.plot.commands.Reload
      • -
      • com.intellectualcrafters.plot.commands.Schematic
      • -
      • com.intellectualcrafters.plot.commands.Set
      • -
      • com.intellectualcrafters.plot.commands.SetOwner
      • -
      • com.intellectualcrafters.plot.commands.Setup - (implements org.bukkit.event.Listener) -
      • -
      • com.intellectualcrafters.plot.commands.Swap
      • -
      • com.intellectualcrafters.plot.commands.TP
      • -
      • com.intellectualcrafters.plot.commands.Trusted
      • -
      • com.intellectualcrafters.plot.commands.Unban
      • -
      • com.intellectualcrafters.plot.commands.Unlink
      • -
      • com.intellectualcrafters.plot.commands.Visit
      • -
      -
    • -
    • com.intellectualcrafters.jnbt.Tag - -
    • -
    • Test1
    • -
    • java.lang.Throwable (implements java.io.Serializable) -
        -
      • java.lang.Exception - -
      • -
      -
    • -
    • com.intellectualcrafters.plot.object.Title
    • -
    • com.intellectualsites.translation.TranslationAsset
    • -
    • com.intellectualsites.translation.TranslationFile - -
    • -
    • com.intellectualsites.translation.TranslationLanguage
    • -
    • com.intellectualsites.translation.TranslationManager
    • -
    • com.intellectualsites.translation.TranslationObject
    • -
    • com.intellectualcrafters.plot.uuid.UUIDFetcher (implements java.util.concurrent.Callable<V>) -
    • -
    • com.intellectualcrafters.plot.util.UUIDHandler
    • -
    • com.intellectualcrafters.plot.uuid.UUIDSet
    • -
    • com.intellectualcrafters.plot.listeners.WorldEditListener - (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.jnbt.WorldEditUtils -
    • -
    • com.intellectualcrafters.plot.listeners.WorldGuardListener - (implements org.bukkit.event.Listener) -
    • -
    • com.intellectualcrafters.json.XML -
    • -
    -
  • -
-

Interface Hierarchy

- -

Annotation Type Hierarchy

-
    -
  • com.intellectualsites.translation.Translation (implements java.lang.annotation.Annotation) -
  • -
-

Enum Hierarchy

-
    -
  • java.lang.Object - -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/package-frame.html b/PlotSquared/doc/package-frame.html deleted file mode 100644 index 536810852..000000000 --- a/PlotSquared/doc/package-frame.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - &lt;Unnamed&gt; - - - - -

<Unnamed>

- -
-

Classes

- -
- - diff --git a/PlotSquared/doc/package-list b/PlotSquared/doc/package-list deleted file mode 100644 index e03f6ba7c..000000000 --- a/PlotSquared/doc/package-list +++ /dev/null @@ -1,18 +0,0 @@ - -com.intellectualcrafters.jnbt -com.intellectualcrafters.json -com.intellectualcrafters.plot -com.intellectualcrafters.plot.api -com.intellectualcrafters.plot.commands -com.intellectualcrafters.plot.config -com.intellectualcrafters.plot.database -com.intellectualcrafters.plot.database.sqlobjects -com.intellectualcrafters.plot.events -com.intellectualcrafters.plot.flag -com.intellectualcrafters.plot.generator -com.intellectualcrafters.plot.listeners -com.intellectualcrafters.plot.object -com.intellectualcrafters.plot.util -com.intellectualcrafters.plot.uuid -com.intellectualsites.translation -com.intellectualsites.translation.bukkit diff --git a/PlotSquared/doc/package-summary.html b/PlotSquared/doc/package-summary.html deleted file mode 100644 index 6bef4520f..000000000 --- a/PlotSquared/doc/package-summary.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - -
- - - - - -
- - -
-

Package <Unnamed>

-
-
-
    -
  • - - - - - - - - - - - - -
    Class Summary 
    ClassDescription
    Test1 
    -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/package-tree.html b/PlotSquared/doc/package-tree.html deleted file mode 100644 index 1de8eb120..000000000 --- a/PlotSquared/doc/package-tree.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - Class Hierarchy - - - - - - - -
- - - - - -
- - -
-

Hierarchy For Package <Unnamed>

- Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object - -
  • -
-
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/resources/background.gif b/PlotSquared/doc/resources/background.gif deleted file mode 100644 index f471940fde2f39ef8943a6af9569bcf986b1579b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2313 zcmV+k3HJ6!Nk%w1VKM-40OkMy00030|NlK(aXwsfKV5S}VtGJbbVOr%L0@%CZH88Q zl{{NzcR^uxNo<2iYk@pjY)*5FJz8x~bc{)B zfk z+1T6M-s9WdW8dcJ-wO*3@9+W*5AY543-j^$^!EPz_4eHZ2#>)41`h@dc!2OAgN6$a zCS2I?;lqgx6IR4nkpTe;1RN0f=zxMq2O=q`94V5d$&e>Unta)^<;;^G3>e7yp=ZvW z6DIW3xpSvaogXF?_4%`@(V;s}NR^5J!3hrtJV@1QRV&r5S*L!zYE|rss${iFkg&!? zTN5V#)~=bmMorwgZsEpdOE)iExo+FO-8;8Kga{=HbSQCnF=E6W3?o*|ID%uwi5**> zJXy127Y9m+=HQ|PhXWi+xNwoWv}n_%Pq%(e+H~mGqhq5kv4Mo|-n~g|7!F*xZ{xv< zCpXS~dGg^IGK?4@J-T%b(XnUHFul6n<@2&4)zzyO2) z3Q8`i0+UKY*`$}e9mmp;tg*))`|PsK1|hAo%u0K$vDwm4gaSkm0j{`26k#qAKmbuhxZ#cquDR>B zD{s8+&TH-uNg$C#68QG}1HMBHfrP&L@@w$F_!itRzXdCN@V|LDAu%3!IDtq1#1UV7 z#1RxvT=B(DWbCoU5l=ia$Pp`Hgb_?Mp@hmtxZDI2N-)v#$}PXVvdm1d>@v(v`0TUJ zF)Pu89(q`zv=w^nVTIF3@3BYIPA}c`(@ZCAwbNBEt@PDUKe5CTR8aB66IE1!w%Amt zy+jpcn~k>GZpVFg+H6x{_uOksvBlq0OyT$6TyQZ37k(cOxZr|JEx1sGm<(M9gH z-~PMqyn|tT=))UN`|-FFFUA#KToK0fUOaz=7}Z~KeHhVC&%O27cTfHQ^WBU8z4p&T zp#>D|V}XShTD;Hx745Iz{`>K-Z$A|7!*Boo{mY;G21vjH8t{M!OrQc6$iN0V@PQDF zpadsK!3tXNf*8!81~qnXWuHZ)kytd=_y+ADWvw31ouV;CdZ#ya*(l7-A-C-Y^+iit8O zBy3*`Ls$|5Hn4m_^I^|C7{m7EFn|5vTk;|oywIgCc9Bb*=L+Y$)M>9GC<|HGs@6NB zHLY%03!dDf=eDRt2O6lVSFRcsuWZEwU?=z$CZ0W?#VJfdN>HG(l%oKpyiftJc|Y)xkjSJYCrQal-0PC~()T9xwF!Jf zVi1UA#3BBbh(i8r5&v#Pz!cF41KjbCc?4u2@@Q~oKLirt2TM30;y6b+zyX2`Yl9u; z`0$3;v0-YUp&7NdPT#q`cZlbij$jvbRk6R>8g*>}*b9E+WDwmpHAAxYzyT aU_pX{M6b8i>#Dq3onfZy}_nli%!Q$ZV%e&!tN2 zX3B0NWXQ443Eo1rUP86rLU>O>oTp%wt3Z{Tz&P*)Iraq^_@X;RtUFY!JxH|4U!>kw zxXwqo&R3Y=EsXaR!ng@y+y$%L1P3FZ4@N!j3m5MW74HcC->_JFuvlxLXiI=-OQ2|@ zpGc#>2-aN)<1RE9^`bB0`65VSK2>5m>CHs^YZCC)NX*NfbeT1%)Cxpu2_(6cCbLvjLY`hf1%*q}QO*%V4SfOu5Nqg~`-+(-76= za<`RA&(qDB^S!nIS^od5|Nk$KPXD8(qSB!f`M*{E?A^&yOW$08V^iNPK!%UNJ-@xmz>`pG2_%4I3QWk4UdtwP!GH$C%mo2K|$Ap=_)Y!#O($1@ohsUtR1k%wI*) z4*X&g==oWh`j{uP=HFm;Ye>0>UbDdtSp^~MaQ!L9I#)Ga?q}{@T#|qec*FkMLDenm zj^sCgk!^O^3o|vG!~2$$$7`C#4Ry zdQ!tui+J1*HyavK+4{`r+zvYHj9IsRt~@uEBOreWS8~2rXAR3!|7aTdr+x4|>@$Az z)b1t$gSB~6USxpfLmy^|_J_eNt*PI=ScO1SVH895N#`ef%IOh&o-2GIjK1s-JzkyZ z@r7O%hChz}kMHCM@Wqi^R-9t&%Fh^#9dVB0%ej@$=OjXA%XZdzCXf}c>SW26_z-Te z5b{}XWg&rELM=N*%aimp)k04t2c+`WAS>ZFIPWKvtyOI))HzpRA!T!b{tv?4NzF1v zNlP%#{&p@lFFEKvcroMAsI)mq?&`!e%l+-y&j9ZqhN}oG&dB=Pw09r+Q%m0cMujS# zs$a7!9VH`CC7k{!bV(J`rm%Jpj6&nLtWhPcy$onn$8G#ZdD9hxO<9k67Ya>K_7W~3 z&KYf14fq<{qHA7u6;>AOcomhdg?ianjr9uINt}*7w?g%z9{Q`(qRo@hDwSpGmxz&h&>%G%T(URL~=c>C{>y$K?+wLFp zy*M1@FTUKYV>8DeDIAIKM+!T5c-k&C4?Y~y^E zQCIc-=9~DiPtfVZB=_c3`qH3h|NXd^BcOQG`funSe)i5!NoA_r{b6PwzSDIXG+!(F z9CqJgo&~#7^VZHWj{u23q+NDCHn}GeWDC*(SW%{f4WMtP3l2jsO7*M)EX)#NLlsNnU4q@#jn0r#rsWsf^ngE0&ambG1f;Rj zfOk#_>1|25Z%?iI{0Yv8)DQfk>m1td?~}m0N%^k^u%EuUCc#ItmlY|epQ3YLWehYw zRU0qpPb#X&WU*UOU8et(s8x~WyYWYsgJCF+;U6@*nICY8)dk}IG+(#_Bz8zURd3HZ6qPE68U1%S{wL0 z;K{PDw2iRFIGG?(UiE9kT9?siuv4O{ z`dX2-eiXU3N)H2nT4V=AO^~J}sw+gr{&~qx%$$wlMv_JCWAMfcjYl}*Cfcf!adOY8 z8oLmJ{%49e+nLiVo#H9}wRk?UCzDz^>9TDxreVHzl~R*)?YU>Uu;J2eQ27O5`&X^8 z`94{)YWJQa#l0Fbz0N6B>j&8J;<%VuG6OYM9&QIdtueWjI3X;*dEtGiF@1AcvN4U> zG5SXIEXxB>)!mtQOztJLyeF78S*kLiU-!>PtQ_s~OMl~&y(hVVe$A5 zwo}E-DJ6${QP75?LsQ}Wl@MXwXMT4d>|?rD!g?jE>J^N*y;X}5FLe%d0_ zZ>eIBK6l@jkfw{p_YiDP;MS{jww{%j#?rk2z1J!HqE;Vd!TrCl_7UPef8;edI}wD6 zT&12Bxj&q}d4%$GHq+$~UYtWv`wI9k`89oKkCEK_E;-+O)(rhThjOM|kXDn{!W1Lo z`_?yQv=lp=-w()R<=0&c5%RWHY_fw@qb}uwFuPAGkl~@Kis}eE%MY@~6ZyWcF+llM zGyK`)(vn1F%%z=W7-Y=1$`w0Mv+-|#d};%JjCmw)Y1hOxwA|{}P%6LS4X`jQCGh`mR@=hGrr|cXa^Ipj;Mh)6mTqd1s_HmP0IxXT!w7YhoIHT>Hm#!;c@|L9OjV zsTlHE{Z;HWeM9^tPm-`|&nnl$%DRtNG1~?npUvgKPwKlaccEe4q!7YU3zykJnu6Sr z()LMXs_)^~u-ds7+wMff)RAJF?2?1H`_wDnt%MssYeB5;q~ojgVm6OHA6B>FG2erv z8&`|6<`=!EPKR^8Qlp5MiKwfxy4D`mN> ze$RKh_6*YJd4y0nnUZvwN%iY&^9xk@cM|5g#pZkc#N*(PH?^w&?ilTDMXFcd0`5!E zvgHS`=Lc|~1aO=L@L~eE*aP{90lc7qXY7GOs)3JH14T{(`K1D%tpvUT1-?F^1d4_S zJ#7yXkP3Q37bJlRQfv=mV-J3B8O*m5B%L3uW)S>|Jwy`|s6iK`sv0Z-3NcU(0knrG z5ChFXA@A9PUSdLI+(VU!!J1Mbw!~0VP^jZci2X|Nx0BF!24ObrAr>b=QtlyN4TAhn z!mQncJm~^m4MIafVLt_ewDUtO+e5w*!`(6A&H^F7i9s4t5&uBpNvh$nlTZjqTM5krNRRQ zqP)VR!|9@H>7qN_!+-)&_9s!^;gOvy5s~iEB&qP8{77&2NJMzZcsnJgSt_bYDzYU% zxQ#uuk3D*e7_*d5^?HW(^(WxICGf-mcmM((VStzIz%zFsm0;ZI3h=5OciJ#a%7I(IeGbFv+PP^?^sKBPrRBl<+qK^o%3fi=L9`la>-l4~p|hzAl~W zf=%(|NHgF7r5dJD+Cf08q-c(m;Epsldaz4cqHzTHT>)4xEe(cE0i~tf{Y0xs_1~Kv z+BYQ-TpEOch13;5YC9nHYEXhSv{ew=LV~nQL%UBQEgaDL2m?9u~v zEQmOvM=aB)Z$+eE38rs%AZR_)4>@2raqwH#Fji#xoLc&PS_TU^W8W(M0GqLdO~1yF z{sfHZ_sC#FX58(}d>RSkKZCz8%D7{cC3Z$Zh@52{31&V*W-@s~Z<8~aBeNcNW?e&O zsR(7fHOf}B&fsRqdZ(WK1e~s*o^uD6{YX9QJvqyWAqQXt*E>r$V94YK=X@8+{1cg> z*_i`a%alCJvbD~lCg&Q1Gk=|BzY)sejf9EHJ{s7lu4?ExCWR3jgTiET;exy{sW!Mg zuj*_YOf0@ScN~X0$7V6&KpL172rf|rA8?K<2+GelXw)NUk#@b4aT5MO%1ip4*ym}B-JI__S1R?CK z<4eW~bH;@H@tR55x}&JNSw_NvEPk)6E>XDt7*)4sgWuw+_vNZzmaS(tsi(57zcjA9 z@~XcHtzYq~IX|z*Md9mh>W~`sk3<^s7;EmyH4wcTdAo5NkUA2ofeG69{Gx7#i_*lt zQ7;N@xEo#nNRj&SbDHNnP0w#OE0{DZ$~7ySG%IN~zwd5Vu4&dnH>*OMb>&*VL^tbA zG;7y1t9dsYU$p3pw0x6mwGe6fjBYWsZ8e3q8f~-~cefgHxBangajI$kv(c*W-DZGp zbM$UgnP{_MYPXYX|6$u^deIhE(-xuGX2RVXqS+o~(iSV%;ZW1=Zqkut(r&xak^pT> zsp*I@X|-eOd^gb+sM(%3(E$|c47Y91mTU99Xe;4vFOTl5gmwVB+fvc3n2pwK?~Xd# zwrY{?CUj@~Msr?wXU0WKv2A$hq z`$V^gNq4(<*C=;4e4}$*uIC$5&uUHkM08J~N$>VV*VpdmLCuc!?!J9=-)VH;fo9)| zNN4m#^Kb9|`RF!^ZAT-z=bC8$do8~Tjc^o-aQjyc2(TW*d50E1#NW0pKb^~tf&OUlS+W}>0!m@!~1 z&TdSLhm`0u99c-z=oxYL8IFaGCDoFwFUP!1iJ%xF1UC4hhv*VR2451Pc0+kQGC)39C5 za81oV=$+xzZNYhn=RB-CTZ>Bevj)A3mi9|OS(dcy=N#Zm=Dza|z4Jd<=3IQ2CB>FiwH7{4Ej#+oa>M67 z!56)Km&2xJ|H7B;%~rJDuJ{rbZQiaX*e^$DEt~T$#h9(y#jg6>uX?boq!N}Q;EQth zYo1rjc15dETPw~*Ymu=lreoE9g^wb)ZcRe1yp1(Eo(rmqUYZXOU$BC_| zX{{&qE?E06wXm#v#cpKwE)jaydSaI`TkCCClr_lKMzPkyFT!R%VRn&sZSrchKx&4e~pJQcfViQxxl=T=7}#gYz7Pvoh`T#Jbab%2A2m zxh?A<`}A?8_GumBEcL;$x%gQb@PZ(If%ZE~D?ax#Km4a~+GV~!;Bb~qxxh@HHc|H6 zr%$^c9Dw~UQFWJv+81rCXS1vqqLfQ~-BtO63xCArGVA4T-}xPXYGHqB5h^+n5%$24 z(BROpi13J@*qFfR$oRMHel`=(zy zovs-UKHD3VkJ?hVeq!aA+8Fh4+NIlFhcC~UrR{4I#}K*u&z%68+P1*=q0B1r*2MY> z!9gYs*vlTO5v#8S>c#3goFmp>3iVKdU)NkjNV(s7tO4Wq?2M}o5Cj-*7;S=fEshOA zR*4$dm{ROvUamG%xL_tSW6}U$Nl=@91T;nC11o-iIVyVrfkd) zTCp;^tOy|_kuOFV$Nn=$AQJO9;&sZ&eDs^!r*m;Hw!)vpO1vcfj2EV{dJ?7ap0tq6 z$SwUVM*Vt+MS_`;bas-svPV|3POQi8G~?f^KOx4hg1He+Wd*s3Hl1{TfJS-+zv6vc zPoKiwr?7wECbub(IdB)9f_!kmUjBR*KY_z4E8_QA9xSr#G&@i5y^H`jB^I{|akh>W z%Cn3luOVY|8P>u>e^~#{$kmgX&-q>k{#pFbm2({(rtG<%nb0UCQ0%{Cy`F&~7}*we z@Of>ND_)V&XwN_+n~KjVorUQWZ*B6cld7ymQl{;rwlHl34K#}2YWxE+4CX@P&u6AfCda`&ZT1MOY69e-L@gNcAvwx8%1Z7lB4zc=_Cpt~&s ze%?;){1DB(PSK!^za967qF?lIjB~&06}Lf`cgh2qUiI^|$-VCTNE=hp&Ij}^A9&|* zQQrSqo3gn#_=z9j(y6f@T|OkJYv(fjwpz}$*U$|nLH2F zPNMuTS4g8 z*^hOlRh6~Mk}58;d477R>F^~aLO$dOXmhA*6zwIaHK()t2zKjo?j^NOJbh_=+71xg zO{Mgp7x?Z-1MKzoQ<+V2g#|e}|JawOPJZBL{o~PYdtWDX?jl##!Aiq|w>)vGJLipp zBK1xGhcvgSsQ;rn>+`>UmxlID{<~}7{y>SO^cyktN^Fsz!Z|B4?p*RKQG*8}SYBt{ zuFO{vJ?jgL{gUzYsnv(io}c0vlCp#*1vE?}KL^UZ&VF^TK+D;40CxX%j);%dCt;Z{ zAeMXC9JPWvKGwsCxx4w2iv_wNGG8l16AVI93rmc^c1>r(P||YE zpXa+=-&k995hfykL^J5S&vJF^ljR&`FE#ppNMM3%Omc!F)Mn{{&Ip#)JegbEJxud2 zn`wDVB~DMii5|H%m~51YeU1juNG3!+&?*uC#q@)z8q~`4yEL5I8}PtyA1IZ=52P$x zX)KhZt z7czUXBsy-8d`GVQ`90`wIh(Xt7v5j7h0t&ET~2M!Tb~4rN-xtK@8@mB*c(6QTwOS- z%9445_WY|cfm4?$nX$72&{~^mu}an^x^Da%=UU6YI;ur3+9L6I>raW5!=-Nzy(F2Z zwZlg7aM3NN5b{K|FB>s4R}|&Lr32_Ys{wwkECxo|rV@;5aHB25iUs7(6@dDpjN{Y%?C~UGp>*Q}K?)KKk64 zAn;@-dER}QG0L${jQ1cR75eM3-~ZTltTQ8%sm9x4Y`ve@ekMuvpA#Rh51@s6;6^&Q z!&M7^b%cea7FlZkPV9}@!bPBBfB&~XvGlE2T7V?IpM~OBmuK;OSt{~N`rL5c_I^de z9n*=@p|l;d`b_YIn8Aem1t7pp0=2-MCTIcJHlY z6x+mNLgi{JpwP)y(yzAFL2A#>bI&EwZE`PGvd*FQ!rx~6bUN&+Ij3)L;=595L#G;m8*^e?ap1`J5w7-q)*iUT_W9w8 z&xS-`i++HpWzY-a-)CWd0(pLW$A85P{Dy9r-=uPekNpN^yA}pJ7yWTZ>3iw4d6+IK zF%1XXkGcJm{0*vhSG5R1ySW;jctk9O==1-Mk?=Bl<{HE1p_@tx1s^+GoczYxj#B=i=kwQvEPrOt`<4W*pJw zbNjEqpr7B|Llc%m{V*QssV)im;pb00LUob=yFaU4`P_}ywU zt*QZl-bUsmh@L&zQaX4uHL&7YD(BOb9hH;;y;O-b-_O$4EFi1vCrMlz`dN|u?}HNO^aFQV{UZg_yy%nf>IXpulip!cR8|vNu7P*; zQye@}Qmj%(TB6`5E=c~w=LITF266XJ6X5xA7!OM1SE=~N*o3EP5Qqx!W<_+EMSLGo zqkC18AQ=0AK9=hgGQtrTovYc5^?Z^RLX?hlO-j&e1MXTTbfm>MS^=}!p>C>icUKdZ zBcNOb(6IJ!kq*e7N8Fx!!kPyn+2B2^2hd00+W^PUA&+S63jFE)bP5Tv+L5l~n(pu? zbeO|+K{{?pEow3?j0+dGVu)a6(0r{1Uj7{3 zxSsZ|BdMk>1-S}-;+`pk{Q5>H=tLRx+YqeenaSRsEX@gtPzz>j1A9g!C9kGtspY(- z%YL>NkVDE2z@}*;Q{=&5)yS;NupAmmibGUE4qte7aY6PcnXJgw>}ad(SW;@HtNurF ziV0_yHz=;Di%Tki6DW^tjkL`t%Ktct(ay zvuAOYoCu!Pm~@P5CIjk$bp`_iv{^l*Au{fB8mJK1>Macv?GL)**8*+JNvySIH5Y7i#1;!%NT!efc z;Z0*AOM&1VpR+6wIQxBM{xf`8T1V@#e<#QL}=YRwMkWG8%1(Fgj{iX)N zup{Txko(DqJWf=#Oi?Z!nra-?C{);TP`w|4>L+EKx1&P3swX<*#_50F!lD_$nQyuK??!UwA-{y)^QmMxoK1xIJ~uML{u;5!Z5tQyEL>;KaUd!_9FP zl2$QOI6V1`QdF|8gkdZsSpUqCjSBu(1H)r*vL#PEy)@Px>5TIk7_9o#Bj zzD&<1_k(ejk%qO6ak=GMmG5b7LTAA^KKq-Ey#z8(2wy2;Ot^oZI(MG@)~iY$RAnJt zu`ioyvR?Vws_tuK9hDqmel+)bP0kyxJV{7t=&3{b(@Hs1fs$9n45aq)IKknZa2H*7 z^P-ZDyOMdMj&-9{(-?dqo5I3Gy=K$!L%q>3^0N~o^2i0^_@^2nQv>S4B&=5_8^a^V zaY!NjyA5QgO&r#^CJcp&=!))MZ*CC&hvLEzWU*!IO=aYo{_yG+53H$XOAIQWnG`uD zLuuwTY6e8N^m5^AHQa}Y5Z#SdbEY;+x{oW?g;ie4CNYomRyQd2mv^L}T!>a5<*wTh>@>Qtwp~nejn`~DcZJI+QC-xU zoxz=5z0k%1;jBrGI%Th~FQElrAPr?E-Fv9|o09dPk=?>f)jFKL8PK|;w(cVDq>YWP zEfL7RGBv|<>f4IccND3wCi*V8`>#a$FPZu&a{V`W`me+Kuf_CJ)%IV%?5ByL^#3Q{ z&uBM5|34IKI>0_Tz{5OngXe#6w*N6;;5PH%9n%56%RaWA{wJ4%515Apdj`a62bp<> zM12OuV+QZ^55ATkViO(UWgg}%9C}kb^r~=BiDyWIXZWM&kb>Q?dd$#W`4KU|2#4qh zz;sZ>ZqS5h#Kdk$&1c9AHmDUdtmHE)CqH0RIAZEE;t(^+RXF+*FlJyk;?6Vn{&MsO zZ0HwY)b4Va!F1#s^N5$-s9(&mPa*Lu4>4SxXm~l|3?PR2jB1J!Q|(4#0i$lFME^-r zA~Q(2O+PHOdcVN((R8zqi>%+yx4PA5u&+jI zZ?)Fm8m-+`n!Bnrx0PvZE7!Q)Z+NTE@K(R!nO40sZF(n~bq_b_9H`UYU#q>pPJ3UC z_UeU>J7qcy%%`ks9)BNcS^GDOn z?oKkjHNoWO1e2?M#vd12e^_AscAnLnc~-CISiYWX`D%{k^H~<37unpMYJYdSv=Om2vbAM@`Qp{{SI=yP zj6WN*eEt0G$9EPX6FU%)-ho>hWTW!yzXBIo73<0umM-=@eG&niY^` zlG(|vuCl_x(X^Fob@=i{8+M5vWf7Bz=#aHGTNA;fZQyfbfueI8Z^639n`(DI%w^-^ zl`=@!u)r~Xf920-xd$Ab+S&PJY%K0H8a_J8uN3^_!K1_NV$*e#*Y*6|)XpiW=9H`*`Xx7W%v@7{XDma1?v0a%(K6rI&1!a YpWXKgmku8Vj|K)Vje`mzEKCg608Q#dYybcN diff --git a/PlotSquared/doc/serialized-form.html b/PlotSquared/doc/serialized-form.html deleted file mode 100644 index 68dd2385b..000000000 --- a/PlotSquared/doc/serialized-form.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - Serialized Form - - - - - - - -
- - - - - -
- - -
-

Serialized Form

-
-
- -
- -
- - - - - -
- - - - diff --git a/PlotSquared/doc/stylesheet.css b/PlotSquared/doc/stylesheet.css deleted file mode 100644 index 71eef3dde..000000000 --- a/PlotSquared/doc/stylesheet.css +++ /dev/null @@ -1,569 +0,0 @@ -/* Javadoc style sheet */ -/* -Overall document style -*/ -body { - background-color: #ffffff; - color: #353833; - font-family: Arial, Helvetica, sans-serif; - font-size: 76%; - margin: 0; -} - -a:link, a:visited { - text-decoration: none; - color: #4c6b87; -} - -a:hover, a:focus { - text-decoration: none; - color: #bb7a2a; -} - -a:active { - text-decoration: none; - color: #4c6b87; -} - -a[name] { - color: #353833; -} - -a[name]:hover { - text-decoration: none; - color: #353833; -} - -pre { - font-size: 1.3em; -} - -h1 { - font-size: 1.8em; -} - -h2 { - font-size: 1.5em; -} - -h3 { - font-size: 1.4em; -} - -h4 { - font-size: 1.3em; -} - -h5 { - font-size: 1.2em; -} - -h6 { - font-size: 1.1em; -} - -ul { - list-style-type: disc; -} - -code, tt { - font-size: 1.2em; -} - -dt code { - font-size: 1.2em; -} - -table tr td dt code { - font-size: 1.2em; - vertical-align: top; -} - -sup { - font-size: .6em; -} - -/* -Document title and Copyright styles -*/ -.clear { - clear: both; - height: 0px; - overflow: hidden; -} - -.aboutLanguage { - float: right; - padding: 0px 21px; - font-size: .8em; - z-index: 200; - margin-top: -7px; -} - -.legalCopy { - margin-left: .5em; -} - -.bar a, .bar a:link, .bar a:visited, .bar a:active { - color: #FFFFFF; - text-decoration: none; -} - -.bar a:hover, .bar a:focus { - color: #bb7a2a; -} - -.tab { - background-color: #0066FF; - background-image: url(resources/titlebar.gif); - background-position: left top; - background-repeat: no-repeat; - color: #ffffff; - padding: 8px; - width: 5em; - font-weight: bold; -} - -/* -Navigation bar styles -*/ -.bar { - background-image: url(resources/background.gif); - background-repeat: repeat-x; - color: #FFFFFF; - padding: .8em .5em .4em .8em; - height: auto; /*height:1.8em;*/ - font-size: 1em; - margin: 0; -} - -.topNav { - background-image: url(resources/background.gif); - background-repeat: repeat-x; - color: #FFFFFF; - float: left; - padding: 0; - width: 100%; - clear: right; - height: 2.8em; - padding-top: 10px; - overflow: hidden; -} - -.bottomNav { - margin-top: 10px; - background-image: url(resources/background.gif); - background-repeat: repeat-x; - color: #FFFFFF; - float: left; - padding: 0; - width: 100%; - clear: right; - height: 2.8em; - padding-top: 10px; - overflow: hidden; -} - -.subNav { - background-color: #dee3e9; - border-bottom: 1px solid #9eadc0; - float: left; - width: 100%; - overflow: hidden; -} - -.subNav div { - clear: left; - float: left; - padding: 0 0 5px 6px; -} - -ul.navList, ul.subNavList { - float: left; - margin: 0 25px 0 0; - padding: 0; -} - -ul.navList li { - list-style: none; - float: left; - padding: 3px 6px; -} - -ul.subNavList li { - list-style: none; - float: left; - font-size: 90%; -} - -.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { - color: #FFFFFF; - text-decoration: none; -} - -.topNav a:hover, .bottomNav a:hover { - text-decoration: none; - color: #bb7a2a; -} - -.navBarCell1Rev { - background-image: url(resources/tab.gif); - background-color: #a88834; - color: #FFFFFF; - margin: auto 5px; - border: 1px solid #c9aa44; -} - -/* -Page header and footer styles -*/ -.header, .footer { - clear: both; - margin: 0 20px; - padding: 5px 0 0 0; -} - -.indexHeader { - margin: 10px; - position: relative; -} - -.indexHeader h1 { - font-size: 1.3em; -} - -.title { - color: #2c4557; - margin: 10px 0; -} - -.subTitle { - margin: 5px 0 0 0; -} - -.header ul { - margin: 0 0 25px 0; - padding: 0; -} - -.footer ul { - margin: 20px 0 5px 0; -} - -.header ul li, .footer ul li { - list-style: none; - font-size: 1.2em; -} - -/* -Heading styles -*/ -div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { - background-color: #dee3e9; - border-top: 1px solid #9eadc0; - border-bottom: 1px solid #9eadc0; - margin: 0 0 6px -8px; - padding: 2px 5px; -} - -ul.blockList ul.blockList ul.blockList li.blockList h3 { - background-color: #dee3e9; - border-top: 1px solid #9eadc0; - border-bottom: 1px solid #9eadc0; - margin: 0 0 6px -8px; - padding: 2px 5px; -} - -ul.blockList ul.blockList li.blockList h3 { - padding: 0; - margin: 15px 0; -} - -ul.blockList li.blockList h2 { - padding: 0px 0 20px 0; -} - -/* -Page layout container styles -*/ -.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { - clear: both; - padding: 10px 20px; - position: relative; -} - -.indexContainer { - margin: 10px; - position: relative; - font-size: 1.0em; -} - -.indexContainer h2 { - font-size: 1.1em; - padding: 0 0 3px 0; -} - -.indexContainer ul { - margin: 0; - padding: 0; -} - -.indexContainer ul li { - list-style: none; -} - -.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { - font-size: 1.1em; - font-weight: bold; - margin: 10px 0 0 0; - color: #4E4E4E; -} - -.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { - margin: 10px 0 10px 20px; -} - -.serializedFormContainer dl.nameValue dt { - margin-left: 1px; - font-size: 1.1em; - display: inline; - font-weight: bold; -} - -.serializedFormContainer dl.nameValue dd { - margin: 0 0 0 1px; - font-size: 1.1em; - display: inline; -} - -/* -List styles -*/ -ul.horizontal li { - display: inline; - font-size: 0.9em; -} - -ul.inheritance { - margin: 0; - padding: 0; -} - -ul.inheritance li { - display: inline; - list-style: none; -} - -ul.inheritance li ul.inheritance { - margin-left: 15px; - padding-left: 15px; - padding-top: 1px; -} - -ul.blockList, ul.blockListLast { - margin: 10px 0 10px 0; - padding: 0; -} - -ul.blockList li.blockList, ul.blockListLast li.blockList { - list-style: none; - margin-bottom: 25px; -} - -ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { - padding: 0px 20px 5px 10px; - border: 1px solid #9eadc0; - background-color: #f9f9f9; -} - -ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { - padding: 0 0 5px 8px; - background-color: #ffffff; - border: 1px solid #9eadc0; - border-top: none; -} - -ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { - margin-left: 0; - padding-left: 0; - padding-bottom: 15px; - border: none; - border-bottom: 1px solid #9eadc0; -} - -ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { - list-style: none; - border-bottom: none; - padding-bottom: 0; -} - -table tr td dl, table tr td dl dt, table tr td dl dd { - margin-top: 0; - margin-bottom: 1px; -} - -/* -Table styles -*/ -.contentContainer table, .classUseContainer table, .constantValuesContainer table { - border-bottom: 1px solid #9eadc0; - width: 100%; -} - -.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table { - width: 100%; -} - -.contentContainer .description table, .contentContainer .details table { - border-bottom: none; -} - -.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td { - vertical-align: top; - padding-right: 20px; -} - -.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast, .constantValuesContainer ul li table th.colLast, -.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast, .constantValuesContainer ul li table td.colLast, -.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne, -.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne { - padding-right: 3px; -} - -.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption { - position: relative; - text-align: left; - background-repeat: no-repeat; - color: #FFFFFF; - font-weight: bold; - clear: none; - overflow: hidden; - padding: 0px; - margin: 0px; -} - -caption a:link, caption a:hover, caption a:active, caption a:visited { - color: #FFFFFF; -} - -.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span { - white-space: nowrap; - padding-top: 8px; - padding-left: 8px; - display: block; - float: left; - background-image: url(resources/titlebar.gif); - height: 18px; -} - -.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd { - width: 10px; - background-image: url(resources/titlebar_end.gif); - background-repeat: no-repeat; - background-position: top right; - position: relative; - float: left; -} - -ul.blockList ul.blockList li.blockList table { - margin: 0 0 12px 0px; - width: 100%; -} - -.tableSubHeadingColor { - background-color: #EEEEFF; -} - -.altColor { - background-color: #eeeeef; -} - -.rowColor { - background-color: #ffffff; -} - -.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td { - text-align: left; - padding: 3px 3px 3px 7px; -} - -th.colFirst, th.colLast, th.colOne, .constantValuesContainer th { - background: #dee3e9; - border-top: 1px solid #9eadc0; - border-bottom: 1px solid #9eadc0; - text-align: left; - padding: 3px 3px 3px 7px; -} - -td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { - font-weight: bold; -} - -td.colFirst, th.colFirst { - border-left: 1px solid #9eadc0; - white-space: nowrap; -} - -td.colLast, th.colLast { - border-right: 1px solid #9eadc0; -} - -td.colOne, th.colOne { - border-right: 1px solid #9eadc0; - border-left: 1px solid #9eadc0; -} - -table.overviewSummary { - padding: 0px; - margin-left: 0px; -} - -table.overviewSummary td.colFirst, table.overviewSummary th.colFirst, -table.overviewSummary td.colOne, table.overviewSummary th.colOne { - width: 25%; - vertical-align: middle; -} - -table.packageSummary td.colFirst, table.overviewSummary th.colFirst { - width: 25%; - vertical-align: middle; -} - -/* -Content styles -*/ -.description pre { - margin-top: 0; -} - -.deprecatedContent { - margin: 0; - padding: 10px 0; -} - -.docSummary { - padding: 0; -} - -/* -Formatting effect styles -*/ -.sourceLineNo { - color: green; - padding: 0 30px 0 0; -} - -h1.hidden { - visibility: hidden; - overflow: hidden; - font-size: .9em; -} - -.block { - display: block; - margin: 3px 0 0 0; -} - -.strong { - font-weight: bold; -} From 7b83ea241310f3710894b01cad49d1da82ab8489 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Thu, 20 Nov 2014 00:00:38 +0100 Subject: [PATCH 7/8] More documentation :_: --- .../plot/commands/Command.java | 75 ++++++++++++------ .../plot/commands/CommandPermission.java | 4 +- .../plot/commands/MainCommand.java | 3 + .../plot/commands/SubCommand.java | 79 +++++++++++++++---- .../intellectualcrafters/plot/config/C.java | 30 +++++-- .../plot/config/ConfigurationNode.java | 5 ++ .../plot/config/Settings.java | 25 ++++++ .../intellectualcrafters/plot/util/PWE.java | 3 +- .../plot/util/PlotHelper.java | 19 +++++ .../plot/util/SchematicHandler.java | 7 +- .../plot/util/SetBlockFast.java | 22 ++++++ .../plot/util/StringComparison.java | 2 + .../plot/util/UUIDHandler.java | 6 +- .../plot/uuid/PlotUUIDSaver.java | 3 + .../plot/uuid/UUIDSaver.java | 40 ++++++++++ .../plot/uuid/UUIDSet.java | 19 +++++ 16 files changed, 291 insertions(+), 51 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Command.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Command.java index 214d721b6..dae1897d7 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Command.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Command.java @@ -25,6 +25,7 @@ package com.intellectualcrafters.plot.commands; * Created by Citymonstret on 2014-08-03. * * @author Citymonstret + * @author Empire92 */ public enum Command { @@ -37,6 +38,9 @@ public enum Command { // - /plot rate // - /plot list + /** + * + */ SWAP("swap"), /** * @@ -58,7 +62,13 @@ public enum Command { * */ PASTE("paste"), + /** + * + */ CLIPBOARD("clipboard", "cboard"), + /** + * + */ COPY("copy"), /** * @@ -128,26 +138,44 @@ public enum Command { * */ OP("op", "admin"), + /** + * + */ DEOP("deop", "deadmin"), + /** + * + */ BAN("ban", "block"), + /** + * + */ UNBAN("unban", "unblock"), + /** + * + */ DATABASE("database", "convert"), + /** + * + */ TP("tp", "tp"); - /** - * - */ - private String command; - /** - * - */ - private String alias; - /** - * - */ - private CommandPermission permission; /** - * @param command + * Command + */ + private final String command; + + /** + * Alias + */ + private final String alias; + + /** + * Permission Node + */ + private final CommandPermission permission; + + /** + * @param command Command "name" (/plot [cmd]) */ Command(final String command) { this.command = command; @@ -156,8 +184,8 @@ public enum Command { } /** - * @param command - * @param permission + * @param command Command "name" (/plot [cmd]) + * @param permission Command Permission Node */ Command(final String command, final CommandPermission permission) { this.command = command; @@ -166,8 +194,8 @@ public enum Command { } /** - * @param command - * @param alias + * @param command Command "name" (/plot [cmd]) + * @param alias Command Alias */ Command(final String command, final String alias) { this.command = command; @@ -176,9 +204,9 @@ public enum Command { } /** - * @param Command - * @param alias - * @param permission + * @param command Command "name" (/plot [cmd]) + * @param alias Command Alias + * @param permission Required Permission Node */ Command(final String command, final String alias, final CommandPermission permission) { this.command = command; @@ -187,21 +215,22 @@ public enum Command { } /** - * @return + * @return command */ public String getCommand() { return this.command; } /** - * @return + * @return alias */ public String getAlias() { return this.alias; } /** - * @return + * @return permission object + * @see com.intellectualcrafters.plot.commands.CommandPermission */ public CommandPermission getPermission() { return this.permission; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/CommandPermission.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/CommandPermission.java index aae7d4608..df4aa3a41 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/CommandPermission.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/CommandPermission.java @@ -32,9 +32,9 @@ import org.bukkit.entity.Player; public class CommandPermission { /** - * + * Permission Node */ - public String permission; + public final String permission; /** * @param permission Command Permission diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/MainCommand.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/MainCommand.java index b87394576..39dd43acd 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/MainCommand.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/MainCommand.java @@ -43,6 +43,9 @@ import java.util.List; */ public class MainCommand implements CommandExecutor, TabCompleter { + /** + * Main Permission Node + */ public static final String MAIN_PERMISSION = "plots.use"; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SubCommand.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SubCommand.java index 9658f4ba7..11616b1d6 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SubCommand.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SubCommand.java @@ -30,32 +30,37 @@ import org.bukkit.entity.Player; * * @author Citymonstret */ -@SuppressWarnings({"deprecation", "unused", "javadoc"}) +@SuppressWarnings({"deprecation", "unused"}) public abstract class SubCommand { - public boolean isPlayer; + /** * Command */ - public String cmd; + public final String cmd; /** * Permission node */ - public CommandPermission permission; + public final CommandPermission permission; /** * Simple description */ - public String description; + public final String description; /** * Alias */ - public String alias; - + public final String alias; /** * Command usage */ - public String usage; - - public CommandCategory category; + public final String usage; + /** + * The category + */ + public final CommandCategory category; + /** + * Is this a player-online command? + */ + public boolean isPlayer; /** * @param cmd Command /plot {cmd} <-- That! @@ -100,6 +105,11 @@ public abstract class SubCommand { */ public abstract boolean execute(final Player plr, final String... args); + /** + * Execute the command as console + * + * @param args Arguments + */ public void executeConsole(final String... args) { this.execute(null, args); } @@ -107,23 +117,64 @@ public abstract class SubCommand { /** * Send a message * - * @param plr - * @param c - * @param args + * @param plr Player who will receive the mssage + * @param c Caption + * @param args Arguments (%s's) + * @see com.intellectualcrafters.plot.util.PlayerFunctions#sendMessage(org.bukkit.entity.Player, com.intellectualcrafters.plot.config.C, String...) */ public boolean sendMessage(final Player plr, final C c, final String... args) { PlayerFunctions.sendMessage(plr, c, args); return true; } + /** + * CommandCategory + * + * @author Citymonstret + * @author Empire92 + */ public enum CommandCategory { + /** + * Claiming Commands + *

+ * Such as: /plot claim + */ CLAIMING("Claiming"), + /** + * Teleportation Commands + *

+ * Such as: /plot visit + */ TELEPORT("Teleportation"), + /** + * Action Commands + *

+ * Such as: /plot clear + */ ACTIONS("Actions"), + /** + * Information Commands + *

+ * Such as: /plot info + */ INFO("Information"), + /** + * Debug Commands + *

+ * Such as: /plot debug + */ DEBUG("Debug"); - private String name; + /** + * The category name (Readable) + */ + private final String name; + + /** + * Constructor + * + * @param name readable name + */ CommandCategory(final String name) { this.name = name; } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java index 224eb31ca..16d0d6f7e 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java @@ -367,13 +367,6 @@ public enum C { HELP_INFO("&6You have to specify a category"), HELP_INFO_ITEM("&6/plots help %category% &c- &6%category_desc%"), HELP_ITEM("&6%usage% [%alias%]\n &c%desc%\n"), - /* - HELP_CATEGORY("&6Current Category&c: &l%category%"), - HELP_INFO("&6You need to specify a help category"), - HELP_INFO_ITEM("&6/plots help %category% &c- &6%category_desc%"), - HELP_PAGE("&c>> &6%usage% &c[&6%alias%&c]\n" + "&c>> &6%desc%\n"), - HELP_ITEM_SEPARATOR("&c%lines"), - HELP_HEADER("&c(Page &6%cur&c/&6%max&c) &6Help for Plots"),*/ /* * Direction */ @@ -382,13 +375,33 @@ public enum C { * Custom */ CUSTOM_STRING("-"); - static TranslationLanguage lang = new TranslationLanguage("PlotSquared", "this", "use"); + + /** + * Special Language + * + * @see com.intellectualsites.translation.TranslationLanguage + */ + protected static TranslationLanguage lang = new TranslationLanguage("PlotSquared", "this", "use"); + + /** + * The TranslationManager + * + * @see com.intellectualsites.translation.TranslationManager + */ private static TranslationManager manager; + + /** + * The default file + * + * @see com.intellectualsites.translation.TranslationFile + */ private static TranslationFile defaultFile; + /** * Default */ private String d; + /** * Translated */ @@ -472,6 +485,7 @@ public enum C { /** * @return translated and color decoded + * @see org.bukkit.ChatColor#translateAlternateColorCodes(char, String) */ public String translated() { return ChatColor.translateAlternateColorCodes('&', this.s()); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/ConfigurationNode.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/ConfigurationNode.java index a0b45f773..11b6851ed 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/ConfigurationNode.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/ConfigurationNode.java @@ -26,6 +26,11 @@ import org.apache.commons.lang.StringUtils; import java.util.Arrays; +/** + * Configuration Node + * + * @author Empire92 + */ public class ConfigurationNode { private final String constant; private final Object default_value; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java index 4544c7d48..158418483 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java @@ -29,66 +29,91 @@ package com.intellectualcrafters.plot.config; */ public class Settings { + /** + * Mob Cap Enabled + */ public static boolean MOB_CAP_ENABLED = false; + + /** + * The Mob Cap + */ public static int MOB_CAP = 20; + /** + * Display titles + */ public static boolean TITLES = true; + /** * Schematic Save Path */ public static String SCHEMATIC_SAVE_PATH = "/var/www/schematics"; + /** * Max allowed plots */ public static int MAX_PLOTS = 20; + /** * WorldGuard region on claimed plots */ public static boolean WORLDGUARD = false; + /** * metrics */ public static boolean METRICS = true; + /** * plot specific resource pack */ public static String PLOT_SPECIFIC_RESOURCE_PACK = ""; + /** * Kill road mobs? */ public static boolean KILL_ROAD_MOBS; + /** * Default kill road mobs: true */ public static boolean KILL_ROAD_MOBS_DEFAULT = true; + /** * mob pathfinding? */ public static boolean MOB_PATHFINDING; + /** * Default mob pathfinding: true */ public static boolean MOB_PATHFINDING_DEFAULT = true; + /** * Delete plots on ban? */ public static boolean DELETE_PLOTS_ON_BAN = false; + /** * Verbose? */ public static boolean DEBUG = true; + /** * Auto clear enabled */ public static boolean AUTO_CLEAR = false; + /** * Days until a plot gets cleared */ public static int AUTO_CLEAR_DAYS = 365; + /** * API Location */ public static String API_URL = "http://www.intellectualsites.com/minecraft.php"; + /** * Use the custom API */ diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java index b663f391f..442cb8af6 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PWE.java @@ -39,10 +39,11 @@ import org.bukkit.entity.Player; /** * @author Citymonstret + * @author Empire92 */ +@SuppressWarnings("ALL") public class PWE { - @SuppressWarnings("deprecation") public static void setMask(final Player p, final Location l) { try { LocalSession s; diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java index c12637607..25d921c53 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java @@ -830,6 +830,13 @@ public class PlotHelper { return 64; } + /** + * Get plot home + * + * @param w World in which the plot is located + * @param plotid Plot ID + * @return Home Location + */ public static Location getPlotHome(final World w, final PlotId plotid) { if (getPlot(w, plotid).settings.getPosition() == PlotHomePosition.DEFAULT) { @@ -849,10 +856,22 @@ public class PlotHelper { } } + /** + * Get the plot home + * @param w World + * @param plot Plot Object + * @return Plot Home Location + * @see #getPlotHome(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) + */ public static Location getPlotHome(final World w, final Plot plot) { return getPlotHome(w, plot.id); } + /** + * Refresh the plot chunks + * @param world World in which the plot is located + * @param plot Plot Object + */ public static void refreshPlotChunks(final World world, final Plot plot) { final int bottomX = getPlotBottomLoc(world, plot.id).getBlockX(); final int topX = getPlotTopLoc(world, plot.id).getBlockX(); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SchematicHandler.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SchematicHandler.java index 6e2c5c1c0..aea945977 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SchematicHandler.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SchematicHandler.java @@ -45,7 +45,6 @@ import java.util.zip.GZIPOutputStream; * @author Citymonstret * @author Empire92 */ -@SuppressWarnings({"all"}) public class SchematicHandler { /** * Paste a schematic @@ -125,7 +124,9 @@ public class SchematicHandler { { final File parent = new File(JavaPlugin.getPlugin(PlotMain.class).getDataFolder() + File.separator + "schematics"); if (!parent.exists()) { - parent.mkdir(); + if (!parent.mkdir()) { + throw new RuntimeException("Could not create schematic parent directory"); + } } } final File file = new File(JavaPlugin.getPlugin(PlotMain.class).getDataFolder() + File.separator + "schematics" + File.separator + name + ".schematic"); @@ -252,6 +253,7 @@ public class SchematicHandler { * @param id plot * @return tag */ + @SuppressWarnings("deprecation") public static CompoundTag getCompoundTag(final World world, final PlotId id) { if (!PlotMain.getPlots(world).containsKey(id)) { @@ -307,6 +309,7 @@ public class SchematicHandler { final Block block = world.getBlockAt(new Location(world, pos1.getBlockX() + x, y, pos1.getBlockZ() + z)); + @SuppressWarnings("deprecation") final int id2 = block.getTypeId(); if (id2 > 255) { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SetBlockFast.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SetBlockFast.java index 6d080f717..fbbc82e9f 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SetBlockFast.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/SetBlockFast.java @@ -30,6 +30,8 @@ import static com.intellectualcrafters.plot.util.ReflectionUtils.getRefClass; /** * SetBlockFast class
* Used to do fast world editing + * + * @author Empire92 */ public class SetBlockFast { @@ -43,6 +45,11 @@ public class SetBlockFast { private static RefMethod methodA; private static RefMethod methodGetById; + /** + * Constructor + * + * @throws NoSuchMethodException + */ public SetBlockFast() throws NoSuchMethodException { methodGetHandle = classCraftWorld.getMethod("getHandle"); methodGetChunkAt = classWorld.getMethod("getChunkAt", int.class, int.class); @@ -50,6 +57,17 @@ public class SetBlockFast { methodGetById = classBlock.getMethod("getById", int.class); } + /** + * Set the block at the location + * @param world World in which the block should be set + * @param x X Coordinate + * @param y Y Coordinate + * @param z Z Coordinate + * @param blockId Block ID + * @param data Block Data Value + * @return true + * @throws NoSuchMethodException + */ public static boolean set(final org.bukkit.World world, final int x, final int y, final int z, final int blockId, final byte data) throws NoSuchMethodException { final Object w = methodGetHandle.of(world).call(); @@ -59,6 +77,10 @@ public class SetBlockFast { return true; } + /** + * Update chunks + * @param player Player whose chunks we're updating + */ public static void update(final org.bukkit.entity.Player player) { final int distance = Bukkit.getViewDistance() + 1; for (int cx = -distance; cx < distance; cx++) { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/StringComparison.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/StringComparison.java index 58f011d70..487126a78 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/StringComparison.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/StringComparison.java @@ -36,12 +36,14 @@ public class StringComparison { * Best Match */ private String bestMatch; + /** * Match Value *

* Can be checked for low match (< .25 or something) */ private double match = 0; + /** * The actual object */ diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/UUIDHandler.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/UUIDHandler.java index cd3b23a8c..b849b8f10 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/UUIDHandler.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/UUIDHandler.java @@ -71,7 +71,8 @@ public class UUIDHandler { private static boolean online = Bukkit.getServer().getOnlineMode(); /** - * Map containing names and UUID's + * Map containing names and UUIDs + * @see com.google.common.collect.BiMap */ private static BiMap uuidMap = HashBiMap.create(new HashMap()); @@ -79,6 +80,7 @@ public class UUIDHandler { * Get the map containing all names/uuids * * @return map with names + uuids + * @see com.google.common.collect.BiMap */ public static BiMap getUuidMap() { return uuidMap; @@ -89,6 +91,7 @@ public class UUIDHandler { * * @param uuid to check * @return true of the uuid is cached + * @see com.google.common.collect.BiMap#containsValue(Object) */ public static boolean uuidExists(final UUID uuid) { return uuidMap.containsValue(uuid); @@ -99,6 +102,7 @@ public class UUIDHandler { * * @param name to check * @return true of the name is cached + * @see com.google.common.collect.BiMap#containsKey(Object) */ public static boolean nameExists(final StringWrapper name) { return uuidMap.containsKey(name); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java index 97ca78944..2258effb5 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/PlotUUIDSaver.java @@ -38,6 +38,9 @@ import java.util.UUID; /** * Plot UUID Saver/Fetcher + * + * @author Citymonstret + * @author Empire92 */ public class PlotUUIDSaver implements UUIDSaver { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java index f84b8c64a..d0c4ee827 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSaver.java @@ -30,17 +30,57 @@ import java.util.UUID; * @author Citymonstret */ public interface UUIDSaver { + + /** + * Populate the default list + */ public void globalPopulate(); + /** + * Save the UUIDs + * + * @param biMap Map containing names and UUIDs + */ public void globalSave(final BiMap biMap); + /** + * Save a single UUIDSet + * + * @param set Set to save + */ public void save(final UUIDSet set); + /** + * Get a single UUIDSet + * + * @param name Username + * @return UUID Set + */ public UUIDSet get(final String name); + /** + * Get a single UUIDSet + * + * @param uuid UUID + * @return UUID Set + */ public UUIDSet get(final UUID uuid); + /** + * Fetch uuid from mojang servers + * + * @param name Username + * @return uuid + * @throws Exception + */ public UUID mojangUUID(final String name) throws Exception; + /** + * Fetch username from mojang servers + * + * @param uuid UUID + * @return username + * @throws Exception + */ public String mojangName(final UUID uuid) throws Exception; } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java index 82e1554c2..8b8071bec 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/uuid/UUIDSet.java @@ -27,9 +27,23 @@ import java.util.UUID; * @author Citymonstret */ public class UUIDSet { + + /** + * Player Name + */ private final String name; + + /** + * Player UUID + */ private final UUID uuid; + /** + * Constructor + * + * @param name Username + * @param uuid UUID + */ public UUIDSet(final String name, final UUID uuid) { this.name = name; this.uuid = uuid; @@ -40,6 +54,11 @@ public class UUIDSet { return getName(); } + /** + * Return the name + * + * @return Name + */ public String getName() { return this.name; } From ef7e02193795008d644197d789ab4477def490d9 Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Thu, 20 Nov 2014 19:29:05 +0100 Subject: [PATCH 8/8] Some additional JavaDoc's (PlotMain.class) Added option to teleport to road on login --- .../intellectualcrafters/plot/PlotMain.java | 114 +++++++++++++----- .../plot/api/PlotAPI.java | 7 ++ .../intellectualcrafters/plot/config/C.java | 1 + .../plot/config/Settings.java | 5 + .../plot/listeners/PlayerEvents.java | 8 +- .../plot/util/PlotHelper.java | 11 ++ 6 files changed, 113 insertions(+), 33 deletions(-) diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/PlotMain.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/PlotMain.java index c8024e3f3..4b1388832 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/PlotMain.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/PlotMain.java @@ -73,6 +73,9 @@ import java.util.concurrent.TimeUnit; @SuppressWarnings("unused") public class PlotMain extends JavaPlugin { + /** + * Permission that allows for "everything" + */ public static final String ADMIN_PERMISSION = "plots.admin"; /** @@ -190,7 +193,7 @@ public class PlotMain extends JavaPlugin { e.printStackTrace(); } } - }, 0l, /*12 * 60 * 60 * 20l*/ 86_40_00L); + }, 0l, 86_40_00L); } /** @@ -272,6 +275,7 @@ public class PlotMain extends JavaPlugin { * Set the uuid saver * * @param saver new saver + * @see com.intellectualcrafters.plot.uuid.UUIDSaver */ public static void setUUIDSaver(final UUIDSaver saver) { uuidSaver = saver; @@ -370,6 +374,12 @@ public class PlotMain extends JavaPlugin { return new HashSet<>(myplots); } + /** + * Get plots for the specified world + * + * @param world A world, in which you want to search for plots + * @return HashMap containing Plot IDs and Plot Objects + */ public static HashMap getPlots(final String world) { if (plots.containsKey(world)) { return plots.get(world); @@ -477,6 +487,13 @@ public class PlotMain extends JavaPlugin { return (values.toArray(new Plot[values.size()])); } + /** + * Remove a plot + * @param world The Plot World + * @param id The Plot ID + * @param callEvent Whether or not to call the PlotDeleteEvent + * @return true if successful, false if not + */ public static boolean removePlot(final String world, final PlotId id, final boolean callEvent) { if (callEvent) { final PlotDeleteEvent event = new PlotDeleteEvent(world, id); @@ -593,7 +610,12 @@ public class PlotMain extends JavaPlugin { } } - private static double getJavaVersion() { + /** + * Get the java version + * + * @return Java Version as a double + */ + public static double getJavaVersion() { return Double.parseDouble(System.getProperty("java.specification.version")); } @@ -621,27 +643,12 @@ public class PlotMain extends JavaPlugin { } /** - * .. + * Teleport a player to a plot + * @param player Player to teleport + * @param from Previous Location + * @param plot Plot to teleport to + * @return true if successful */ - - // Old Stuff - /* - * private static boolean checkForUpdate() throws IOException { URL call = - * new URL(Settings.Update.VERSION_URL); InputStream stream = - * call.openStream(); BufferedReader reader = new BufferedReader(new - * InputStreamReader(stream)); String latest = reader.readLine(); - * reader.close(); return - * !getPlotMain().getDescription().getVersion().equalsIgnoreCase(latest); } - * private static String getNextUpdateString() throws IOException { URL call - * = new URL(Settings.Update.VERSION_URL); InputStream stream = - * call.openStream(); BufferedReader reader = new BufferedReader(new - * InputStreamReader(stream)); return reader.readLine(); } private static - * void update() throws IOException { sendConsoleSenderMessage(C.PREFIX.s() - * + "&c&lThere is an update! New Update: &6&l" + getNextUpdateString() + - * "&c&l, Current Update: &6&l" + - * getPlotMain().getDescription().getVersion()); } - */ - public static boolean teleportPlayer(final Player player, final Location from, final Plot plot) { final PlayerTeleportToPlotEvent event = new PlayerTeleportToPlotEvent(player, from, plot); Bukkit.getServer().getPluginManager().callEvent(event); @@ -702,10 +709,19 @@ public class PlotMain extends JavaPlugin { System.out.println(ChatColor.stripColor(ChatColor.translateAlternateColorCodes('&', C.PREFIX.s() + c.s()))); } + /** + * Reload all translations + * @throws IOException + */ public static void reloadTranslations() throws IOException { C.setupTranslations(); } + /** + * Ge the last played time + * @param uuid UUID for the player + * @return last play time as a long + */ public static long getLastPlayed(final UUID uuid) { if (uuid == null) { return 0; @@ -921,7 +937,7 @@ public class PlotMain extends JavaPlugin { options.put("api.location", Settings.API_URL); options.put("api.custom", Settings.CUSTOM_API); options.put("titles", Settings.TITLES); - + options.put("teleport.on_login", Settings.TELEPORT_ON_LOGIN); options.put("perm-based-mob-cap.enabled", Settings.MOB_CAP_ENABLED); options.put("perm-based-mob-cap.max", Settings.MOB_CAP); @@ -934,6 +950,7 @@ public class PlotMain extends JavaPlugin { if (Settings.DEBUG) { sendConsoleSenderMessage(C.PREFIX.s() + "&6Debug Mode Enabled (Default). Edit the config to turn this off."); } + Settings.TELEPORT_ON_LOGIN = config.getBoolean("teleport.on_login"); Settings.KILL_ROAD_MOBS = config.getBoolean("kill_road_mobs"); Settings.WORLDGUARD = config.getBoolean("worldguard.enabled"); Settings.MOB_PATHFINDING = config.getBoolean("mob_pathfinding"); @@ -947,6 +964,10 @@ public class PlotMain extends JavaPlugin { Settings.SCHEMATIC_SAVE_PATH = config.getString("schematics.save_path"); } + /** + * Create a plotworld config section + * @param plotworld World to create the section for + */ @SuppressWarnings("unused") public static void createConfiguration(final PlotWorld plotworld) { final Map options = new HashMap<>(); @@ -1274,6 +1295,12 @@ public class PlotMain extends JavaPlugin { }); } + /** + * Add a Plot world + * @param world World to add + * @param plotworld PlotWorld Object + * @param manager Plot Manager for the new world + */ public static void addPlotWorld(final String world, final PlotWorld plotworld, final PlotManager manager) { worlds.put(world, plotworld); managers.put(world, manager); @@ -1282,33 +1309,56 @@ public class PlotMain extends JavaPlugin { } } + /** + * Remove a plot world + * @param world World to remove + */ public static void removePlotWorld(final String world) { plots.remove(world); managers.remove(world); worlds.remove(world); } + /** + * Get all plots + * @return All Plos in a hashmap (world, Hashmap contiang ids and objects)) + */ public static HashMap> getAllPlotsRaw() { return plots; } - public static void setAllPlotsRaw(final HashMap> plots) { - PlotMain.plots = new LinkedHashMap<>(plots); - // PlotMain.plots.putAll(plots); - } - + /** + * Set all plots + * + * @param plots New Plot LinkedHashMap + */ public static void setAllPlotsRaw(final LinkedHashMap> plots) { PlotMain.plots = plots; } /** - * !!WorldGeneration!! + * Set all plots + * + * @param plots New Plot HashMap + */ + public static void setAllPlotsRaw(final HashMap> plots) { + PlotMain.plots = new LinkedHashMap<>(plots); + // PlotMain.plots.putAll(plots); + } + + /** + * Get the PlotSquared World Generator + * + * @see com.intellectualcrafters.plot.generator.WorldGenerator */ @Override - public ChunkGenerator getDefaultWorldGenerator(final String world, final String id) { + final public ChunkGenerator getDefaultWorldGenerator(final String world, final String id) { return new WorldGenerator(world); } + /** + * Setup the logger mechanics + */ private void setupLogger() { final File log = new File(getMain().getDataFolder() + File.separator + "logs" + File.separator + "plots.log"); if (!log.exists()) { @@ -1335,7 +1385,7 @@ public class PlotMain extends JavaPlugin { */ @Override @SuppressWarnings("deprecation") - public void onEnable() { + final public void onEnable() { // Pre-Steps { // Init the logger @@ -1560,7 +1610,7 @@ public class PlotMain extends JavaPlugin { * On unload */ @Override - public void onDisable() { + final public void onDisable() { try { C.saveTranslations(); } catch (Exception e) { diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java index 816719215..a5171abeb 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/api/PlotAPI.java @@ -332,6 +332,7 @@ public class PlotAPI { * * @param c (Caption) * @see #sendConsoleMessage(String) + * @see com.intellectualcrafters.plot.config.C */ public void sendConsoleMessage(@NotNull final C c) { sendConsoleMessage(c.s()); @@ -342,6 +343,7 @@ public class PlotAPI { * * @param flag Flag that should be registered * @see com.intellectualcrafters.plot.flag.FlagManager#addFlag(com.intellectualcrafters.plot.flag.AbstractFlag) + * @see com.intellectualcrafters.plot.flag.AbstractFlag */ public void addFlag(@NotNull final AbstractFlag flag) { FlagManager.addFlag(flag); @@ -472,6 +474,7 @@ public class PlotAPI { * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotTopLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotHome(org.bukkit.World, com.intellectualcrafters.plot.object.Plot) * @see com.intellectualcrafters.plot.object.PlotHomePosition + * @see com.intellectualcrafters.plot.object.Plot */ public Location[] getLocations(@NotNull final Plot p) { final World world = Bukkit.getWorld(p.world); @@ -485,6 +488,7 @@ public class PlotAPI { * @return plot bottom location * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotHome(org.bukkit.World, com.intellectualcrafters.plot.object.Plot) * @see com.intellectualcrafters.plot.object.PlotHomePosition + * @see com.intellectualcrafters.plot.object.Plot */ public Location getHomeLocation(@NotNull final Plot p) { return PlotHelper.getPlotHome(p.getWorld(), p.id); @@ -496,6 +500,7 @@ public class PlotAPI { * @param p Plot that you want to get the location for * @return plot bottom location * @see com.intellectualcrafters.plot.util.PlotHelper#getPlotBottomLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) + * @see com.intellectualcrafters.plot.object.Plot */ public Location getBottomLocation(@NotNull final Plot p) { final World world = Bukkit.getWorld(p.world); @@ -508,6 +513,7 @@ public class PlotAPI { * @param p Plot that you want to get the location for * @return plot top location * @see PlotHelper#getPlotTopLoc(org.bukkit.World, com.intellectualcrafters.plot.object.PlotId) + * @see com.intellectualcrafters.plot.object.Plot */ public Location getTopLocation(@NotNull final Plot p) { final World world = Bukkit.getWorld(p.world); @@ -530,6 +536,7 @@ public class PlotAPI { * * @param c SubCommand, that we want to register * @see com.intellectualcrafters.plot.commands.MainCommand#subCommands + * @see com.intellectualcrafters.plot.commands.SubCommand */ public void registerCommand(@NotNull final SubCommand c) { MainCommand.subCommands.add(c); diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java index 16d0d6f7e..331d9c87e 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/C.java @@ -197,6 +197,7 @@ public enum C { * Teleport / Entry */ TELEPORTED_TO_PLOT("&6You have been teleported"), + TELEPORTED_TO_ROAD("&cYou got teleported to the road"), /* * Set Block */ diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java index 158418483..982fa1b93 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/config/Settings.java @@ -29,6 +29,11 @@ package com.intellectualcrafters.plot.config; */ public class Settings { + /** + * Teleport to path on login + */ + public static boolean TELEPORT_ON_LOGIN = false; + /** * Mob Cap Enabled */ diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/PlayerEvents.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/PlayerEvents.java index d761b2861..72e0e3cdb 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/PlayerEvents.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/listeners/PlayerEvents.java @@ -28,6 +28,7 @@ import com.intellectualcrafters.plot.config.Settings; import com.intellectualcrafters.plot.database.DBFunc; import com.intellectualcrafters.plot.object.*; import com.intellectualcrafters.plot.util.PlayerFunctions; +import com.intellectualcrafters.plot.util.PlotHelper; import org.bukkit.*; import org.bukkit.block.Block; import org.bukkit.block.BlockFace; @@ -73,7 +74,12 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi } // textures(event.getPlayer()); if (isInPlot(event.getPlayer().getLocation())) { - plotEntry(event.getPlayer(), getCurrentPlot(event.getPlayer().getLocation())); + if (Settings.TELEPORT_ON_LOGIN) { + event.getPlayer().teleport(PlotHelper.getPlotHomeDefault(getPlot(event.getPlayer()))); + PlayerFunctions.sendMessage(event.getPlayer(), C.TELEPORTED_TO_ROAD); + } else { + plotEntry(event.getPlayer(), getCurrentPlot(event.getPlayer().getLocation())); + } } } diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java index 25d921c53..96071a805 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/util/PlotHelper.java @@ -856,6 +856,17 @@ public class PlotHelper { } } + /** + * Retrieve the location of the default plot home position + * @param plot Plot + * @return the location + */ + public static Location getPlotHomeDefault(final Plot plot) { + final Location l = getPlotBottomLoc(plot.getWorld(), plot.getId()).subtract(0, 0, 0); + l.setY(getHeighestBlock(plot.getWorld(), l.getBlockX(), l.getBlockZ())); + return l; + } + /** * Get the plot home * @param w World