コード例 #1
0
ファイル: FieldInfo.java プロジェクト: erikrenz/jclasslib
 protected void debug(String message) {
   super.debug(
       message
           + "field with access flags "
           + printAccessFlags(accessFlags)
           + ", name_index "
           + nameIndex
           + ", descriptor_index "
           + descriptorIndex
           + ", "
           + getLength(attributes)
           + " attributes");
 }
コード例 #2
0
ファイル: FieldInfo.java プロジェクト: erikrenz/jclasslib
  public void write(DataOutput out) throws InvalidByteCodeException, IOException {

    super.write(out);
    if (debug) debug("wrote ");
  }
コード例 #3
0
ファイル: FieldInfo.java プロジェクト: erikrenz/jclasslib
  public void read(DataInput in) throws InvalidByteCodeException, IOException {

    super.read(in);

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