Archiviert
13
0

Fixing documentation.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2012-09-18 17:20:48 +02:00
Ursprung ad6fbae5d6
Commit cd9fa1cdf6
5 geänderte Dateien mit 4 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -131,7 +131,7 @@ public interface ProtocolManager {
/** /**
* Construct a packet using the special builtin Minecraft constructors. * Construct a packet using the special builtin Minecraft constructors.
* @param id - the packet ID. * @param id - the packet ID.
* @param argumentTypes - arguments that will be passed to the constructor. * @param arguments - arguments that will be passed to the constructor.
* @return The packet constructor. * @return The packet constructor.
*/ */
public PacketConstructor createPacketConstructor(int id, Object... arguments); public PacketConstructor createPacketConstructor(int id, Object... arguments);

Datei anzeigen

@ -62,7 +62,7 @@ public class PacketConstructor {
/** /**
* Return a copy of the current constructor with a different list of unwrappers. * Return a copy of the current constructor with a different list of unwrappers.
* @param unwrappers - list of unwrappers that convert Bukkit wrappers into the equivalent NMS classes. * @param unwrappers - list of unwrappers that convert Bukkit wrappers into the equivalent NMS classes.
* @return * @return A constructor with a different set of unwrappers.
*/ */
public PacketConstructor withUnwrappers(List<Unwrapper> unwrappers) { public PacketConstructor withUnwrappers(List<Unwrapper> unwrappers) {
return new PacketConstructor(constructorMethod, unwrappers); return new PacketConstructor(constructorMethod, unwrappers);

Datei anzeigen

@ -208,7 +208,7 @@ public class FuzzyReflection {
* <li>net.comphenix.xp.ExperienceMod</li> * <li>net.comphenix.xp.ExperienceMod</li>
* </ul> * </ul>
* @param typeRegex - regular expression that will match the field type. * @param typeRegex - regular expression that will match the field type.
* @param ignoredTypes - types to ignore. * @param ignored - types to ignore.
* @return The first field with a type that matches the given regular expression. * @return The first field with a type that matches the given regular expression.
*/ */
@SuppressWarnings("rawtypes") @SuppressWarnings("rawtypes")

Datei anzeigen

@ -52,7 +52,7 @@ public class IntEnum {
/** /**
* Determines whether or not the given member exists. * Determines whether or not the given member exists.
* @param packetID - the ID of the member to find. * @param id - the ID of the member to find.
* @return TRUE if a member with the given ID exists, FALSE otherwise. * @return TRUE if a member with the given ID exists, FALSE otherwise.
*/ */
public boolean hasMember(int id) { public boolean hasMember(int id) {

Datei anzeigen

@ -49,7 +49,6 @@ public class DefaultInstances {
/** /**
* Construct a default instance generator using the given instance providers. * Construct a default instance generator using the given instance providers.
* @param registered - list of instance providers. * @param registered - list of instance providers.
* @param stringDefault - default string value.
*/ */
public DefaultInstances(ImmutableList<InstanceProvider> registered) { public DefaultInstances(ImmutableList<InstanceProvider> registered) {
this.registered = registered; this.registered = registered;
@ -58,7 +57,6 @@ public class DefaultInstances {
/** /**
* Construct a default instance generator using the given instance providers. * Construct a default instance generator using the given instance providers.
* @param instaceProviders - array of instance providers. * @param instaceProviders - array of instance providers.
* @return An default instance generator.
*/ */
public DefaultInstances(InstanceProvider... instaceProviders) { public DefaultInstances(InstanceProvider... instaceProviders) {
this(ImmutableList.copyOf(instaceProviders)); this(ImmutableList.copyOf(instaceProviders));