JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE
);
if (ans != JOptionPane.YES_OPTION) return;
}
final StampDelegater sdl = new StampDelegater();
DBTask task = new DBTask<List<StampModel>>(getContext()) {
@Override
protected List<StampModel> doInBackground() throws Exception {
List<StampModel> result = sdl.getStamp(stampList);
return result;
}
@Override
protected void succeeded(List<StampModel> list) {
logger.debug("importStampList succeeded");
if (sdl.isNoError() && list != null) {
for (int i = list.size() - 1; i > -1; i--) {
insertStamp(list.get(i), insertRow);
}
}
// 病名を drop した場合,ここに入ってくる