Java property table

I need a table that displays properties and allows me to change their values. Similar to the Netbeans property windows for the GUI editor. Does anyone know any existing classes or libraries. I would not want to reinvent the wheel on this.

Edit:

Something like this that allows you to use delimiters in different groups, JCombos and JButtons.

thank

+3
source share
7 answers

I would recommend JTable and the grid layout manager.

+1
source

NetBeans - PropertySheetView ( ) NetBeans (PropertySheetView JavaDoc). Swing, NetBeans jar ( ).

+1

JTable Grid , .

0

JTable ; .

0

JIDE Soft , - OpenSource, , , .

0

I would recommend taking a look at SwingX JXTreeTable. I used it in an application to create a very similar look.

An example screenshot that I found on the Internet ( here ) to illustrate this

JXTreeTable screenshot

0
source

All Articles