Changeset 2470
- Timestamp:
- Jul 22, 2006, 2:26:27 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/development/overview/core/plugins.html
r2304 r2470 151 151 The response can have three states: 152 152 <ul> 153 <li>DONE: The configuration has been completed suc essfully. The <code>Plugin.done()</code>153 <li>DONE: The configuration has been completed successfully. The <code>Plugin.done()</code> 154 154 method is called automatically by the core and if it is a job that we 155 155 are configuring the estimated execution time is also set. The client application must -
trunk/src/core/net/sf/basedb/core/Install.java
r2392 r2470 592 592 } 593 593 594 if (progress != null) progress.display(100, "Database initialised suc essfully.");594 if (progress != null) progress.display(100, "Database initialised successfully."); 595 595 } 596 596 catch (BaseException ex) -
trunk/src/core/net/sf/basedb/core/Job.java
r2382 r2470 61 61 <li>{@link #start(String, String)}: Tell the core that job has started 62 62 <li>{@link #setProgress(int, String)}: Update the progress status of the job 63 <li>{@link #doneOk(String)}: Tell the core that the job finished suc essfully63 <li>{@link #doneOk(String)}: Tell the core that the job finished successfully 64 64 <li>{@link #doneError(String)}: Thell the core that the job finished with an error 65 65 </ul> … … 488 488 489 489 /** 490 Register the job as suc essfully completed.490 Register the job as successfully completed. 491 491 492 492 @param statusMessage A message … … 950 950 data.setStatus(Status.DONE.getValue()); 951 951 data.setStatusMessage(response.getMessage()); 952 message.setName(job.getName()+" completed suc essfully");952 message.setName(job.getName()+" completed successfully"); 953 953 message.setDescription(response.getMessage()); 954 954 } … … 1058 1058 1059 1059 /** 1060 The job has finished suc essfully.1060 The job has finished successfully. 1061 1061 */ 1062 1062 DONE(3, "Done"), -
trunk/src/core/net/sf/basedb/core/Update.java
r2393 r2470 219 219 220 220 sc.logout(); 221 if (progress != null) progress.display(100, "Database updated suc essfully.");221 if (progress != null) progress.display(100, "Database updated successfully."); 222 222 } 223 223 catch (BaseException ex) -
trunk/src/plugins/core/net/sf/basedb/plugins/AbstractFlatFileImporter.java
r2409 r2470 512 512 Called if the parsing was successful to let the subclass generate a simple 513 513 message that is sent back to the core and user interface. An example 514 message might by: <code>178 reporters imported suc essfully</code>.514 message might by: <code>178 reporters imported successfully</code>. 515 515 The default implementation always return null. 516 516 */
Note: See TracChangeset
for help on using the changeset viewer.