Add file association (key INS)
Remove file association (key DEL)
Move file association up (key ALT-UP)
Move file association down (key ALT-DOWN)In order to edit any column with text, please double-click on it.
If you leave the dialog with the [Ok] button, your modifications are stored, if you hit [Cancel] or close the window, they are discarded.
Example:
Application.getApplication().addApplicationListener(new
ApplicationAdapter() {
public void handleOpenFile(ApplicationEvent evt) {
System.out.println("opening " + evt.getFilename());
}
public void handleQuit (ApplicationEvent event) {
event.setHandled (true);
}
});
Example:
MRJApplicationUtils.registerOpenApplicationHandler(new
MRJOpenDocumentHandler(){
public void handleOpenFile(File fileName) {
System.out.println("opening " + fileName);
}
});