FileDocCategorySizeDatePackage
ConstantUtf8Info.javaAPI DocJ2ME CLDC 1.11560Wed Feb 05 15:56:04 GMT 2003kdp.classparser.constantpoolclasses

ConstantUtf8Info

public class ConstantUtf8Info extends ConstantPoolInfo
Encapsulates a CONSTANT_Utf8 member of a Java class file constant pool.
author
Aaron Dietrich
version
$Id: ConstantUtf8Info.java,v 1.1.1.1 2000/07/07 13:34:24 jrv Exp $ Revision History $Log: ConstantUtf8Info.java,v $ Revision 1.1.1.1 2000/07/07 13:34:24 jrv Initial import of kdp code Revision 1.1.1.1 2000/05/31 19:14:48 ritsun Initial import of kvmdt to CVS Revision 1.1 2000/04/25 00:34:06 ritsun Initial revision

Fields Summary
private int
length
length of this string
private String
bytes
value of the string
Constructors Summary
public ConstantUtf8Info(DataInputStream iStream)
Constructor. Creates a ConstantUtf8Info object.

param
iStream input stream to read from
exception
IOException just pass IOExceptions up

      tag = ConstantPoolInfo.CONSTANT_Utf8;
      
      bytes = new String (iStream.readUTF ());
      
      length = bytes.length ();
     
Methods Summary
public java.lang.StringtoString()
Returns the string represented by this ConstantUtf8Info object.

return
String the string this encapsulates

      return bytes;