rle.core.vm
Class InfoView

java.lang.Object
  extended by rle.core.vm.View
      extended by rle.core.vm.InfoView

public class InfoView
extends View

Provides a view of an InfoNode.


Field Summary
 
Fields inherited from class rle.core.vm.View
context, owner
 
Constructor Summary
InfoView(InfoNode owner, GameContext context)
          Initializes a view of an owner InfoNode.
 
Method Summary
 boolean check(java.lang.String s)
          Attempt to retrieve the boolean value s.
 PlugIn createPlugIn()
          Creates a PlugIn assuming that this node uses the "plug-in" attribute set.
 PlugIn createPlugIn(java.lang.String key)
          Creates a PlugIn with the specified key.
 java.lang.Object get(java.lang.String s)
          Retrieve a value directly from the underlying node's map.
 java.awt.Color getColor(java.lang.String s)
           
 java.lang.Double getDouble(java.lang.String s)
          Attempt to retrieve a double value from the underlying node.
 java.lang.Integer getInt(java.lang.String s)
          Attempt to retrieve an int value from the underlying node.
 java.lang.Long getLong(java.lang.String s)
          Attempt to retrieve a long value from the underlying node.
 java.lang.Number getNumber(java.lang.String key)
           
 java.lang.Number getNumber(java.lang.String key, java.lang.Number def)
           
 java.lang.String getString(java.lang.String s)
           
 java.lang.String getTranslation(java.lang.String key)
          Return a translation in the specified language, if one is provided, or the English value if no translation is found.
 
Methods inherited from class rle.core.vm.View
equals, findGroup, findInfo, getContext, hashCode, id, infoGroupList, infoList, infoListRecursive, node, pathId
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InfoView

public InfoView(InfoNode owner,
                GameContext context)
Initializes a view of an owner InfoNode.

Parameters:
owner -
lang - - the language to use
Method Detail

check

public boolean check(java.lang.String s)
Attempt to retrieve the boolean value s.

Parameters:
s -
Returns:

getColor

public java.awt.Color getColor(java.lang.String s)

getInt

public java.lang.Integer getInt(java.lang.String s)
Attempt to retrieve an int value from the underlying node. If the value is not null, and cannot be parsed into an int, an exception will be thrown. Also, if the value is neither null, an integer, or a string, a ClassCastException will occur.

Parameters:
s -
Returns:

getDouble

public java.lang.Double getDouble(java.lang.String s)
Attempt to retrieve a double value from the underlying node. If the value is not null, and cannot be parsed into a double, an exception will be thrown. Also, if the value is neither null, a Number, or a string, a ClassCastException will occur.

Parameters:
s -
Returns:

getNumber

public java.lang.Number getNumber(java.lang.String key)

getNumber

public java.lang.Number getNumber(java.lang.String key,
                                  java.lang.Number def)

getString

public java.lang.String getString(java.lang.String s)

getLong

public java.lang.Long getLong(java.lang.String s)
Attempt to retrieve a long value from the underlying node. If the value is not null, and cannot be parsed into a long, an exception will be thrown. Also, if the value is neither null, a long, or a string, a ClassCastException will occur.

Parameters:
s -
Returns:

get

public java.lang.Object get(java.lang.String s)
Retrieve a value directly from the underlying node's map.

Parameters:
s -
Returns:

getTranslation

public java.lang.String getTranslation(java.lang.String key)
Return a translation in the specified language, if one is provided, or the English value if no translation is found.

Parameters:
key -
Returns:

createPlugIn

public PlugIn createPlugIn()
Creates a PlugIn assuming that this node uses the "plug-in" attribute set.


createPlugIn

public PlugIn createPlugIn(java.lang.String key)
Creates a PlugIn with the specified key.