Class VariableTypeFieldLocation

All Implemented Interfaces:
Cloneable, Comparable<ProgramLocation>

public class VariableTypeFieldLocation extends VariableLocation
The VariableTypeFieldLocation class provides specific information about the variable type field within a program location.
  • Constructor Details

    • VariableTypeFieldLocation

      public VariableTypeFieldLocation(Program program, Address locationAddr, Variable var, int charOffset)
      Construct a new VariableTypeFieldLocation object.
      Parameters:
      program - the program of the location
      locationAddr - the address of the listing location (i.e., referent code unit)
      var - the variable associated with this type field location.
      charOffset - the position within the function name string for this location.
    • VariableTypeFieldLocation

      public VariableTypeFieldLocation(Program program, Variable var, int charOffset)
      Construct a new VariableTypeFieldLocation object. Variable function entry point is the assumed listing location (i.e., referent code unit). Care should be taken if variable corresponds to an EXTERNAL function.
      Parameters:
      program - the program of the location
      var - the variable associated with this type field location.
      charOffset - the position within the function name string for this location.
    • VariableTypeFieldLocation

      public VariableTypeFieldLocation()
      Should only be used by XML restoration.
  • Method Details