Add @since to packages created during versions 0.2.0 and 0.2.1

0.2.0 is documented in the "old code" section of the website. 0.2.1 is documented in the Git repository.
This commit is contained in:
calebrw 2016-09-18 16:07:38 -05:00
parent 1e6d0c045c
commit 7307a703ab
16 changed files with 31 additions and 0 deletions

View File

@ -7,5 +7,7 @@
* input handlers. The latter receives requests from the server
* and takes the appropriate actions, while the former contains
* the other methods that are neccessary to control the game.</p>
*
* @since 0.2.1
*/
package net.sf.freecol.client.control;

View File

@ -21,5 +21,8 @@
* <li>The {@link net.sf.freecol.client.gui.menu.FreeColMenuBar} is the menu bar that is
* displayed on top corner of the {@code Canvas}.</li>
* </ul>
*
* @since 0.2.0
*
*/
package net.sf.freecol.client.gui;

View File

@ -1,4 +1,6 @@
/**
* Contains the panels and dialogs.
*
* @since 0.2.1
*/
package net.sf.freecol.client.gui.panel;

View File

@ -10,5 +10,6 @@
*
* @see net.sf.freecol.client.gui.plaf.FreeColLookAndFeel FreeColLookAndFeel
*
* @since 0.2.1
*/
package net.sf.freecol.client.gui.plaf;

View File

@ -2,5 +2,7 @@
* <p>Contains the client networking classes.</p>
*
* <p>Most of the networking classes are common: {@link net.sf.freecol.common.networking}.</p>
*
* @since 0.2.1
*/
package net.sf.freecol.client.networking;

View File

@ -77,5 +77,7 @@
* saves typing, is easier to understand and faster.</p>
*
* <p style="text-align: center; font-weight: bold;">$Revision$</p>
*
* @since 0.2.0
*/
package net.sf.freecol.client;

View File

@ -48,5 +48,7 @@
* <div style="text-align: center; font-size: small; color: darkgray;">
* $Revision$ $Date$
* </div>
*
* @since 0.2.1 As part of the Client package
*/
package net.sf.freecol.common.i18n;

View File

@ -12,5 +12,7 @@
*
* @see "java.util.logging.Logger"
*
* @since 0.2.1
*
*/
package net.sf.freecol.common.logging;

View File

@ -2,5 +2,7 @@
* <h1>FreeCol Common package</h1>
*
* <p>Contains classes in use by both the server and the client.</p>
*
* @since 0.2.0
*/
package net.sf.freecol.common;

View File

@ -8,5 +8,6 @@
* <p>This is the method for playing sounds (provided you have got access to the pointers):<br>
* <span style="font-family: monospace; margin-left: 40px;">soundController.playSound(ILLEGAL_MOVE);</span>
*
* @since 0.2.1 As part of the Client.GUI package.
*/
package net.sf.freecol.common.sound;

View File

@ -4,5 +4,7 @@
* <p>The base FreeCol package containing all subclasses.</p>
*
* <p>No classes should be above this directory, only below it.</p>
*
* @since 0.2.1
*/
package net.sf.freecol;

View File

@ -5,5 +5,7 @@
* input handlers. The latter receives requests from the clients
* and takes the appropriate actions, while the former contains
* the other methods that are neccessary to control the game.</p>
*
* @since 0.2.1
*/
package net.sf.freecol.server.control;

View File

@ -2,5 +2,7 @@
* <p>Contains the map generator.</p>
*
* @see net.sf.freecol.server.generator.MapGenerator
*
* @since 0.2.1
*/
package net.sf.freecol.server.generator;

View File

@ -2,5 +2,7 @@
* <p>Contains model classes with server specific information.</p>
*
* @see net.sf.freecol.common.model The common model objects
*
* @since 0.2.1
*/
package net.sf.freecol.server.model;

View File

@ -3,5 +3,7 @@
*
* <p>The main server networking class is {@link net.sf.freecol.server.networking.Server}.<br>
* Most of the networking classes are common: {@link net.sf.freecol.common.networking}.</p>
*
* @since 0.2.1
*/
package net.sf.freecol.server.networking;

View File

@ -10,5 +10,7 @@
* <p>The main class of the model is {@link net.sf.freecol.common.model.Game}. All
* {@link net.sf.freecol.common.model.Player} objects in the server's game model are
* {@link net.sf.freecol.server.model.ServerPlayer} objects.</p>
*
* @since 0.2.1
*/
package net.sf.freecol.server;