Lines Matching refs:details
10 * See the file LICENSE.txt for copyright details.
359 /** The file used to output details of missing @since tags. */
386 String details = null;
388 details = currIndex.pkgName_ + "." + currIndex.name_;
390 details = details + " Interface";
392 details = details + " Class";
394 details = currIndex.pkgName_ + "." + currIndex.name_ + " Constructor (" + currIndex.type_ + ")";
396 details = currIndex.pkgName_ + "." + currIndex.className_ + " " + "Method " + currIndex.name_ + "(" + currIndex.type_ + ")";
398 details = currIndex.pkgName_ + "." + currIndex.className_ + " " + "Field " + currIndex.name_;
405 missingSincesFile.println("NO DOC BLOCK: " + details);
407 System.out.println("Warning: the doc block for the new element: " + details + " is missing, so there is no @since tag");
410 missingSincesFile.println("OK: " + details);
413 missingSincesFile.println("MISSING @SINCE TAG: " + details);
415 System.out.println("Warning: the doc block for the new element: " + details + " is missing an @since tag");
1005 * See the file LICENSE.txt for copyright details.