站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

ProgressMonitor (NetBeans Progress API) - NetBeans API Javadoc 5.0.0

 

org.netbeans.api.progress.aggregate
Interface ProgressMonitor


public interface ProgressMonitor

Interface allowing to monitor the progress within the agrregated handle.

See Also:
AggregateProgressHandle.setMonitor(ProgressMonitor)

Method Summary
 void finished(ProgressContributor contributor)
          the given contributor finished it's work.
 void progressed(ProgressContributor contributor)
          the given contributor progressed in it's work.
 void started(ProgressContributor contributor)
          the given contributor started it's work.
 

Method Detail

started

public void started(ProgressContributor contributor)
the given contributor started it's work.

Parameters:
contributor - the part of the progress indication that started

finished

public void finished(ProgressContributor contributor)
the given contributor finished it's work.

Parameters:
contributor - the part of the progress indication that finished

progressed

public void progressed(ProgressContributor contributor)
the given contributor progressed in it's work.

Parameters:
contributor - the part of the progress indication that showed progress

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.