Class DBTraceProgramViewPropertyMapManager.DBTraceProgramViewIntPropertyMap

java.lang.Object
ghidra.trace.database.program.DBTraceProgramViewPropertyMapManager.AbstractDBTraceProgramViewPropertyMap<Integer>
ghidra.trace.database.program.DBTraceProgramViewPropertyMapManager.DBTraceProgramViewIntPropertyMap
All Implemented Interfaces:
IntPropertyMap, PropertyMap<Integer>
Enclosing class:
DBTraceProgramViewPropertyMapManager

protected class DBTraceProgramViewPropertyMapManager.DBTraceProgramViewIntPropertyMap extends DBTraceProgramViewPropertyMapManager.AbstractDBTraceProgramViewPropertyMap<Integer> implements IntPropertyMap
  • Constructor Details

  • Method Details

    • add

      public void add(Address addr, int value)
      Description copied from interface: IntPropertyMap
      Add an int value at the specified address.
      Specified by:
      add in interface IntPropertyMap
      Parameters:
      addr - address for the property
      value - value of the property
    • getInt

      public int getInt(Address addr) throws NoValueException
      Description copied from interface: IntPropertyMap
      Get the integer value at the given address.
      Specified by:
      getInt in interface IntPropertyMap
      Parameters:
      addr - the address from where to get the int value
      Returns:
      integer property value
      Throws:
      NoValueException - if there is no property value at addr.