Package net.sf.rej.util

Examples of net.sf.rej.util.ByteSerializer


    this.index = (int) ByteToolkit.getLong(data, 1, 2, true);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.index);
    return ser.getBytes();
  }
View Full Code Here


    this.label = new Label(addr);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.label.getPosition() - dc.getPosition());
    return ser.getBytes();
  }
View Full Code Here

    this.index = (int) ByteToolkit.getLong(data, 1, 2, true);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.index);
    return ser.getBytes();
  }
View Full Code Here

    this.index = (int) ByteToolkit.getLong(data, 1, 2, true);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.index);
    return ser.getBytes();
  }
View Full Code Here

    this.label = new Label(addr);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.label.getPosition() - dc.getPosition());
    return ser.getBytes();
  }
View Full Code Here

    this.dimensions = (int) ByteToolkit.getLong(data, 3, 1, true);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.index);
    ser.addByte(this.dimensions);
    return ser.getBytes();
  }
View Full Code Here

    this.label = new Label(addr);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.label.getPosition() - dc.getPosition());
    return ser.getBytes();
  }
View Full Code Here

    this.nargs = (int) ByteToolkit.getLong(data, 3, 1, true);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.index);
    ser.addByte(this.nargs);
    ser.addByte(0);
    return ser.getBytes();
  }
View Full Code Here

    this.value = (int) ByteToolkit.getLong(data, 1, 2, true);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.value);
    return ser.getBytes();
  }
View Full Code Here

    this.label = new Label(addr);
  }

  @Override
  public byte[] getData(DecompilationContext dc) {
    ByteSerializer ser = new ByteSerializer(true);
    ser.addByte(OPCODE);
    ser.addShort(this.label.getPosition() - dc.getPosition());
    return ser.getBytes();
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.util.ByteSerializer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.