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

  • Home
  • SEARCH
  • 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 9248171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T09:53:42+00:00 2026-06-18T09:53:42+00:00

I have a Ingredient class public class Ingredient { String NameP; List ListS; String

  • 0

I have a Ingredient class

public class Ingredient {
String NameP;
List ListS;
String Desc;
List ListT;
...

multiple instances of this class are stored in a Objects list.
I have also a

javax.swing.JList ListIng;

With it’s model set to

ListIngModel = new DefaultListModel();

The idea is to use the Jlist to display the field “NameP” of all objects, select one of them to be further inspected and then grab the selected object:

Ingredient Selected = ListIngModel.get(ListIng.getSelectedIndex())

I can load the objects in the list model, but then the JList displays the address of those.
Is there an elegant way to make it display a property of the objects it stores?

  • 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-18T09:53:42+00:00Added an answer on June 18, 2026 at 9:53 am

    You should make use the JList‘s CellRenderer

    Take a look at How to use Lists for more details.

    Basically, it allows you to define what the give object in the list model will appear like in the view. This method allows you to customize the view as you need, even replacing it at run time.

    For Example

    public class IngredientListCellRenderer extends DefaultListCellRenderer {
        public Component getListCellRendererComponent(JList<?> list,
                                     Object value,
                                     int index,
                                     boolean isSelected,
                                     boolean cellHasFocus) {
            super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
            if (value instanceof Ingredient) {
                Ingredient ingredient = (Ingredient)value;
                setText(ingredient.getName());
                setToolTipText(ingredient.getDescription());
                // setIcon(ingredient.getIcon());
            }
            return this;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class with multiple public properties whose objects are being used in
Let's assume I have this code; class Ingredients{ public: Ingredients(int size,string name); int getsize();
I have two entities: Recipe and Ingredient. Entites: public class Ingredient { public int
I have an NSMutableArray in my class containing Ingredient objects. I want to check
I have a simple php structures. class Ingredient and class Ingredients, i have this
I have a class with a virtual property ( public virtual List<Ingredients> ), but
Say I have a class like so: class Ingredient { public: friend istream& operator>>(istream&
I have a class like: public class Food { public static IList<Ingredient> ingredients public
I have this ingredients array which contains multiple variables (like name, icon, value etc.).
Have not been able to find a solution for this. models.py class Product(models.Model): prod_id

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.