Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7796773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:28:20+00:00 2026-06-01T23:28:20+00:00

I wish to add the same JMenuItems to multiple JMenus, but it only shows

  • 0

I wish to add the same JMenuItems to multiple JMenus, but it only shows up for the last JMenu. Here’s the code that I’ve written. I want the three JMenu items to be shown for all of the JMenu states. With this code the first two states have no JMenuItems, all the three are there only with the last one.

import javax.swing.*;
import java.awt.event.*;  
public class Menu extends JFrame{
  public Menu()
  {
    super("Funky Menu");
JMenu [] states = new JMenu [3];
JMenuItem [] items = new JMenuItem [3];
//Initializing the items
items[0] = new JMenuItem("Industries");
items[0].setMnemonic('I');
items[1] = new JMenuItem("Hill Stations");
items[1].setMnemonic('H');
items[2] = new JMenuItem("Top Institutions");
items[2].setMnemonic('T');
//Initializing the states
//I've set the adjacent keys as the Mnemonics for easy user interaction
//though it is less intuitive, it can vary on the user preference.
states[0] =  new JMenu("Tamil Nadu"); states[0].setMnemonic('Q');
states[1] = new JMenu("West Bengal"); states[1].setMnemonic('W');
states[2] = new JMenu("Haryana"); states[2].setMnemonic('E');
//Adding all the items to each of the states
for(int i=0; i<3; ++i)
{
  for(int j=0; j<3; ++j)
  {
    states[i].add(items[j]);
  }
}
//adding action listener to menu items
for(int j=0; j<3; ++j)
{
  items[j].addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent evt)
  {
    //The next few lines could be clubbed together in one but for
    //clarity sake I write them seperately
    JMenuItem currentItem = (JMenuItem) evt.getSource();
    String textToDisplay = currentItem.getText();
    System.out.println(textToDisplay + " : located in ...");
    //one liner : System.out.println(((JMenuItem) evt.getSource()).getText() + " : located in ...");
  }
  });
}
//finally to fix up the MenuBar
JMenuBar bar = new JMenuBar();
setJMenuBar(bar);
for(int i=0; i<3; ++i)
{
  bar.add(states[i]);
}
getContentPane();
//TODO Create a JLabel add it to the contents
//Instead of writing to the console, update the frames text
setSize(500, 500);
setVisible(true);
 }

  public static void main(String[] args)
  {
    Menu app = new Menu();
    app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:28:21+00:00Added an answer on June 1, 2026 at 11:28 pm

    I didn’t check your code, but a component can only have one parent. You need to create separate menu items (possibly using the same Action object).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wish to add a singleton method to a particular object. I wish that
I wish to add some type of business logic constraint to a table, but
I have the following code that loads element from a remote page (under same
I have the following code that loads element from a remote page (under same
I am attempting to add another child array to the last child array. Here
I wish to add the mouseover events to a panel which contains more than
I wish to add ul tag to my jsf in some cases. My codes
I wish to add '1' to the id conCol to make it conCol1. Please
I wish to add some sort of a Write a Review or Rate Us
I wish to add new contacts in WP7. I have used the following private

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.