1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-06 07:32:46 +00:00

Small documentation changes

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-07-29 17:02:37 -03:00
parent f917602de1
commit 373ea43f3e
12 changed files with 106 additions and 12 deletions

View File

@@ -17,6 +17,7 @@
package com.l2jserver.model; package com.l2jserver.model;
import com.l2jserver.model.id.ID; import com.l2jserver.model.id.ID;
import com.l2jserver.service.database.DatabaseService;
/** /**
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
@@ -41,17 +42,59 @@ public interface Model<T extends ID<?>> {
void setID(T ID) throws IllegalStateException; void setID(T ID) throws IllegalStateException;
/** /**
* Each object has an desire. Desires express what the
* {@link DatabaseService} should do with the object. The service
* automatically keep tracks of every database object (and release them when
* they are garbage collected).
*
* @return the database object desire * @return the database object desire
*/ */
ObjectDesire getObjectDesire(); ObjectDesire getObjectDesire();
/** /**
* Each object has an desire. Desires express what the
* {@link DatabaseService} should do with the object. The service
* automatically keep tracks of every database object (and release them when
* they are garbage collected).
*
* @param desire * @param desire
* the database object desire to set * the database object desire to set
*/ */
void setObjectDesire(ObjectDesire desire); void setObjectDesire(ObjectDesire desire);
/**
* Indicated what the object wants to do in the database. It indicates
* whether the object should be inserted, updated or deleted from the
* database.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public enum ObjectDesire { public enum ObjectDesire {
NONE, INSERT, UPDATE, DELETE; /**
* Don't do anything
*/
NONE,
/**
* Insert a new object into database.
* <p>
* If the primary key is auto generated by the database a clone of this
* object will be created.<br>
* If the primary key is <b>not</b> auto generated by the database, an
* database exception will occur.
*/
INSERT,
/**
* Updates the object in the database.
* <p>
* If the object is not in the database nothing will happen.
*/
UPDATE,
/**
* Deletes the object from the database.
* <p>
* If tge object is not in the database nothing will happen.
*/
DELETE;
} }
} }

View File

