org.netbeans.modules.refactoring.api 1.26.0 1

org.netbeans.modules.refactoring.api
Interface ProgressListener

All Superinterfaces:
EventListener

public interface ProgressListener
extends EventListener

Progress listener. Enables objects to listen to a progress of long operations.


Method Summary
 void start(ProgressEvent event)
          Signals that an operation has started.
 void step(ProgressEvent event)
          Signals that an operation has progressed.
 void stop(ProgressEvent event)
          Signals that an operation has finished.
 

Method Detail

start

void start(@NonNull
           ProgressEvent event)
Signals that an operation has started.

Parameters:
event - Event object describing this event.

step

void step(@NonNull
          ProgressEvent event)
Signals that an operation has progressed.

Parameters:
event - Event object describing this event.

stop

void stop(@NonNull
          ProgressEvent event)
Signals that an operation has finished.

Parameters:
event - Event object describing this event.

org.netbeans.modules.refactoring.api 1.26.0 1

Built on May 25 2012.  |  Portions Copyright 1997-2012 Oracle. All rights reserved.