}
throw new IllegalStateException();
}
public Object getColumnValue(Object baseObject, int column) {
Issue issue = (Issue)baseObject;
switch(column) {
case 0: return issue.getId();
case 1: return issue.getIssueType();
case 2: return issue.getPriority();
case 3: return issue.getStatus();
case 4: return issue.getResolution();
case 5: return issue.getShortDescription();
}
throw new IllegalStateException();
}