Home
last modified time | relevance | path

Searched refs:currComment (Results 1 – 2 of 2) sorted by relevance

/external/jdiff/src/jdiff/
DCommentsHandler.java140 SingleComment currComment = (SingleComment)(iter.next()); in addTextToComments() local
141 if (currComment.text_ == null) in addTextToComments()
142 currComment.text_ = currentText; in addTextToComments()
144 currComment.text_ += currentText; in addTextToComments()
145 comments_.addComment(currComment); in addTextToComments()
DComments.java402 SingleComment currComment = (SingleComment)(iter.next()); in emitComments() local
403 if (!currComment.isUsed_) in emitComments()
406 outputFile.println(" <identifier id=\"" + currComment.id_ + "\"/>"); in emitComments()
408 outputFile.println(" " + currComment.text_); in emitComments()
411 if (!currComment.isUsed_) in emitComments()
424 SingleComment currComment = (SingleComment)(iter.next()); in dump() local
426 System.out.println("id = " + currComment.id_); in dump()
427 System.out.println("text = \"" + currComment.text_ + "\""); in dump()
428 System.out.println("isUsed = " + currComment.isUsed_); in dump()