Class FunctionReturnTypeFieldLocation

All Implemented Interfaces:
Cloneable, Comparable<ProgramLocation>

public class FunctionReturnTypeFieldLocation extends FunctionSignatureFieldLocation
The FunctionReturnTypeFieldLocation class provides specific information about the Function Return Type field within a program location.
  • Constructor Details

    • FunctionReturnTypeFieldLocation

      public FunctionReturnTypeFieldLocation(Program program, Address locationAddr, Address functionAddr, int charOffset, String signature, String returnType)
      Construct a new FunctionReturnTypeFieldLocation object.
      Parameters:
      program - the program of the location
      locationAddr - the address of the listing location (i.e., referent code unit)
      functionAddr - the function address
      charOffset - the position within the function signature string for this location.
      signature - the function signature string for this location.
      returnType - the function return type String at this location.
    • FunctionReturnTypeFieldLocation

      public FunctionReturnTypeFieldLocation(Program program, Address functionAddr, int col, String signature, String returnType)
      Construct a new FunctionReturnTypeFieldLocation object.
      Parameters:
      program - the program of the location
      functionAddr - the function address
      col - the position within the function signature string for this location.
      signature - the function signature string for this location.
      returnType - the function return type String at this location.
    • FunctionReturnTypeFieldLocation

      public FunctionReturnTypeFieldLocation(Program program, Address functionAddr, String returnType)
      Construct a new FunctionReturnTypeFieldLocation object that is field based.

      Parameters:
      program - the program of the location
      functionAddr - the function address
      returnType - the function return type String at this location.
    • FunctionReturnTypeFieldLocation

      public FunctionReturnTypeFieldLocation()
      Default constructor needed for restoring a program location from XML
  • Method Details