rle.core.board
Class CreationContextBase

java.lang.Object
  extended by rle.core.board.CreationContextBase
All Implemented Interfaces:
CreationContext

public class CreationContextBase
extends java.lang.Object
implements CreationContext

A convenient base class for CreationContext implementors.


Field Summary
protected  java.util.HashMap<java.lang.String,java.lang.Object> hints
           
protected  int level
           
 
Constructor Summary
CreationContextBase()
           
 
Method Summary
 java.lang.Object getHint(java.lang.String key)
          The value of a particular hint, or null if no such hint is defined.
 java.util.Set<java.lang.String> hintKeySet()
          The keys of any creation "hints".
 int level()
          The level for purposes of monster/item generation.
 void putHint(java.lang.String key, java.lang.Object value)
          Add a hint.
 void setLevel(int level)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hints

protected java.util.HashMap<java.lang.String,java.lang.Object> hints

level

protected int level
Constructor Detail

CreationContextBase

public CreationContextBase()
Method Detail

level

public int level()
The level for purposes of monster/item generation.

Specified by:
level in interface CreationContext

setLevel

public void setLevel(int level)

hintKeySet

public java.util.Set<java.lang.String> hintKeySet()
The keys of any creation "hints".

Specified by:
hintKeySet in interface CreationContext

getHint

public java.lang.Object getHint(java.lang.String key)
The value of a particular hint, or null if no such hint is defined.

Specified by:
getHint in interface CreationContext

putHint

public void putHint(java.lang.String key,
                    java.lang.Object value)
Add a hint.