diff options
author | Wesley Wolfe <weswolf@aol.com> | 2013-03-15 22:19:58 -0500 |
---|---|---|
committer | Wesley Wolfe <weswolf@aol.com> | 2013-03-16 02:30:31 -0500 |
commit | 7dcf22262abef77aef9d6ad253be1c5e2c9712a4 (patch) | |
tree | 7f0ccbaf6bd1d02f056b4b762339e29e513491e1 /src/main/javadoc/org | |
parent | 2cea46d97eb8f4e2afb749307caf69e9a9caaf69 (diff) | |
download | bukkit-7dcf22262abef77aef9d6ad253be1c5e2c9712a4.tar bukkit-7dcf22262abef77aef9d6ad253be1c5e2c9712a4.tar.gz bukkit-7dcf22262abef77aef9d6ad253be1c5e2c9712a4.tar.lz bukkit-7dcf22262abef77aef9d6ad253be1c5e2c9712a4.tar.xz bukkit-7dcf22262abef77aef9d6ad253be1c5e2c9712a4.zip |
Moved all specific minecart entities to sub-package.
This change is breaking for the new API for 1.5, including the interfaces for
the three new Minecart types and the name of the previously TNT_MINECART
material.
This change also deprecates the two previous specific minecart types located
in the org.bukkit.entity package. This deprecation is not a breaking change
and will still be internally supported.
Each minecart type has new javadoc to be slightly more descriptive. Included
with this are specific references to the interface for each respective
EntityType entry. Another package-info.java file has been included as well.
All specific minecart types extend minecart, each with a more descriptive
name. The naming will also follow the old convention. In addition, the
minecart with no specific designation is now more closely referred to as a
rideable minecart.
Diffstat (limited to 'src/main/javadoc/org')
-rw-r--r-- | src/main/javadoc/org/bukkit/entity/minecart/package-info.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/javadoc/org/bukkit/entity/minecart/package-info.java b/src/main/javadoc/org/bukkit/entity/minecart/package-info.java new file mode 100644 index 00000000..9988caaf --- /dev/null +++ b/src/main/javadoc/org/bukkit/entity/minecart/package-info.java @@ -0,0 +1,6 @@ +/** + * Interfaces for various {@link org.bukkit.entity.Minecart} types. + * <p> + */ +package org.bukkit.entity.minecart; + |