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 6339911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T19:44:15+00:00 2026-05-24T19:44:15+00:00

I have four columns of buttons in my program. Buttons move between columns when

  • 0

I have four columns of buttons in my program. Buttons move between columns when assigned new ones. Instead of declaring 4 separate arraylists to store the buttons, is there a way to create 1 array of arraylists so I can simply itterate through the array?

I’ve tried List<JButton>[] lists = new ArrayList<JButton>[5];

But that won’t work. What am I missing?

EDIT:

for(int i = 0; i < 5; i++){
            if(choiceList.getSelectedIndex() == i){
                if(btnPersons[nameList.getSelectedIndex()].getX() == column[i]){
                    JOptionPane.showMessageDialog(null, "Error - Name already present in the column.","", 1);
                }else{
                    for(int j = 0; j < 5; j++){
                        if(lists[j].get(i) != null){
                            lists[j].remove(btnPersons[nameList.getSelectedIndex()]);
                        }
                    }
                    lists[i].add(btnPersons[nameList.getSelectedIndex()]);
                    lists[i].get(i).setBounds(column[i], ROWS[i], 125, 20);
                    //reloadLocations();
                }
            }
        }

This is my code currently.Once a new column is selected it checks to see which listthe button was in and removes it, then adds it to the new list. But my new problem is that using lists[i] will no longer work. Idk how to properly loop through my list of arraylists using this declaration:

List<ArrayList<JButton>> lists = new ArrayList<ArrayList<JButton>>(); 
  • 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-05-24T19:44:16+00:00Added an answer on May 24, 2026 at 7:44 pm

    You have to keep a list of lists of JButton objects:

    List<List<JButton>> lists = new ArrayList<List<JButton>>();
    // populate (replace with your code)
    lists.add(Arrays.asList(new JButton("list 1, button 1"), new JButton("list 1, button 2")));
    lists.add(Arrays.asList(new JButton("list 2, button 3"), new JButton("list 2, button 4")));
    lists.add(Arrays.asList(new JButton("list 3, button 5"), new JButton("list 3, button 6")));
    lists.add(Arrays.asList(new JButton("list 4, button 7"), new JButton("list 4, button 8")));
    
    // iterate
    for(List<JButton> subList : lists) {
        for(JButton button : subList) {
            System.out.println(button.getText());
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have four columns and four buttons I got them to all line up
I have a table with four columns: PartNumber, ValvePartNumber, ActuatorPartNumber, Price I want to
I have four tables containing exactly the same columns, and want to create a
I have a table with four Columns: Col1, Col2, Col3, and Col4. Col1, Col2,
I have a database that has four columns like this level_1, level_2, level_3, level_4
I have four UINavigationControllers assigned each to a tab in a UITabBarController. Each UINavigationController
I have an ASP.NET GridView that has four columns. The first three are typical
I have a table with four columns, where col1 & col2 contain similar values
I have a table for image gallery with four columns like: foid | uid
I have data in the form of four columns. The first three columns represent

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.