Bonjour j'aimerais savoir comment faire pour mettre dans un JTable ou JTree des composant du style JComboBox, boutonradio etc...
D'après ce que j'ai compris, il faut utiliser iun renderer mais quand je teste, rien ne marche.
Voilà mon code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
 
import java.awt.Component;
import java.util.ArrayList;
import java.util.List;
 
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.DefaultTableCellRenderer;
 
public class ImagePanel extends JFrame
{
 
    public ImagePanel()
    {
        super();
 
        TableModel model = new TableModel();
        JTable table = new JTable(model);
        table.setDefaultRenderer(List.class, new TableCellRenderer());
 
        add(table);
 
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(300, 300);
        setVisible(true);
    }
 
    public static void main(String args[])
    {
        new ImagePanel();
    }
}
 
class TableModel extends AbstractTableModel
{
 
    public static List<Personne> personnes;
 
    public TableModel()
    {
        super();
        personnes = new ArrayList<Personne>();
        personnes.add(new Personne("Toto", "toto"));
        personnes.add(new Personne("Toto", "toto"));
    }
 
    public int getColumnCount()
    {
        return 3;
    }
 
    public int getRowCount()
    {
        return personnes.size();
    }
 
    public Object getValueAt(int rowIndex, int columnIndex)
    {
 
        if (columnIndex == 0)
        {
            return personnes.get(rowIndex).nom;
        }
        else if (columnIndex == 1)
        {
            return personnes.get(rowIndex).prenom;
        }
        else
        {
            return personnes.get(rowIndex).telephone;
        }
 
    }
 
    @Override
    public String getColumnName(int column)
    {
        if (column == 0)
        {
            return "Nom";
        }
        else if (column == 1)
        {
            return "Prenom";
        }
        else
        {
            return "Telephone";
        }
    }
 
    public Class<?> getColumnClass(int columnIndex)
    {
        if (columnIndex == 0)
        {
            return String.class;
        }
        else if (columnIndex == 1)
        {
            return String.class;
        }
        else
        {
            return List.class;
        }
    }
 
}
 
class TableCellRenderer extends DefaultTableCellRenderer
{
 
    public Component getTableCellRendererComponent(JTable table, Object value,
            boolean isSelected, boolean hasFocus, int row, int column)
    {
        super.getTableCellRendererComponent(table, value, isSelected, hasFocus,
                row, column);
 
        System.out.println("1d");
 
        List<String> telephone = (List<String>)value;
        JComboBox combo = new JComboBox(telephone.toArray());
 
        return combo;
    }
 
}
 
class Personne
{
 
    public String nom;
 
    public String prenom;
 
    public List<String> telephone ;
 
    public Personne(String nom, String prenom)
    {
        this.nom = nom;
        this.prenom = prenom;
        this.telephone = new ArrayList<String>();
        telephone.add("0154");
        telephone.add("013458");
    }
 
}

merci de votre aide