Lines Matching full:comments
14 * Handle the parsing of an XML file and the generation of a Comments object.
16 * All HTML written for the comments sections in the report must
28 /** The Comments object which is populated from the XML file. */
29 public Comments comments_ = null;
44 public CommentsHandler(Comments comments) { in CommentsHandler() argument
45 comments_ = comments; in CommentsHandler()
62 if (localName.compareTo("comments") == 0) { in startElement()
66 System.out.println("Error: no identifier found in the comments XML file."); in startElement()
75 …System.out.println("Warning: API identifier in the comments XML file (" + filename2 + ") differs f… in startElement()
125 * the comments which are waiting for it.
134 currentText.compareTo(Comments.placeHolderText) != 0) { in addTextToComments()
167 if (Comments.isMinimizedTag(currentHTMLTag)) { in addStartTagToText()
185 if (!Comments.isMinimizedTag(currentHTMLTag)) in addEndTagToText()
190 System.out.println("Warning (" + e.getLineNumber() + "): parsing XML comments file:" + e); in warning()
195 System.out.println("Error (" + e.getLineNumber() + "): parsing XML comments file:" + e); in error()
201 … System.out.println("Fatal Error (" + e.getLineNumber() + "): parsing XML comments file:" + e); in fatalError()