Class DebugCodeView

  • All Implemented Interfaces:
    StructConverter

    public class DebugCodeView
    extends java.lang.Object
    implements StructConverter
    A class to represent the code view debug information.
    • Constructor Detail

      • DebugCodeView

        public DebugCodeView()
        DO NOT USE THIS CONSTRUCTOR, USE create*(GenericFactory ...) FACTORY METHODS INSTEAD.
    • Method Detail

      • getDebugDirectory

        public DebugDirectory getDebugDirectory()
        Returns the code view debug directory.
        Returns:
        the code view debug directory
      • getSymbolTable

        public DebugCodeViewSymbolTable getSymbolTable()
        Returns the code view symbol table.
        Returns:
        the code view symbol table
      • getPdbInfo

        public PdbInfoIface getPdbInfo()
        Returns the code view .PDB info.
        Returns:
        the code view .PDB info
      • toDataType

        public DataType toDataType()
                            throws DuplicateNameException
        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
        See Also:
        StructConverter.toDataType()