// editor 起動後,なぜかすぐに diagTable にフォーカス取られてしまう不具合の workaround
diagTable.setFocusable(false);
// editor が立ち上がっている間は ウインドウを閉じられないようにする
getContext().enabledAction(GUIConst.ACTION_CLOSE, false);
StampEditorDialog stampEditor = new StampEditorDialog("diagnosis", rd);
// 編集終了、値の受け取りにこのオブジェクトを設定する
stampEditor.addPropertyChangeListener(StampEditorDialog.VALUE_PROP, this);
stampEditor.start();
}