Javadoc cleanup

This commit is contained in:
Christian 2013-01-21 21:37:29 -05:00
parent 825ecf1a7f
commit 509b5f8e7e
11 changed files with 27 additions and 24 deletions

View File

@ -2,7 +2,7 @@ package cpw.mods.fml.common;
/**
* A marker interface for retrieving a proxy to a bukkit plugin.
* Fields associated with {@link BukkitPluginRef} annotations should be should probably
* Fields associated with {@link BukkitPluginRef} annotations should
* declare this type and cast down if the target is available (not null)
* @author cpw
*

View File

@ -377,7 +377,7 @@ public class Loader
}
/**
* @return
*
*/
private void initializeLoader()
{

View File

@ -35,7 +35,7 @@ public @interface NetworkMod
Class<? extends IPacketHandler> packetHandler() default NULL.class;
/**
* A tiny packet handler implementation based on {@link Packet131MapData} for "small"
* A tiny packet handler implementation based on {@link net.minecraft.network.packet.Packet131MapData} for "small"
* data packet loads.
*/
Class<? extends ITinyPacketHandler> tinyPacketHandler() default NULL.class;

View File

@ -193,7 +193,7 @@ public class NetworkModHandler
}
}
/**
* @return
* @return the default {@link NetworkMod#connectionHandler()} annotation value
*/
private Object getConnectionHandlerDefaultValue()
{
@ -211,7 +211,7 @@ public class NetworkModHandler
}
/**
* @return
* @return the default {@link NetworkMod#packetHandler()} annotation value
*/
private Object getPacketHandlerDefaultValue()
{
@ -228,6 +228,9 @@ public class NetworkModHandler
}
}
/**
* @return the default {@link NetworkMod#tinyPacketHandler()} annotation value
*/
private Object getTinyPacketHandlerDefaultValue()
{
try {
@ -243,7 +246,7 @@ public class NetworkModHandler
}
}
/**
* @return
* @return the {@link NetworkMod#clientPacketHandlerSpec()} default annotation value
*/
private Object getClientHandlerSpecDefaultValue()
{
@ -260,7 +263,7 @@ public class NetworkModHandler
}
}
/**
* @return
* @return the default {@link NetworkMod#serverPacketHandlerSpec()} annotation value
*/
private Object getServerHandlerSpecDefaultValue()
{

View File

@ -64,7 +64,7 @@ public class NetworkRegistry
}
/**
* Get the packet 250 channel registration string
* @return
* @return the {@link Packet250CustomPayload} channel registration string
*/
byte[] getPacketRegistry(Side side)
{
@ -81,8 +81,8 @@ public class NetworkRegistry
}
/**
* register a channel to a mod
* @param container
* @param channelName
* @param handler the packet handler
* @param channelName the channel name to register it with
*/
public void registerChannel(IPacketHandler handler, String channelName)
{

View File

@ -145,7 +145,7 @@ public class GameRegistry
/**
* Private and not yet working properly
*
* @return
* @return a block id
*/
private static int findSpareBlockId()
{

View File

@ -58,8 +58,8 @@ public class TickRegistry
}
/**
* @param side
* @return
* @param side the side to get the tick queue for
* @return the queue for the effective side
*/
private static PriorityQueue<TickQueueElement> getQueue(Side side)
{

View File

@ -37,7 +37,7 @@ public class VillagerRegistry
private List<Integer> newVillagerIds = Lists.newArrayList();
/**
* Allow access to the {@link StructureVillagePieces} array controlling new village
* Allow access to the {@link net.minecraft.world.gen.structure.StructureVillagePieces} array controlling new village
* creation so you can insert your own new village pieces
*
* @author cpw
@ -46,7 +46,7 @@ public class VillagerRegistry
public interface IVillageCreationHandler
{
/**
* Called when {@link MapGenVillage} is creating a new village
* Called when {@link net.minecraft.world.gen.structure.MapGenVillage} is creating a new village
*
* @param random
* @param i
@ -60,7 +60,7 @@ public class VillagerRegistry
/**
* Build an instance of the village component {@link StructureVillagePieces}
* Build an instance of the village component {@link net.minecraft.world.gen.structure.StructureVillagePieces}
* @param villagePiece
* @param startPiece
* @param pieces
@ -150,10 +150,10 @@ public class VillagerRegistry
}
return defaultSkin;
}
/**
* Returns a list of all added villager types
*
*
* @return newVillagerIds
*/
public static Collection<Integer> getRegisteredVillagers()

View File

@ -177,7 +177,7 @@ public class FMLRelauncher
}
/**
* @return
* @return the location of the client home
*/
private File computeExistingClientHome()
{

View File

@ -401,8 +401,8 @@ public class RelaunchLibraryManager
}
/**
* @param mcDir
* @return
* @param mcDir the minecraft home directory
* @return the lib directory
*/
private static File setupLibDir(File mcDir)
{
@ -427,8 +427,8 @@ public class RelaunchLibraryManager
}
/**
* @param mcDir
* @return
* @param mcDir the minecraft home directory
* @return the coremod directory
*/
private static File setupCoreModDir(File mcDir)
{

View File

@ -42,7 +42,7 @@ import cpw.mods.fml.relauncher.Side;
* Handles primary communication from hooked code into the system
*
* The FML entry point is {@link #beginServerLoading(MinecraftServer)} called from
* {@link net.minecraft.shared.DedicatedServer}
* {@link net.minecraft.server.dedicated.DedicatedServer}
*
* Obfuscated code should focus on this class and other members of the "server"
* (or "client") code