//pns$
//frame = new JFrame(title); //← 以前は JFrame で作られていた形跡がある
//pns frame = new JDialog((JFrame) null, title, false); // ←これがオリジナル
//frame.setFocusableWindowState(false);
ComponentMemory cm = new ComponentMemory(frame,
new Point(defaultLocX,defaultLocY),
new Dimension(defaultWidth, defaultHeight),
this);
cm.setToPreferenceBounds();
frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
frame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {