Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Faylixe/4f823121e559bbb2e12c to your computer and use it in GitHub Desktop.
Save Faylixe/4f823121e559bbb2e12c to your computer and use it in GitHub Desktop.
Sample for menu builder.
public Runnable createActivable(final String label, final ActionListener listener) {
final JMenuItem item = createItem(label, listener);
item.setEnabled(false);
return () -> item.setEnabled(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment