Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6ed40942cfd8206e66c1fb84cf7ce3b9c647acaf (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*******************************************************************************
 * Copyright (c) 2002, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.examples.cheatsheets.pattern.listeners;

import org.eclipse.ui.cheatsheets.*;

public class PatternItemListener extends CheatSheetListener {

	/* (non-Javadoc)
	 * @see org.eclipse.ui.cheatsheets.CheatSheetListener#cheatSheetEvent(org.eclipse.ui.cheatsheets.ICheatSheetEvent)
	 */
	public void cheatSheetEvent(ICheatSheetEvent event) {
		ICheatSheetManager csm = event.getCheatSheetManager();
		System.out.print("CheatSheetEvent for ");
		System.out.println(event.getCheatSheetID());
		System.out.print("Event type: ");
		System.out.print(event.getEventType());
		System.out.print(" - ");
		switch (event.getEventType()) {
			case ICheatSheetEvent.CHEATSHEET_OPENED :
				System.out.println("OPENED");
				break;
			case ICheatSheetEvent.CHEATSHEET_CLOSED :
				System.out.println("CLOSED");
				break;
			case ICheatSheetEvent.CHEATSHEET_STARTED :
				System.out.println("STARTED");
				break;
			case ICheatSheetEvent.CHEATSHEET_RESTARTED :
				System.out.println("RESTARTED");
				break;
			case ICheatSheetEvent.CHEATSHEET_COMPLETED :
				System.out.println("COMPLETED");
				break;
			case ICheatSheetEvent.CHEATSHEET_RESTORED :
				System.out.println("RESTORED");
				break;
			default :
				System.out.println("UNKNOWN");
				break;
		}
	}
}

Back to the top