package com.intellectualcrafters.plot.api; import com.intellectualcrafters.configuration.file.YamlConfiguration; import com.intellectualcrafters.plot.PS; import com.intellectualcrafters.plot.commands.SubCommand; import com.intellectualcrafters.plot.config.C; import com.intellectualcrafters.plot.flag.Flag; import com.intellectualcrafters.plot.flag.FlagManager; import com.intellectualcrafters.plot.flag.Flags; import com.intellectualcrafters.plot.object.*; import com.intellectualcrafters.plot.util.*; import com.intellectualcrafters.plot.util.block.GlobalBlockQueue; import com.intellectualcrafters.plot.uuid.UUIDWrapper; import com.plotsquared.bukkit.util.BukkitUtil; import org.bukkit.Location; import org.bukkit.OfflinePlayer; import org.bukkit.World; import org.bukkit.entity.Player; import org.bukkit.plugin.java.JavaPlugin; import java.util.*; /** * PlotSquared API. *
*
Useful classes: *
*
Please note that PlotSquared can be configured to provide * different UUIDs than bukkit * * @param uuid the uuid of the player to wrap * @return a {@code PlotPlayer} * @see PlotPlayer#wrap(Object) */ public PlotPlayer wrapPlayer(UUID uuid) { return PlotPlayer.wrap(uuid); } /** * Get the PlotPlayer for a username. * * @param player the player to wrap * @return a {@code PlotPlayer} * @see PlotPlayer#wrap(Object) */ public PlotPlayer wrapPlayer(String player) { return PlotPlayer.wrap(player); } /** * Get the PlotPlayer for an offline player. *
*
Note that this will work if the player is offline, however not all * functionality will work. * * @param player the player to wrap * @return a {@code PlotPlayer} * @see PlotPlayer#wrap(Object) */ public PlotPlayer wrapPlayer(OfflinePlayer player) { return PlotPlayer.wrap(player); } }