HomeSort by relevance Sort by last modified time
    Searched full:currcomment (Results 1 - 2 of 2) sorted by null

  /external/jdiff/src/jdiff/
CommentsHandler.java 140 SingleComment currComment = (SingleComment)(iter.next());
141 if (currComment.text_ == null)
142 currComment.text_ = currentText;
144 currComment.text_ += currentText;
145 comments_.addComment(currComment);
Comments.java 404 SingleComment currComment = (SingleComment)(iter.next());
405 if (!currComment.isUsed_)
408 outputFile.println(" <identifier id=\"" + currComment.id_ + "\"/>");
410 outputFile.println(" " + currComment.text_);
413 if (!currComment.isUsed_)
426 SingleComment currComment = (SingleComment)(iter.next());
428 System.out.println("id = " + currComment.id_);
429 System.out.println("text = \"" + currComment.text_ + "\"");
430 System.out.println("isUsed = " + currComment.isUsed_);

Completed in 332 milliseconds