Class VariableCommentFieldLocation

All Implemented Interfaces:
Cloneable, Comparable<ProgramLocation>

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

    • VariableCommentFieldLocation

      public VariableCommentFieldLocation(Program program, Address locationAddr, Variable var, int charOffset)
      Construct a new VariableCommentFieldLocation object.
      Parameters:
      program - the program of the location
      locationAddr - the address of the listing location (i.e., referent code unit)
      var - the variable which has its comment in the field.
      charOffset - the position within the variable comment string for this location.
    • VariableCommentFieldLocation

      public VariableCommentFieldLocation(Program program, Variable var, int charOffset)
      Construct a new VariableCommentFieldLocation 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 which has its comment in the field.
      charOffset - the position within the variable comment string for this location.
    • VariableCommentFieldLocation

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