blob: 46099bbee5c43c6228c2edb416b3b0f696239394 [file] [log] [blame]
package javadoc.testBug53276;
public interface TestA {
/**
* Return the string specifying the pattern of this ignore. The string
* may include the wildcard characters '*' and '?'. If you wish to
* include either of these characters verbatim (i.e. you do not wish
* them to expand to wildcards), you must escape them with a backslash '\'.
* <p>
* If you are using string literals in Java to represent the patterns, don't
* forget escape characters are represented by "\\".
*
* @return the pattern represented by this ignore info
*/
public String getPattern();
}