Changes between Version 18 and Version 19 of APP_BUG_REPORT_FORM_R0


Ignore:
Timestamp:
05/21/09 15:38:18 (16 years ago)
Author:
mitex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APP_BUG_REPORT_FORM_R0

    v18 v19  
    7272 * Create a class {{{org.sophie2.main.func.help.bugreport.BugReportDialogInput}}} that extends {{{DialogInput<Void>}}} and represents the bug report data: 
    7373  * {{{Throwable throwable}}} - can be null 
    74   * {{{String log}}} - the contents of Sophie log file 
     74  * {{{String log}}} - the contents of the Sophie log file 
    7575  * {{{Properties systemProperties}}} - java system properties ([http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#getProperties()]) 
    7676  * {{{String email}}} 
     
    8888 
    8989 * 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}}}. 
    9592 
    9693= Implementation =