本文整理了Java中javax.swing.JMenu.revalidate()
方法的一些代码示例,展示了JMenu.revalidate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JMenu.revalidate()
方法的具体详情如下:
包路径:javax.swing.JMenu
类名称:JMenu
方法名:revalidate
暂无
代码示例来源:origin: org.zaproxy/zap
private void addMenuHelper(JMenu menu, List<JMenuItem> items, int existingCount) {
for (JMenuItem item : items) {
if (item != null) {
if (item == ExtensionHookMenu.MENU_SEPARATOR) {
menu.addSeparator();
continue;
}
menu.add(item, menu.getItemCount() - existingCount);
}
}
menu.revalidate();
}
代码示例来源:origin: org.zaproxy/zap
private void removeMenuHelper(JMenu menu, List<JMenuItem> items) {
for (JMenuItem item : items) {
if (item != null) {
menu.remove(item);
}
}
menu.revalidate();
}
代码示例来源:origin: com.eas.platypus/platypus-js-forms
@ScriptFunction(jsDoc = CLEAR_JSDOC)
@Override
public void clear() {
super.removeAll();
super.revalidate();
super.repaint();
}
代码示例来源:origin: com.eas.platypus/platypus-js-forms
@ScriptFunction(jsDoc = REMOVE_JSDOC, params = {"component"})
@Override
public void remove(JComponent aComp) {
if (aComp instanceof JMenuItem) {
super.remove((JMenuItem) aComp);
} else {
super.remove(aComp);
}
super.revalidate();
super.repaint();
}
代码示例来源:origin: net.sf.taverna.t2.workbench/file-impl
workflowsMenu.revalidate();
代码示例来源:origin: net.sf.taverna.t2.ui-impl/file-impl
workflowsMenu.revalidate();
代码示例来源:origin: org.jvnet.hudson/embedded-rhino-debugger
windowMenu.revalidate();
代码示例来源:origin: com.github.houbie/rhino-mod
windowMenu.revalidate();
代码示例来源:origin: net.sf.taverna.t2.ui-impl/file-impl
protected void updateRecentMenuGUI() {
int items = 0;
menu.removeAll();
synchronized (recents) {
for (Recent recent : recents) {
if (++items >= MAX_ITEMS) {
break;
}
OpenRecentAction openRecentAction = new OpenRecentAction(recent);
if (fileManager.getDataflowBySource(recent.getDataflowSource()) != null) {
openRecentAction.setEnabled(false);
} // else setEnabled(true)
JMenuItem menuItem = new JMenuItem(openRecentAction);
if (items < 10) {
openRecentAction.putValue(Action.NAME, items + " " + openRecentAction.getValue(Action.NAME));
menuItem.setMnemonic(KeyEvent.VK_0 + items);
}
menu.add(menuItem);
}
}
menu.setEnabled(items > 0);
menu.revalidate();
}
代码示例来源:origin: ro.isdc.wro4j/rhino
windowMenu.revalidate();
代码示例来源:origin: com.github.tntim96/rhino
windowMenu.revalidate();
内容来源于网络,如有侵权,请联系作者删除!