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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:12:51+00:00 2026-05-29T05:12:51+00:00

I have rendered a tree with two kind of nodes . Leaf Nodes Parent

  • 0

I have rendered a tree with two kind of nodes .

  1. Leaf Nodes
  2. Parent Nodes

enter image description here

One – represents a parent node .
Two, Three – Represents leaf nodes .

And do i need to write two separate editors ?
One for the parent nodes and one for the leaf nodes ?

Hoa can i accomplish this ?

How do i write a new renderer for rendering two different kind of nodes ? And the corresponding Editor for them ?

  • 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-29T05:12:52+00:00Added an answer on May 29, 2026 at 5:12 am

    Just create two separate TreeCellEditor implementation and merge them together with the class like this:

    public class TreeCellEditorDelegate extends DefaultTreeCellEditor {
    
        private final TreeCellEditor    editorParent;
        private final TreeCellEditor    editorLeaf;
    
        public TreeCellEditorDelegate(
                final JTree tree,
                final DefaultTreeCellRenderer renderer,
                final TreeCellEditor editorParent,
                final TreeCellEditor editorLeaf) {
            super(tree, renderer);
            this.editorParent = editorParent;
            this.editorLeaf = editorLeaf;
        }
    
        @Override
        public Component getTreeCellEditorComponent(
                final JTree tree,
                final Object value,
                final boolean isSelected,
                final boolean expanded,
                final boolean leaf,
                final int row) {
            if (leaf)
                return editorLeaf.getTreeCellEditorComponent(tree, value, isSelected, expanded, true, row);
            else
                return editorParent.getTreeCellEditorComponent(tree, value, isSelected, expanded, false, row);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I rendered a check box node tree. The renderer renders the parent nodes with
I have rendered one of my controls into a string. I want to safely
I have a situation where i need to implement a custom tree cell renderer.
I have a tree with DefaultMutableTreeNodes only. I want to write a TreeCellRenderer that
I have a JSF page that includes a tree form tag which is rendered
I have an html table rendered page and I want to save it as
I have a page which needs to be rendered in Quirks mode for the
A have a ListView that is rendered with multiple items. Now I want to
I have some squares s of size 15px rendered on a page. Their absolute
We have bunch of Domain Entities which should be rendered to an html format,

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.