Esempio n. 1
0
  public void read(BitStream messageBytes) throws CharacterCodingException, IOException {
    int stackCount = messageBytes.readRangedInt(0, MAX_INT);

    for (int i = 0; i < stackCount; i++) {
      SampleStackFrame frame = new SampleStackFrame();

      // Get the name.
      frame.name = messageBytes.readCachedString();

      // Filename/line are optionally present.
      frame.filename = messageBytes.readCachedString();
      if (frame.filename != null) frame.fileline = messageBytes.readRangedInt(0, MAX_INT);

      // Add to the beginning of the stack.
      frameList.add(0, frame);
    }
  }