-
Notifications
You must be signed in to change notification settings - Fork 0
/
KullaniciTableModel.java
46 lines (39 loc) · 1.24 KB
/
KullaniciTableModel.java
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
package Project;
import javax.swing.table.AbstractTableModel;
import java.util.List;
public class KullaniciTableModel extends AbstractTableModel {
private final String[] columnNames = {"ID", "Kullanıcı Adı", "Şifre", "Rol"};
private List<Kullanici> kullanicilar;
@Override
public int getRowCount() {
return kullanicilar == null ? 0 : kullanicilar.size();
}
@Override
public int getColumnCount() {
return columnNames.length;
}
@Override
public Object getValueAt(int rowIndex, int columnIndex) {
Kullanici kullanici = kullanicilar.get(rowIndex);
switch (columnIndex) {
case 0:
return kullanici.getId();
case 1:
return kullanici.getKullaniciAdi();
case 2:
return kullanici.getSifre();
case 3:
return kullanici.getRol();
default:
return null;
}
}
@Override
public String getColumnName(int column) {
return columnNames[column];
}
public void setKullanicilar(List<Kullanici> kullanicilar) {
this.kullanicilar = kullanicilar;
fireTableDataChanged();
}
}