Uses of Class
com.uwyn.rife.continuations.asm.ByteVector

Packages that use ByteVector
com.uwyn.rife.continuations.asm Provides a small and fast bytecode manipulation framework. 
com.uwyn.rife.continuations.asm.attrs Provides an implementation for optional class, field and method attributes. 
 

Uses of ByteVector in com.uwyn.rife.continuations.asm
 

Methods in com.uwyn.rife.continuations.asm that return ByteVector
 ByteVector ByteVector.putByte(int b)
          Puts a byte into this byte vector.
 ByteVector ByteVector.putByteArray(byte[] b, int off, int len)
          Puts an array of bytes into this byte vector.
 ByteVector ByteVector.putInt(int i)
          Puts an int into this byte vector.
 ByteVector ByteVector.putLong(long l)
          Puts a long into this byte vector.
 ByteVector ByteVector.putShort(int s)
          Puts a short into this byte vector.
 ByteVector ByteVector.putUTF8(String s)
          Puts an UTF8 string into this byte vector.
protected  ByteVector Attribute.write(ClassWriter cw, byte[] code, int len, int maxStack, int maxLocals)
          Returns the byte array form of this attribute.
 

Uses of ByteVector in com.uwyn.rife.continuations.asm.attrs
 

Methods in com.uwyn.rife.continuations.asm.attrs that return ByteVector
protected  ByteVector StackMapAttribute.write(ClassWriter cw, byte[] code, int len, int maxStack, int maxLocals)
           
 

Methods in com.uwyn.rife.continuations.asm.attrs with parameters of type ByteVector
 void StackMapFrame.write(ClassWriter cw, int maxStack, int maxLocals, ByteVector bv)
           
 


RIFE Project Page