Uses of Class
at.dms.classfile.ClassFileFormatException

Packages that use ClassFileFormatException
at.dms.classfile   
at.dms.kjc   
 

Uses of ClassFileFormatException in at.dms.classfile
 

Methods in at.dms.classfile that throw ClassFileFormatException
static Instruction[] InstructionIO.read(DataInput in, ConstantPool cp)
          Constructs an array of instructions from a class file stream
static Attribute Attribute.read(DataInput in, ConstantPool cp)
          Constructs an attribute from a class file stream
static Attribute Attribute.readCodeInfoAttribute(DataInput in, ConstantPool cp, Instruction[] insns)
          Constructs an sub-attribute of CodeInfo from a class file stream
static Attribute Attribute.readInterfaceOnly(DataInput in, ConstantPool cp)
          Constructs an attribute from a class file stream
 void MethodInfo.resolveConstants(ConstantPool cp)
          Insert or check location of constant value on constant pool
 void MethodInfo.write(ConstantPool cp, DataOutput out)
          Write this class into the the file (out) getting data position from the constant pool
 void ClassInfo.write(DataOutput out)
          Writes the content of the class to the specified output stream
 void ClassInfo.write(String destination)
          Writes the contents of the class to a file.
 

Constructors in at.dms.classfile that throw ClassFileFormatException
ClassInfo(DataInput in, boolean interfaceOnly)
          Constructs a class info structure from a class file stream.
CodeInfo(DataInput in, ConstantPool cp)
          Make up a new attribute
ConstantPool(DataInput in)
          Constructs a constant pool structure from a class file
ConstantValueAttribute(DataInput in, ConstantPool cp)
          Constructs a constant value attribute from a class file stream.
FieldInfo(DataInput in, ConstantPool cp)
          Constructs a field entry from a class file stream.
InnerClassTable(DataInput in, ConstantPool cp)
          Constructs a line number table attribute from a class file stream.
MethodInfo(DataInput in, ConstantPool cp, boolean interfaceOnly)
          Constructs a method entry from a class file stream.
SourceFileAttribute(DataInput in, ConstantPool cp)
          Constructs a source file attribute from a class file stream.
SyntheticAttribute(DataInput in, ConstantPool cp)
          Constructs a synthetic attribute from a class file stream.
 

Uses of ClassFileFormatException in at.dms.kjc
 

Methods in at.dms.kjc that throw ClassFileFormatException
 void CSourceClass.genCode(BytecodeOptimizer optimizer, String destination)
          Generates a JVM class file for this class.