* @throws NullPointerException if the given regular expression pattern is <code>null</code>.
* @throws LocationUnavailableException if an element matching the given regular expression pattern cannot be found.
* @since 1.2
*/
public void clickItem(JList list, Pattern pattern, MouseButton button, int times) {
clickItem(list, new PatternTextMatcher(pattern), button, times);
}