本文整理汇总了Java中java.awt.peer.MenuBarPeer.delMenu方法的典型用法代码示例。如果您正苦于以下问题:Java MenuBarPeer.delMenu方法的具体用法?Java MenuBarPeer.delMenu怎么用?Java MenuBarPeer.delMenu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.peer.MenuBarPeer
的用法示例。
在下文中一共展示了MenuBarPeer.delMenu方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: remove
import java.awt.peer.MenuBarPeer; //导入方法依赖的package包/类
/**
* Removes the menu located at the specified
* index from this menu bar.
* @param index the position of the menu to be removed.
* @see java.awt.MenuBar#add(java.awt.Menu)
*/
public void remove(final int index) {
synchronized (getTreeLock()) {
Menu m = getMenu(index);
menus.removeElementAt(index);
MenuBarPeer peer = (MenuBarPeer)this.peer;
if (peer != null) {
m.removeNotify();
m.parent = null;
peer.delMenu(index);
}
if (helpMenu == m) {
helpMenu = null;
m.isHelpMenu = false;
}
}
}
示例2: remove
import java.awt.peer.MenuBarPeer; //导入方法依赖的package包/类
/**
* Removes the menu located at the specified
* index from this menu bar.
* @param index the position of the menu to be removed.
* @see java.awt.MenuBar#add(java.awt.Menu)
*/
public void remove(final int index) {
synchronized (getTreeLock()) {
Menu m = getMenu(index);
menus.removeElementAt(index);
MenuBarPeer peer = (MenuBarPeer)this.peer;
if (peer != null) {
peer.delMenu(index);
m.removeNotify();
}
m.parent = null;
if (helpMenu == m) {
helpMenu = null;
m.isHelpMenu = false;
}
}
}
示例3: remove
import java.awt.peer.MenuBarPeer; //导入方法依赖的package包/类
/**
* Removes the menu located at the specified
* index from this menu bar.
* @param index the position of the menu to be removed.
* @see java.awt.MenuBar#add(java.awt.Menu)
*/
public void remove(final int index) {
synchronized (getTreeLock()) {
Menu m = getMenu(index);
menus.removeElementAt(index);
MenuBarPeer peer = (MenuBarPeer)this.peer;
if (peer != null) {
peer.delMenu(index);
m.removeNotify();
m.parent = null;
}
if (helpMenu == m) {
helpMenu = null;
m.isHelpMenu = false;
}
}
}
示例4: remove
import java.awt.peer.MenuBarPeer; //导入方法依赖的package包/类
/**
* Removes the menu located at the specified
* index from this menu bar.
* @param index the position of the menu to be removed.
* @see java.awt.MenuBar#add(java.awt.Menu)
*/
public void remove(int index) {
synchronized (getTreeLock()) {
Menu m = getMenu(index);
menus.removeElementAt(index);
MenuBarPeer peer = (MenuBarPeer)this.peer;
if (peer != null) {
m.removeNotify();
m.parent = null;
peer.delMenu(index);
}
}
}
示例5: remove
import java.awt.peer.MenuBarPeer; //导入方法依赖的package包/类
/**
* Removes the menu at the specified index.
*
* @param index the index of the menu to remove from the menu bar
*/
public synchronized void remove(int index)
{
Menu m = (Menu) menus.remove(index);
MenuBarPeer mp = (MenuBarPeer) getPeer();
if (mp != null)
m.removeNotify();
m.setParent(null);
if (mp != null)
mp.delMenu(index);
}
示例6: remove
import java.awt.peer.MenuBarPeer; //导入方法依赖的package包/类
/**
* Removes the menu located at the specified
* index from this menu bar.
* @param index the position of the menu to be removed.
* @see java.awt.MenuBar#add(java.awt.Menu)
*/
public void remove(int index) {
synchronized (getTreeLock()) {
Menu m = getMenu(index);
menus.removeElementAt(index);
MenuBarPeer peer = (MenuBarPeer)this.peer;
if (peer != null) {
m.removeNotify();
m.parent = null;
peer.delMenu(index);
}
}
}