Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
blob: 12bb707a53da6062b7f93afeb6483bb0efb0561d (plain) (blame)
1
2
3
4
5
6
package org.eclipse.team.internal.ui.synchronize;

public interface IRefreshSubscriberListener {	
	public void refreshStarted(IRefreshEvent event);	
	public void refreshDone(IRefreshEvent event);
}

Back to the top