862863864865866867868869
window.setVisible(true); } } public void createNote() { WindowNote windowForm = new WindowNote(window, indexer, new Note(), factory); windowForm.setVisible(true); }
200201202203204205206207
this.window = window; this.indexer = indexer; if (note != null) { this.note = note; } else { this.note = new Note(); } }