1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36:01 +02:00

Corrected JavaDoc. Referred to method name that was renamed during refactoring.

This commit is contained in:
John Cortell 2009-09-21 15:13:49 +00:00
parent 7ad14d08db
commit 59fcec1a9c

View file

@ -55,12 +55,12 @@ import org.eclipse.core.runtime.Status;
* which is asynchronous (and accepts a request monitor as an argument) and which itself
* calls another asynchronous method to complete its operation. For example, in the
* request monitor implementation below, the implementation only needs to override
* <code>handleOK()</code>, because the base implementation will handle notifying the
* <code>handleSuccess()</code>, because the base implementation will handle notifying the
* parent <code>rm</code> in case the <code>getIngredients()</code> call fails.
* <pre>
* public void createCupCakes(final DataRequestMonitor<CupCake[]> rm) {
* getIngredients(new DataRequestMonitor<Ingredients>(fExecutor, rm) {
* public void handleOK() {
* public void handleSuccess() {
* rm.setData( new CupCake(getData().getFlour(), getData().getSugar(),
* getData().getBakingPowder()));
* rm.done();