rle.core.charm
Class CharmBase

java.lang.Object
  extended by rle.core.charm.CharmBase
All Implemented Interfaces:
Charm
Direct Known Subclasses:
TimedCharm

public abstract class CharmBase
extends java.lang.Object
implements Charm

Basic implementation of Charm, requiring subclasses only to implement startCharm().


Field Summary
protected  java.util.Map<java.lang.String,java.lang.Object> attributes
           
protected  Cause cause
           
protected  Thing target
           
 
Constructor Summary
CharmBase()
           
 
Method Summary
 java.util.Map<java.lang.String,java.lang.Object> getAttributes()
          Any attributes used to direct the course of this TemporaryCharm.
 Cause getCause()
          The cause of this charm, for example quaffing a potion of speed.
 Thing getTarget()
           
 void setAttributes(java.util.Map<java.lang.String,java.lang.Object> attributes)
           
 void setCause(Cause c)
           
 void setTarget(Thing target)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface rle.core.charm.Charm
startCharm
 

Field Detail

cause

protected Cause cause

attributes

protected java.util.Map<java.lang.String,java.lang.Object> attributes

target

protected Thing target
Constructor Detail

CharmBase

public CharmBase()
Method Detail

getCause

public Cause getCause()
The cause of this charm, for example quaffing a potion of speed.

Specified by:
getCause in interface Charm
Returns:

setCause

public void setCause(Cause c)
Specified by:
setCause in interface Charm

getAttributes

public java.util.Map<java.lang.String,java.lang.Object> getAttributes()
Any attributes used to direct the course of this TemporaryCharm.

Specified by:
getAttributes in interface Charm

setAttributes

public void setAttributes(java.util.Map<java.lang.String,java.lang.Object> attributes)
Specified by:
setAttributes in interface Charm

getTarget

public Thing getTarget()
Specified by:
getTarget in interface Charm

setTarget

public void setTarget(Thing target)
Specified by:
setTarget in interface Charm