Project

General

Profile

Download (826 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/*******************************************************************************
2
 * Copyright 2005, CHISEL Group, University of Victoria, Victoria, BC, Canada.
3
 * All rights reserved. This program and the accompanying materials are made
4
 * available under the terms of the Eclipse Public License v1.0 which
5
 * accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors: The Chisel Group, University of Victoria
9
 *******************************************************************************/
10
package org.eclipse.zest.layouts;
11

    
12
import org.eclipse.zest.layouts.progress.ProgressListener;
13

    
14
/**
15
 * @author Ian Bull
16
 */
17
public interface Stoppable {
18

    
19
	/**
20
	 * This ends the runnable
21
	 */
22
	public void stop();
23

    
24
	public void addProgressListener(ProgressListener listener);
25

    
26
}
(12-12/12)