Better javadocs

This commit is contained in:
maurer.it 2011-01-17 23:06:45 -05:00
parent 31fedb27a6
commit 0464dcdac2

View file

@ -47,7 +47,7 @@ public interface CostModificationEffect<T extends CostModificationEffect<T>> ext
* Called by the {@link ContinuousEffects#costModification(java.util.UUID, mage.abilities.Ability, mage.game.Game) ContinuousEffects.costModification}
* method.
*
* @param game The game for which this effect should be applied to.
* @param game The game for which this effect should be applied.
* @param source The source ability of this effect.
* @param abilityToModify The {@link mage.abilities.SpellAbility} or {@link Ability} which should be modified.
* @return
@ -58,9 +58,9 @@ public interface CostModificationEffect<T extends CostModificationEffect<T>> ext
* Called by the {@link ContinuousEffects#costModification(mage.abilities.Ability, mage.game.Game) ContinuousEffects.costModification}
* method.
*
* @param objectId The ability
* @param source
* @param game
* @param abilityToModify The ability to possibly modify.
* @param source The source ability of this effect.
* @param game The game for which this effect shoul dbe applied.
* @return
*/
public boolean applies(Ability abilityToModify, Ability source, Game game);