1 11 package org.eclipse.ui.cheatsheets; 12 13 import org.eclipse.ui.cheatsheets.ICheatSheetManager; 14 15 31 public interface ICheatSheetEvent { 32 33 38 public static final int CHEATSHEET_OPENED = 0; 39 40 45 public static final int CHEATSHEET_CLOSED = 1; 46 47 51 public static final int CHEATSHEET_STARTED = 2; 52 53 57 public static final int CHEATSHEET_RESTARTED = 3; 58 59 63 public static final int CHEATSHEET_COMPLETED = 4; 64 65 69 public static final int CHEATSHEET_RESTORED = 5; 70 71 77 public int getEventType(); 78 79 84 public String getCheatSheetID(); 85 86 92 public ICheatSheetManager getCheatSheetManager(); 93 } 94 | Popular Tags |