Esempio n. 1
0
  private void executeLineTable(ByteBuffer bb, DataOutputStream os)
      throws JdwpException, IOException {
    ReferenceTypeId refId = idMan.readReferenceTypeId(bb);
    Class<?> clazz = refId.getType();

    VMMethod method = VMMethod.readId(clazz, bb);
    LineTable lt = method.getLineTable();
    lt.write(os);
  }