Hi nochmal,
folgender cast funktioniert bei mir nicht.
Kl. Person
Folgende Exception:
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
folgender cast funktioniert bei mir nicht.
Code:
public void setValueAt(Object value, int row, int col) {
Person p = daten.get(row);
p.setAnz((Integer) value);
Kl. Person
Code:
public void setAnz (int val) {
this.anz = val;
}
Folgende Exception:
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer