Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetEvent.java')
-rw-r--r--org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetEvent.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetEvent.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetEvent.java
new file mode 100644
index 000000000..aa1ce9733
--- /dev/null
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetEvent.java
@@ -0,0 +1,17 @@
+/*
+ * Licensed Materials - Property of IBM
+ * (c) Copyright IBM Corporation 2000, 2003.
+ * All Rights Reserved.
+ * Note to U.S. Government Users Restricted Rights: Use, duplication or disclosure restricted by GSA ADP schedule Contract with IBM Corp.
+*/
+
+package org.eclipse.ui.internal.cheatsheets.views;
+
+import org.eclipse.swt.widgets.Event;
+import org.eclipse.ui.cheatsheets.ICheatSheetManager;
+
+public class CheatSheetEvent extends Event {
+ int fCheatsheetEventType;
+ String fCheatsheetID;
+ ICheatSheetManager csm;
+}

Back to the top