Пример #1
0
  public void write(DataOutput out) throws InvalidByteCodeException, IOException {

    out.writeByte(CONSTANT_INTEGER);
    super.write(out);
    if (debug) debug("wrote ");
  }
Пример #2
0
 protected void debug(String message) {
   super.debug(message + getTagVerbose() + " with bytes " + bytes);
 }
Пример #3
0
  public void read(DataInput in) throws InvalidByteCodeException, IOException {

    super.read(in);
    if (debug) debug("read ");
  }