Java Swing Menu getParsedElements(MenuElement[] elements)

Here you can find the source of getParsedElements(MenuElement[] elements)

Description

get Parsed Elements

License

Apache License

Declaration

public static List<String> getParsedElements(MenuElement[] elements) 

Method Source Code


//package com.java2s;
/*//www  . j  a v  a2s  .c o  m
 * Copyright 2008-2011 Nokia Siemens Networks Oyj
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import javax.swing.*;
import java.util.ArrayList;
import java.util.List;

public class Main {
    public static List<String> getParsedElements(MenuElement[] elements) {
        List<String> returnable = new ArrayList<String>();
        for (MenuElement e : elements) {
            if (JMenuItem.class.isAssignableFrom(e.getClass())) {
                returnable.add(((JMenuItem) e).getText());
            }
        }
        return returnable;
    }
}

Related

  1. getAllMenuSubElements( MenuElement root)
  2. getMenuFontHeight()
  3. getMenuKeyStroke(String stroke)
  4. getMenuSectionLabel(String string)
  5. getOperationMenu(MenuElement currentMenu, String path)
  6. getTheMenuBar(String[][] arr)
  7. hasIcons(MenuElement menuElement)
  8. installMenuKeyListener(Component cmp, MenuKeyListener keyListener)
  9. isMenuCrossMenuMnemonics()