Uses of Interface
rle.core.GameContext

Packages that use GameContext
rle.core   
rle.core.event   
rle.core.player.event   
rle.core.ui   
rle.core.vm   
rle.simple   
rle.simple.player   
 

Uses of GameContext in rle.core
 

Classes in rle.core that implement GameContext
 class GameContextBase
          Basic implemention of GameContext.
 

Uses of GameContext in rle.core.event
 

Fields in rle.core.event declared as GameContext
protected  GameContext TextMessage.context
           
protected  GameContext TextMessageCause.context
           
 

Methods in rle.core.event that return GameContext
 GameContext GameClockEvent.getContext()
           
 GameContext TextMessage.getContext()
           
 GameContext TextMessageCause.getContext()
           
 GameContext LanguageChangeEvent.getSource()
           
 

Methods in rle.core.event with parameters of type GameContext
 void TextMessage.setContext(GameContext context)
           
 void TextMessageCause.setContext(GameContext context)
           
 

Constructors in rle.core.event with parameters of type GameContext
GameClockEvent(GameContext context, long tickNumber)
           
LanguageChangeEvent(GameContext gc)
           
TextMessage(GameContext context, java.lang.String messagePathId)
           
TextMessage(GameContext context, java.lang.String messagePathId, java.lang.Object... replacements)
           
TextMessageCause(java.lang.Object source, GameContext context, java.lang.String messagePathId)
           
TextMessageCause(java.lang.Object source, GameContext context, java.lang.String messagePathId, java.lang.Object... replacements)
           
 

Uses of GameContext in rle.core.player.event
 

Constructors in rle.core.player.event with parameters of type GameContext
PlayerTurnEvent(GameContext context, PlayerTurnEvent.Type type)
           
 

Uses of GameContext in rle.core.ui
 

Fields in rle.core.ui declared as GameContext
protected  GameContext UiActionBase.context
           
 

Methods in rle.core.ui that return GameContext
 GameContext ComponentPlugInBase.getContext()
          For convenience.
 GameContext MessageBar.getContext()
          For convenience.
 GameContext PerspectiveBase.getContext()
          For convenience.
 GameContext UiActionBase.getContext()
          For convenience.
 

Uses of GameContext in rle.core.vm
 

Fields in rle.core.vm declared as GameContext
protected  GameContext PlugInBase.context
           
protected  GameContext View.context
           
 

Methods in rle.core.vm that return GameContext
 GameContext PlugIn.getContext()
          For convenience.
 GameContext PlugInBase.getContext()
          For convenience.
 GameContext View.getContext()
          Access the GameContext.
 

Constructors in rle.core.vm with parameters of type GameContext
InfoGroupView(InfoGroupNode owner, GameContext context)
          Constructor to initialize a view.
InfoView(InfoNode owner, GameContext context)
          Initializes a view of an owner InfoNode.
View(DataNode owner, GameContext context)
          Initializes a view of an owner node.
 

Uses of GameContext in rle.simple
 

Classes in rle.simple that implement GameContext
 class SimpleGame
          The main class for the SimpleGame demo.
 

Uses of GameContext in rle.simple.player
 

Constructors in rle.simple.player with parameters of type GameContext
EquipmentListener(GameContext context)