Changes between Version 18 and Version 19 of APP_BUG_REPORT_FORM_R0
- Timestamp:
- 05/21/09 15:38:18 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_BUG_REPORT_FORM_R0
v18 v19 72 72 * Create a class {{{org.sophie2.main.func.help.bugreport.BugReportDialogInput}}} that extends {{{DialogInput<Void>}}} and represents the bug report data: 73 73 * {{{Throwable throwable}}} - can be null 74 * {{{String log}}} - the contents of Sophie log file74 * {{{String log}}} - the contents of the Sophie log file 75 75 * {{{Properties systemProperties}}} - java system properties ([http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#getProperties()]) 76 76 * {{{String email}}} … … 88 88 89 89 * Create a class {{{org.sophie2.main.func.help.bugreport.SophieExceptionHandler}}} that implements {{{Thread.UncaughtExceptionHandler}}}. 90 * In {{{uncaughtException(Thread t, Throwable e)}}} fire R3 event with parameter {{{e}}}. 91 * In all main methods of Sophie register that handler by invoking {{{Thread.setDefaultUncaughtExceptionHandler(new SophieExceptionHandler());}}} 92 * {{{org.sophie2.author.FakeAuthorMain}}} 93 * {{{org.sophie2.reader.FakeReaderMain}}} 94 * {{{org.sophie2.launcher.Main}}} 90 * In {{{uncaughtException(Thread t, Throwable e)}}} fire the same R3 event as the menuitem, but with parameter {{{e}}}. 91 * Register that handler by invoking {{{Thread.setDefaultUncaughtExceptionHandler(new SophieExceptionHandler());}}} in {{{HelpModule.doStart}}}. 95 92 96 93 = Implementation =