Uses of Class
com.cmpware.elf.VariableType

Packages that use VariableType
com.cmpware.elf   
 

Uses of VariableType in com.cmpware.elf
 

Subclasses of VariableType in com.cmpware.elf
 class ArrayType
          This class stores all the data necessary for a DWARF array variable type.
 class MemberType
          This class stores all the data necessary for a DWARF structure member.
 class ScalarType
          This class stores all the data necessary for a DWARF Scalar variable type.
 class StructType
          This class stores all the data necessary for a DWARF Struct variable type.
 

Fields in com.cmpware.elf declared as VariableType
 VariableType ArrayType.arrayElementType
          The array element type
 VariableType MemberType.memberType
          The structure member type
 VariableType VariableType.parent
          The parent VariableType
 VariableType Variable.type
          The type of this variable
 

Methods in com.cmpware.elf that return VariableType
static VariableType VariableType.getVariableType(VariableType parent, Variable variable, Tag tag)
          This method parses the DWARF2 type data associated with a variable and returns the appropriate data structures.
 

Methods in com.cmpware.elf with parameters of type VariableType
static ArrayType ArrayType.getArrayType(VariableType parent, Variable variable, Tag tag)
          This method returns a Scalar Type with data filled in from the ELF /DWARF tag.
static MemberType MemberType.getMemberType(VariableType parent, Variable variable, Tag tag)
          This method returns a structure member with data filled in from the ELF /DWARF tag.
static ScalarType ScalarType.getScalarType(VariableType parent, Variable variable, Tag typeTag)
          This method returns a Scalar Type with data filled in from the ELF /DWARF tag.
static StructType StructType.getStructType(VariableType parent, Variable variable, Tag tag)
          This method returns a Struct Type with data filled in from the ELF /DWARF tag.
static VariableType VariableType.getVariableType(VariableType parent, Variable variable, Tag tag)
          This method parses the DWARF2 type data associated with a variable and returns the appropriate data structures.