@@ -38,7 +38,7 @@ public interface CacheService extends Service {
* @param <T> * @param <T>
* the <tt>instance</tt> type * the <tt>instance</tt> type
* @param interfaceType * @param interfaceType
* the interface type * the interface type. Remember, this must be an interface!
* @param instance * @param instance
* the instance implementing the interface * the instance implementing the interface
* @return the cache-decorated object * @return the cache-decorated object

View File

@@ -61,9 +61,9 @@ public class EhCacheService extends AbstractService implements CacheService {
final T instance) { final T instance) {
Preconditions.checkNotNull(interfaceType, "interfaceType"); Preconditions.checkNotNull(interfaceType, "interfaceType");
Preconditions.checkNotNull(instance, "instance"); Preconditions.checkNotNull(instance, "instance");
Preconditions.checkArgument(interfaceType.isInterface(),
"interfaceType is not an interface");
if (!interfaceType.isInterface())
return null;
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
final T proxy = (T) Proxy.newProxyInstance(this.getClass() final T proxy = (T) Proxy.newProxyInstance(this.getClass()
.getClassLoader(), new Class[] { interfaceType }, .getClassLoader(), new Class[] { interfaceType },

View File

@@ -51,9 +51,9 @@ public class SoftCacheService extends AbstractService implements CacheService {
final T instance) { final T instance) {
Preconditions.checkNotNull(interfaceType, "interfaceType"); Preconditions.checkNotNull(interfaceType, "interfaceType");
Preconditions.checkNotNull(instance, "instance"); Preconditions.checkNotNull(instance, "instance");
Preconditions.checkArgument(interfaceType.isInterface(),
"interfaceType is not an interface");
if (!interfaceType.isInterface())
return null;
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
final T proxy = (T) Proxy.newProxyInstance(this.getClass() final T proxy = (T) Proxy.newProxyInstance(this.getClass()
.getClassLoader(), new Class[] { interfaceType }, .getClassLoader(), new Class[] { interfaceType },

View File

@@ -51,9 +51,9 @@ public class WeakCacheService extends AbstractService implements CacheService {
final T instance) { final T instance) {
Preconditions.checkNotNull(interfaceType, "interfaceType"); Preconditions.checkNotNull(interfaceType, "interfaceType");
Preconditions.checkNotNull(instance, "instance"); Preconditions.checkNotNull(instance, "instance");
Preconditions.checkArgument(interfaceType.isInterface(),
"interfaceType is not an interface");
if (!interfaceType.isInterface())
return null;
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
final T proxy = (T) Proxy.newProxyInstance(this.getClass() final T proxy = (T) Proxy.newProxyInstance(this.getClass()
.getClassLoader(), new Class[] { interfaceType }, .getClassLoader(), new Class[] { interfaceType },

View File

@@ -16,6 +16,7 @@
*/ */
package com.l2jserver.service.game; package com.l2jserver.service.game;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service; import com.l2jserver.service.Service;
/** /**
@@ -24,5 +25,24 @@ import com.l2jserver.service.Service;
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */
public interface DuelService extends Service { public interface DuelService extends Service {
/**
* Start the duel between the given two characters
*
* @param character1
* the first character
* @param character2
* the second character
*/
void start(L2Character character1, L2Character character2);
/**
* Finishes the duel between the given two characters.<br>
* <b>This must be called before the character is revived.</b>
*
* @param character1
* the first character
* @param character2
* the second character
*/
void stop(L2Character character1, L2Character character2);
} }

View File

@@ -16,6 +16,7 @@
*/ */
package com.l2jserver.service.game; package com.l2jserver.service.game;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.AbstractService; import com.l2jserver.service.AbstractService;
/** /**
@@ -24,5 +25,13 @@ import com.l2jserver.service.AbstractService;
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */
public class DuelServiceImpl extends AbstractService implements DuelService { public class DuelServiceImpl extends AbstractService implements DuelService {
@Override
public void start(L2Character character1, L2Character character2) {
// TODO Auto-generated method stub
}
@Override
public void stop(L2Character character1, L2Character character2) {
// TODO Auto-generated method stub
}
} }

View File

@@ -16,6 +16,7 @@
*/ */
package com.l2jserver.service.game; package com.l2jserver.service.game;
import com.l2jserver.model.world.Item;
import com.l2jserver.model.world.L2Character; import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service; import com.l2jserver.service.Service;
@@ -46,4 +47,17 @@ public interface LotteryService extends Service {
* the fifth number * the fifth number
*/ */
void bet(L2Character character, int n1, int n2, int n3, int n4, int n5); void bet(L2Character character, int n1, int n2, int n3, int n4, int n5);
/**
* @return the winning lottery ticket prize
*/
int getPrize();
/**
* Redeem a winning lottery ticket prize
*
* @param ticket
* the winning ticket
*/
void redeemPrize(Item ticket);
} }

View File

@@ -24,5 +24,5 @@ import com.l2jserver.service.Service;
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */
public interface PvPService extends Service { public interface PvPService extends Service {
} }

View File

@@ -22,7 +22,8 @@ import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service; import com.l2jserver.service.Service;
/** /**
* This service chatting in the server * This service chatting in the server. Implementations can be local or can use
* another service like an IRC server.
* *
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */

View File

@@ -16,10 +16,16 @@
*/ */
package com.l2jserver.service.game.chat; package com.l2jserver.service.game.chat;
import com.l2jserver.model.id.object.CharacterID;
/** /**
* An public {@link ChatChannel}. Please note that the concept of "public" does * An public {@link ChatChannel}. Please note that the concept of "public" does
* not mean it is available to anyone, but there are more than 2 player chatting * not mean it is available to anyone, but there are more than 2 player chatting
* (i.e. clan, global, region, etc...) * (i.e. clan, global, region, etc...). That mean that a single message can be
* broadcasted to more than a single client. Note that even in a public channel
* only a single event
* {@link ChatChannelListener#onMessage(ChatChannel, CharacterID, String)} will
* be dispatched per listener.
* *
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */

View File

@@ -20,7 +20,8 @@ import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service; import com.l2jserver.service.Service;
/** /**
* The effect service will handle * The effect service will handle. This service will be backed by a thread that
* will execute the effect.
* *
* @author <a href="http://www.rogiel.com">Rogiel</a> * @author <a href="http://www.rogiel.com">Rogiel</a>
*/ */