Class FieldDescriptor

java.lang.Object
ghidra.app.util.bin.format.swift.types.FieldDescriptor
All Implemented Interfaces:
SwiftStructure, StructConverter

public final class FieldDescriptor extends Object implements SwiftStructure
Represents a Swift FieldDescriptor structure
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • getMangledTypeName

      public String getMangledTypeName()
      Gets the mangled type name
      Returns:
      The mangled type name
    • getSuperclass

      public int getSuperclass()
      Gets the superclass
      Returns:
      The superclass
    • getKind

      public int getKind()
      Gets the kind
      Returns:
      The kind
    • getFieldRecordSize

      public int getFieldRecordSize()
      Gets the field record size
      Returns:
      The field record size
    • getNumFields

      public int getNumFields()
      Gets the number of fields
      Returns:
      The number of fields
    • getFieldRecords

      public List<FieldRecord> getFieldRecords()
      Gets the List of FieldRecords
      Returns:
      The List of FieldRecords
    • getStructureName

      public String getStructureName()
      Description copied from interface: SwiftStructure
      Gets the name of the SwiftStructure
      Specified by:
      getStructureName in interface SwiftStructure
      Returns:
      The name of the SwiftStructure
    • getDescription

      public String getDescription()
      Description copied from interface: SwiftStructure
      Gets a short description of the SwiftStructure
      Specified by:
      getDescription in interface SwiftStructure
      Returns:
      A short description of the SwiftStructure
    • toDataType

      public DataType toDataType() throws DuplicateNameException, IOException
      Description copied from interface: StructConverter
      Returns a structure datatype representing the contents of the implementor of this interface.

      For example, given:

       class A {
           int foo;
           double bar;
       }
       

      The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.

      Specified by:
      toDataType in interface StructConverter
      Returns:
      returns a structure datatype representing the implementor of this interface
      Throws:
      DuplicateNameException - when a datatype of the same name already exists
      IOException
      See Also: