Searched defs:qualifier (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java620 * Return true if the given qualifier should be excluded and false otherwise.
621 * @param qualifier the qualifier to check.
623 public boolean shouldExcludeQualifier(String qualifier){ argument
625 excludedQualifiers.contains(qualifier) ||
626 excludedQualifiers.contains(qualifier + ".*")) {
630 while ((index = qualifier.indexOf(".", index + 1)) != -1) {
631 if (excludedQualifiers.contains(qualifier.substring(0, index + 1) + "*")) {
640 * Return the qualified name of the <code>ClassDoc</code> if it's qualifier is not excluded. Otherwise,

Completed in 41 milliseconds