Java JPopupMenu findMenuComponent(JPopupMenu menu, String menuComponentName)

Here you can find the source of findMenuComponent(JPopupMenu menu, String menuComponentName)

Description

find Menu Component

License

Open Source License

Declaration

public static Component findMenuComponent(JPopupMenu menu,
            String menuComponentName) 

Method Source Code

//package com.java2s;
/*/*from   w  w w. jav  a2 s .com*/
 This file is part of RouteConverter.

 RouteConverter is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 RouteConverter is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with RouteConverter; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

 Copyright (C) 2007 Christian Pesch. All Rights Reserved.
 */

import javax.swing.*;
import java.awt.*;

public class Main {
    public static Component findMenuComponent(JPopupMenu menu,
            String menuComponentName) {
        for (int i = 0; i < menu.getComponentCount(); i++) {
            Component component = menu.getComponent(i);
            if (menuComponentName.equals(component.getName()))
                return component;
        }
        return null;
    }

    public static Component findMenuComponent(JMenu menu,
            String menuComponentName) {
        for (int i = 0; i < menu.getMenuComponentCount(); i++) {
            Component component = menu.getMenuComponent(i);
            if (menuComponentName.equals(component.getName()))
                return component;
        }
        return null;
    }

    public static Component findMenuComponent(JMenuBar menuBar,
            String menuName, String menuComponentName) {
        JMenu menu = findMenu(menuBar, menuName);
        if (menu != null) {
            return findMenuComponent(menu, menuComponentName);
        }
        return null;
    }

    public static JMenu findMenu(JMenuBar menuBar, String menuName) {
        for (int i = 0; i < menuBar.getMenuCount(); i++) {
            JMenu menu = menuBar.getMenu(i);
            if (menuName.equals(menu.getName()))
                return menu;
        }
        return null;
    }

    public static JMenu findMenu(JMenuBar menuBar, String menuName,
            String subMenuName) {
        Component component = findMenuComponent(menuBar, menuName,
                subMenuName);
        return component instanceof JMenu ? (JMenu) component : null;
    }
}

Related

  1. cleanPopupLayoutMetrics(JPopupMenu popupMenu)
  2. computePopupLocation(MouseEvent event, Component rel, JPopupMenu popup)
  3. createPopupMenu()
  4. createPopupMenu(String menuText, JPopupMenu menu, ActionListener listener)
  5. ensurePopupIsOnScreen(JPopupMenu popup)
  6. findSubMenu(JPopupMenu popupMenu, String name)
  7. getMousePopupAdapter(final Component component, final JPopupMenu popup)
  8. getOnlyPopupMenu(Container owner)
  9. getPopupMenu()