Interface IMapAccess


public interface IMapAccess
Simple map like access for java objects in the parser. Allows for using abbreviated expressions like $object.a which is translated to $object.get(a)
  • Method Summary

    Modifier and Type
    Method
    Description
    get(Object key)
    Get an object from the map.
  • Method Details

    • get

      Object get(Object key)
      Get an object from the map.
      Parameters:
      key - The key
      Returns:
      The value.