1 11 package org.eclipse.ui.cheatsheets; 12 13 import java.net.URL ; 14 import java.util.Map ; 15 16 import org.eclipse.swt.widgets.Composite; 17 import org.eclipse.swt.widgets.Control; 18 19 42 public interface ICheatSheetViewer { 43 44 54 public void createPartControl(Composite parent); 55 56 63 public Control getControl(); 64 65 71 public String getCheatSheetID(); 72 73 76 public void setFocus(); 77 78 93 public void setInput(String id); 94 95 117 public void setInput(String id, String name, URL url); 118 119 127 public void reset(Map cheatSheetData); 128 } 129 | Popular Tags |