Lines Matching defs:documentation
62 protected String documentation;
399 * Get the class' documentation
402 return documentation;
406 * Return true if the given documentation string contains a deprecation
410 public static boolean containsDeprecated(String documentation) {
411 if (documentation == null) {
416 (scan = documentation.indexOf(paraDeprecated, scan)) >= 0;
421 char ch = documentation.charAt(beg);
431 if (end < documentation.length()) {
432 char ch = documentation.charAt(end);
2083 documentation = null;