prefs.putInt(FRAME_HEIGHT, h);
prefs.putInt(FRAME_WITH, w);
}
private void loadUserPrefs() {
OwnPreferences prefs =
OwnPreferences.userNodeForPackage(this.getClass());
int x = prefs.getInt(FRAME_X, 10);
int y = prefs.getInt(FRAME_Y, 10);
int h = prefs.getInt(FRAME_HEIGHT, 130);
int w = prefs.getInt(FRAME_WITH, 500);
this.setSize(new Dimension(w, h));
// System.out.println("Start info = " + info);
if (x == 10 && y == 10) // First use
{