Method show(Component invoker, int x, int y)
Return type: void
Member of:
javax.swing.JPopupMenu
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
popupMenu.show(getButton(), 15, 20);
2
menu.show(this, x, y);
3
popup.show(this,point.x,point.y);
4
paletteMenuView.getPopupMenu().show(this, p.x, p.y);
5
launcherPopupMenu.show(this.getContentPane(),0,0+this.getHeight());
6
menu.show(this, p.x, p.y);
7
_popupMenu.show(this, e.getX(), e.getY());
8
menu.show(this,(int)xPos,(int)yPos);
9
popup.show(this,point.x,point.y);
10
m_popup.show(invoker, 0, invoker.getHeight()); // below button
11
pm.show(this, x, -y);
12
filePopup.show(titleLab, evt.getX(), evt.getY());
13
this.jPopupMenu.show( e.getComponent(), e.getX(), e.getY() );
14
addressPopup.show( (Component)e.getSource(), e.getX(), e.getY());
15
jPopupMenuTree.show(jTreeDOM, e.getX(), e.getY());
16
nodeMenu.show((Component) e.getSource(), e.getX(), e.getY());
17
popup.show(tree, e.getX(), e.getY());
18
chooser.show(table, (int)rect.getX(), (int)rect.getY());
19
popup.show(tree, e.getX(), e.getY());
20
certPopupMenu.show(certificateTable,evt.getX(),evt.getY());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.