1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

Character broadcast working

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-22 21:32:55 -03:00
parent 49a8513ec5
commit 98feb1ecce
148 changed files with 2309 additions and 597 deletions

View File

@@ -33,4 +33,15 @@ public interface Model<T extends ID<?>> {
* the object ID to set
*/
void setID(T ID);
/**
* @return true if object is already inserted in the database
*/
boolean isInDatabase();
/**
* @param state
* the database state
*/
void setIsInDatabase(boolean state);
}