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, 2006 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified January 3, 2006