Home Java Example Java Swing Removing Horizontal Lines to Node Groups



Removing Horizontal Lines to Node Groups
Posted on: May 30, 2007 at 12:00 AM
In this section, you will learn to create none type tree in Java. None type tree means that children nodes are not connected to their parent node

Removing Horizontal Lines to Node Groups

     

Introduction

In this section, you will learn to create none type tree in Java. None type tree means that children nodes are not connected to their parent node 

Program Description:

This program constructs a tree that does not   have any line or ruler to connect  parent and the child nodes. This is very simple, if you want to remove the connected line, just put the "None" property in the putClientProperty() method and you will get none type tree node. Finally, the tree is added to the frame. 

Here is the code of this program:

import javax.swing.*;
import javax.swing.event.*;

public class JTreeNone{

  public static void main(String[] args){
  JTree tree = new JTree();
  tree.putClientProperty("JTree.lineStyle""None");
  JScrollPane scrollpane = new JScrollPane(tree);
  JFrame fm = new JFrame("JTreeNone frame");
  fm.getContentPane().add(scrollpane, "Center");
  fm.setSize(300,300);
  fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  fm.setVisible(true);
  }
}

Download this program.

Output this program:

Related Tags for Removing Horizontal Lines to Node Groups:
canttreestructpropertyclientmethodgettypeconstremovetclclilinethisnodesimplemoveparentutcconnectifiectechildprogramtoramstructsldeildesnodesnotliputulpeiminnomntpntpartrwanjclesemmenoneprodoseeatanyishallmplproperandarconnectedconsstrrtroperulesimwantssrenthavstchihatctspleplpropprmovndodeonogronon


More Tutorials from this section

Ask Questions?    Discuss: Removing Horizontal Lines to Node Groups  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.