Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d018edfb20720ad96a9362809b315168ae57fac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 *  Copyright (c) 2000, 2008 IBM Corporation and others.
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  which accompanies this distribution, and is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 * 
 *  Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.pde.internal.ui.tests.macro;

public interface IRecorderListener {
	int STOP = 1;
	int INDEX = 2;

	void recordingStarted();

	void recordingStopped();

	/**
	 * Called when the user pressed Ctrl+Shift+F10 (index)
	 * or Ctrl+Shift+F11 (stop) to interrupt
	 * the recording process. Clients may use this event
	 * to insert named indexes, stop the recording etc.
	 * @param type <code>STOP</code> or <code>INDEX</code>
	 */
	void recordingInterrupted(int type);
}

Back to the top