Match the New PLayer menu item

public NewPlayerMatcher implements Matcher {

  public boolean matches(Component c) {
  	return c instanceof JMenuItem
            && "New Player".equals(((JMenuItem) c).getText());
  }

}

Previous | Next | Top | Cafe con Leche

Copyright 2005 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified September 28, 2005