Example #1
0
 protected void debug(String message) {
   super.debug(
       message
           + "field with access flags "
           + printAccessFlags(accessFlags)
           + ", name_index "
           + nameIndex
           + ", descriptor_index "
           + descriptorIndex
           + ", "
           + getLength(attributes)
           + " attributes");
 }
Example #2
0
  public void write(DataOutput out) throws InvalidByteCodeException, IOException {

    super.write(out);
    if (debug) debug("wrote ");
  }
Example #3
0
  public void read(DataInput in) throws InvalidByteCodeException, IOException {

    super.read(in);

    if (debug) debug("read ");
  }