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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T16:18:45+00:00 2026-05-21T16:18:45+00:00

Hey, how do i make my java SWT list look like here http://flavio.tordini.org/minitunes I

  • 0

Hey, how do i make my java SWT list look like here http://flavio.tordini.org/minitunes I mean that each element is separated by a line from eachother. Or i there any other solution to have a list like in the minitunes, so i can add number.. etc.

  • 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-21T16:18:46+00:00Added an answer on May 21, 2026 at 4:18 pm

    You should use ListCellRenderer to add the separators at specific positions…

    
     jList1 = new javax.swing.JList();
    //String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
    jList1.setModel(new javax.swing.AbstractListModel() {
        String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
        Vector v = makeVectorData(strings);
        public int getSize() { return v.size(); }
        public Object getElementAt(int i) { return v.get(i); }
    });
    jList1.setCellRenderer(new JlistRenderer());
    jList1.addFocusListener(new JListFocusListener(jList1));

    public class JlistRenderer extends JLabel implements ListCellRenderer {
    JSeparator separator;
    final String SEPARATOR = "SEPARATOR";
    public JlistRenderer() {
    setOpaque(true);
    setBorder(new EmptyBorder(1, 1, 1, 1));
    separator = new JSeparator(JSeparator.HORIZONTAL);
    }
    public Component getListCellRendererComponent(JList list, Object value,
    int index, boolean isSelected, boolean cellHasFocus) {
    String str = (value == null) ? "" : value.toString();
    if (SEPARATOR.equals(str)) {
    return separator;
    }
    if (isSelected) {
    setBackground(list.getSelectionBackground());
    setForeground(list.getSelectionForeground());
    } else {
    setBackground(list.getBackground());
    setForeground(list.getForeground());
    }
    setFont(list.getFont());
    setText(str);
    return this;
    }
    }

    public class JListFocusListener implements FocusListener {
    JList list;
    Object currentItem;
    final String SEPARATOR = "SEPARATOR";
    JListFocusListener(JList list) {
    this.list= list;
    list.setSelectedIndex(0);
    currentItem = list.getSelectedValue();
    }
    public void focusGained(FocusEvent e) {
    String tempItem = (String) list.getSelectedValue();
    if (SEPARATOR.equals(tempItem)) {
    list.setSelectedValue(currentItem,true);
    } else {
    currentItem = tempItem;
    }
    }
    }

    Hope the above code helps...

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

Sidebar

Related Questions

hey guys im working on a task to make my story's links like this
Hey, I am trying to make a program that minimises any program to the
Hey trying to make a fancy little app here in VB.NET framework 4. I've
Hey I am trying to make a page that inserts some strings into a
Hey, id like to make this as fast as possible because it gets called
Hey, how can I make it so that there's basically just a semi transparent
hey guys, im trying to make a volunteer form, that takes info such as
Hey, everyone. I'm new to Java and I have 2D LinkedList like this: LinkedList<LinkedList<String>>
Hey guys, I want to make a function loop over all elements that have
Hey I am trying to make multiple http requests and wondering the best way

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.