Ejemplo n.º 1
0
  /** Tokenizes the comment region. */
  protected void tokenizeRegion() {

    int index = 0;
    CommentLine line = null;

    for (final Iterator iterator = fLines.iterator(); iterator.hasNext(); index++) {

      line = (CommentLine) iterator.next();

      line.scanLine(index);
      line.tokenizeLine(index);
    }
  }