1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 17:02:53 +00:00

Javadoc fixes and fixes missing dependency ChatMessageIDProvider in

IDProviderModule

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-07-30 21:36:45 -03:00
parent 9b25d29192
commit 17fb84faab
23 changed files with 102 additions and 19 deletions

View File

@@ -19,8 +19,17 @@ package com.l2jserver.model.id.provider;
import com.l2jserver.model.id.ID;
/**
* The ID factory is used to create instances of IDs. It will automatically make
* sure the ID is free before allocating it.
* ID objects should never be directly instantiated and an provider
* implementation must be used to create and generate them.
* <p>
*
* The ID provider is used to create instances of IDs. It will automatically
* make sure the ID is free before allocating it.
* <p>
* The provider will also make sure only a single instance for each raw ID
* exits, that is for any given ID instance for raw value <b>1</b> only a single
* object will be created and following calls will always return the same
* object.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/