FileDocCategorySizeDatePackage
PopupMenuUI.javaAPI DocJava SE 5 API1235Fri Aug 26 14:58:02 BST 2005javax.swing.plaf

PopupMenuUI

public abstract class PopupMenuUI extends ComponentUI
Pluggable look and feel interface for JPopupMenu.
version
1.16 12/19/03
author
Georges Saab
author
David Karlton

Fields Summary
Constructors Summary
Methods Summary
public javax.swing.PopupgetPopup(javax.swing.JPopupMenu popup, int x, int y)
Returns the Popup that will be responsible for displaying the JPopupMenu.

param
popup JPopupMenu requesting Popup
param
x Screen x location Popup is to be shown at
param
y Screen y location Popup is to be shown at.
return
Popup that will show the JPopupMenu
since
1.4

        PopupFactory popupFactory = PopupFactory.getSharedInstance();

        return popupFactory.getPopup(popup.getInvoker(), popup, x, y);
    
public booleanisPopupTrigger(java.awt.event.MouseEvent e)

since
1.3

	return e.isPopupTrigger();