當前位置: 首頁>>代碼示例>>Java>>正文


Java JToolBar.getComponents方法代碼示例

本文整理匯總了Java中javax.swing.JToolBar.getComponents方法的典型用法代碼示例。如果您正苦於以下問題:Java JToolBar.getComponents方法的具體用法?Java JToolBar.getComponents怎麽用?Java JToolBar.getComponents使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.swing.JToolBar的用法示例。


在下文中一共展示了JToolBar.getComponents方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: update

import javax.swing.JToolBar; //導入方法依賴的package包/類
public void update (String containerCtx) {
//        System.err.println("ToolbarFactory update " + containerCtx);
        JToolBar tb = (JToolBar) mappings.get(munge(containerCtx));
        synchronized (tb.getTreeLock()) {
    //        System.err.println("Toolbar to update: " + tb);
            ActionProvider provider = getEngine().getActionProvider();
            if (tb != null) {
                Component[] c = tb.getComponents();
                for (int i=0; i < c.length; i++) {
                    if (c[i] instanceof AbstractButton) {
                        AbstractButton b = (AbstractButton) c[i];
                        String action = (String) b.getClientProperty (KEY_ACTION);
                        configureToolbarButton (b, containerCtx, action, provider,
                            getEngine().getContextProvider().getContext());
                    }
                }

            } else {
                System.err.println("Asked to update non existent toolbar " + containerCtx);
            }
        }
    }
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:23,代碼來源:AbstractToolbarFactory.java

示例2: updateBar

import javax.swing.JToolBar; //導入方法依賴的package包/類
/**
 * Updates the selected state of the buttons on one of the toolbars.
 * 
 * @param toolbar
 *          toolbar to update
 */
protected void updateBar(JToolBar toolbar) {
  Component btns[] = toolbar.getComponents();
  if(btns != null) {
    for(Component btn : btns) {
      if(btn instanceof ViewButton) ((ViewButton)btn).updateSelected();
    }
  }
}
 
開發者ID:GateNLP,項目名稱:gate-core,代碼行數:15,代碼來源:DocumentEditor.java

示例3: eComponents

import javax.swing.JToolBar; //導入方法依賴的package包/類
/**
 * enable / disable components
 *
 * @param t
 * @param s
 */
private void eComponents(JToolBar t, boolean s) {
    for (Component c : t.getComponents()) {
        c.setEnabled(s);
    }
}
 
開發者ID:CognizantQAHub,項目名稱:Cognizant-Intelligent-Test-Scripter,代碼行數:12,代碼來源:UI2.java


注:本文中的javax.swing.JToolBar.getComponents方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。