diff --git a/paper-api/pom.xml b/paper-api/pom.xml index 43b118687c..710c6af2d9 100644 --- a/paper-api/pom.xml +++ b/paper-api/pom.xml @@ -1,17 +1,29 @@ - - 4.0.0 - org.bukkit - bukkit - 0.0.1-SNAPSHOT - Bukkit - http://www.bukkit.org - - - org.yaml - snakeyaml - 1.7 - jar - compile - - - + + 4.0.0 + org.bukkit + bukkit + 0.0.1-SNAPSHOT + Bukkit + http://www.bukkit.org + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + + + + + + + org.yaml + snakeyaml + 1.7 + jar + compile + + + diff --git a/paper-api/src/main/java/org/bukkit/event/block/BlockBrokenEvent.java b/paper-api/src/main/java/org/bukkit/event/block/BlockBrokenEvent.java index 1cd4615fc6..03615d7ac8 100644 --- a/paper-api/src/main/java/org/bukkit/event/block/BlockBrokenEvent.java +++ b/paper-api/src/main/java/org/bukkit/event/block/BlockBrokenEvent.java @@ -1,13 +1,13 @@ -package org.bukkit.event.block; - -import org.bukkit.Block; - -/** - * Not implemented yet - */ -public class BlockBrokenEvent extends BlockEvent { - - public BlockBrokenEvent(Type type, Block block ) { - super(type, block); - } -} +package org.bukkit.event.block; + +import org.bukkit.Block; + +/** + * Not implemented yet + */ +public class BlockBrokenEvent extends BlockEvent { + + public BlockBrokenEvent(Type type, Block block ) { + super(type, block); + } +} diff --git a/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java b/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java index c8b3f88495..62745b3442 100644 --- a/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java +++ b/paper-api/src/main/java/org/bukkit/event/block/BlockIgniteEvent.java @@ -1,19 +1,19 @@ -package org.bukkit.event.block; - -import org.bukkit.event.Event; - -/** - * @author durron597 - * - */ -public class BlockIgniteEvent extends Event { - - /** - * @param type - */ - public BlockIgniteEvent(Type type) { - super(type); - // TODO Auto-generated constructor stub - } - -} +package org.bukkit.event.block; + +import org.bukkit.event.Event; + +/** + * @author durron597 + * + */ +public class BlockIgniteEvent extends Event { + + /** + * @param type + */ + public BlockIgniteEvent(Type type) { + super(type); + // TODO Auto-generated constructor stub + } + +} diff --git a/paper-api/src/main/java/org/bukkit/event/block/BlockRightClickedEvent.java b/paper-api/src/main/java/org/bukkit/event/block/BlockRightClickedEvent.java index bce2e1aed5..ba5b6bb3c3 100644 --- a/paper-api/src/main/java/org/bukkit/event/block/BlockRightClickedEvent.java +++ b/paper-api/src/main/java/org/bukkit/event/block/BlockRightClickedEvent.java @@ -1,53 +1,53 @@ -/** - * - */ -package org.bukkit.event.block; - -import org.bukkit.Block; -import org.bukkit.BlockFace; -import org.bukkit.ItemStack; -import org.bukkit.Player; - -/** - * @author durron597 - */ -public class BlockRightClickedEvent extends BlockEvent { - protected Player clicker; - protected BlockFace direction; - protected ItemStack clickedWith; - - /** - * @param type The type of event this is - * @param theBlock The clicked block - * @param direction The face we clicked from - * @param clicker The player who clicked a block - * @param clickedWith Item in player's hand - */ - public BlockRightClickedEvent(Type type, Block theBlock, BlockFace direction, Player clicker, ItemStack clickedWith) { - super(type, theBlock); - this.direction = direction; - this.clicker = clicker; - this.clickedWith = clickedWith; - } - - /** - * @return the clicker - */ - public Player getClicker() { - return clicker; - } - - /** - * @return the direction - */ - public BlockFace getDirection() { - return direction; - } - - /** - * @return the clickedWith - */ - public ItemStack getClickedWith() { - return clickedWith; - } -} +/** + * + */ +package org.bukkit.event.block; + +import org.bukkit.Block; +import org.bukkit.BlockFace; +import org.bukkit.ItemStack; +import org.bukkit.Player; + +/** + * @author durron597 + */ +public class BlockRightClickedEvent extends BlockEvent { + protected Player clicker; + protected BlockFace direction; + protected ItemStack clickedWith; + + /** + * @param type The type of event this is + * @param theBlock The clicked block + * @param direction The face we clicked from + * @param clicker The player who clicked a block + * @param clickedWith Item in player's hand + */ + public BlockRightClickedEvent(Type type, Block theBlock, BlockFace direction, Player clicker, ItemStack clickedWith) { + super(type, theBlock); + this.direction = direction; + this.clicker = clicker; + this.clickedWith = clickedWith; + } + + /** + * @return the clicker + */ + public Player getClicker() { + return clicker; + } + + /** + * @return the direction + */ + public BlockFace getDirection() { + return direction; + } + + /** + * @return the clickedWith + */ + public ItemStack getClickedWith() { + return clickedWith; + } +}