次のコードを使用して、デバッグモードでクラスを実行しようとしています
public void columnsList(List<TableRecord> records){
Collections.sort(records, new StampDateComparator());
for(TableRecord record : records){
Table table = record.getTable();
Field[] fields = table.fields();
for(Field field : fields){
field.getName();
record.getValue(field);
}
}
}
public static void main(String a[]){
AuditLogComponent comp = new AuditLogComponent();
List<TableRecord> records = new ArrayList<TableRecord>();
records.add(new LogFolderRecord());
records.add(new LogPeopleRecord());
comp.columnsList(records);
}
例外 Exception in thread "main" java.lang.IllegalStateException: No execution available ここで何が間違っているのですか?