• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.robolectric.simulator.pluginapi;
2 
3 import com.google.common.annotations.Beta;
4 import javax.swing.JPopupMenu;
5 
6 /** A plugin that makes it possible to customize the right click menu in the simulator. */
7 @Beta
8 public interface MenuCustomizer {
customizePopupMenu(JPopupMenu menu)9   void customizePopupMenu(JPopupMenu menu);
10 }
11