Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Tree Root Hide in Java

                         

In this section, you will learn to hide the root node of  a JTree

Description of the Program:

The following program helps to hide the root node of the Jtree component. This program creates a tree that contains multiple nodes where the root node is kept hidden. The getProperty() method determines the current system properties. This method returns the multiple data of system that will be displayed in a node. For hiding root node we set the setRootVisible is 'false'. 

Here is the code of this program:

import javax.swing.*;
import javax.swing.event.*;
import java.util.Properties;
import javax.swing.JTree.*;

public class TreeRootHide{
  public static void main(String[] args) {
    JFrame frame = new JFrame("Root Hide of tree");
    Properties prop = System.getProperties();
    JTree tree = new JTree(prop);
    tree.setRootVisible(false);
    JScrollPane scroll = new JScrollPane(tree);
    frame.getContentPane().add(scroll, "Center");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
    frame.setSize(350,400);
    frame.setVisible(true);
  }
}

Download this program.

Output this program:

 

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Latest Searches:
jsf table
Retrieving Data From d
decimal to binary conv
extendedState
js tag
password java databa
Arrays
treemap with comparabl
jsf set href
a comple progrma using
Javascript Mouse Trick
space char
remote
How to write JSP
format decimal
Photoshop Text Effects
Photoshop Web Graphics
clear grid
Scrollbar for JList
why struts 1.1
coding
increase size of strut
ga me s
java program for permu
retereive an image fro
decimal to ANSI
Integer.ParseInt java
xform example
define functions in js
how to pass same varia
Integer.ParseInt examp
first application of s
Mylyn
Quick Sort
working with combobox
passing images to jsp
factory
breakะ????ะ???ะ?
HTML table in java
simple appet
reads data into text f
Changelanguageaccordin
url rewriting
getter setter methods
DynaAction Form
LSB of String java
jasper reports using j
Create Scroll Bar in J
struts2 tag
array element
struts2 tag library
integer.parseInt
what is rfc
threads\
example for org.jfree.
jboss 4.2.1.GA
Flex TreeGrid
java program to find s
Date Examples java
binary to hexadecimal
myfaces tomahawk
sqlserver2000
Installing Sun JDK on
what is rfc ?
struts 1 date picker e
midlet inbox example
modity data in text fi
in mysql how to store
Photoshop Drawing Cart
JDBC with Mysql in Ecl
form bean
collections interview
web.xml file
Matrix Example in Java
breakั?�??????ั?
program to find greate
WHERE Statement in SQL
mdb
create a tree to be di
java cancel button
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.