0

I want to create a component in Eclipse like this:

enter image description here

i see this is a Jtable but i want this kind of drop down panel like in the picture.

Can you give me some advice what kind of component is it?

pirs
  • 2,410
  • 2
  • 18
  • 25
Exxul
  • 508
  • 5
  • 10
  • you can use JTree follow the below links https://stackoverflow.com/questions/21847411/java-swing-need-a-good-quality-developed-jtree-with-checkboxes – arjunsv3691 Oct 22 '17 at 15:56
  • This is betweeen JTree and JTable but i need JTable features. In my program this panel will be used the same way like in eclipse. – Exxul Oct 22 '17 at 16:02
  • Note that Eclipse uses SWT not Swing for its own UI code. – greg-449 Oct 22 '17 at 16:07

1 Answers1

0

Eclipse uses the SWT and JFace UI toolkits rather than Swing.

The 'Work with' component is an org.eclipse.swt.widgets.Combo with Read/Write style.

The tree list viewer is an org.eclipse.jface.viewers.CheckboxTreeViewer

greg-449
  • 109,219
  • 232
  • 102
  • 145