|
Eclipse Platform Release 3.0 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A cheat sheet viewer.
Clients call CheatSheetViewerFactory.createCheatSheetView() to create a cheat sheet viewer instance, and then call the viewer's createPartControl method to have it create the viewer's control under the specified SWT composite. The viewer's control can then be retrieved using getControl to arrange layout. The setInput methods are used to set (or clear) the cheat sheet shown in the viewer, and can be called either before or after the viewer's controls have been created and laid out.
The execution states of open cheat sheets are maintained and persisted globally using the cheat sheet id as the key.
This interface is not intended to be implemented by clients.
Method Summary | |
void | createPartControl(Composite parent)
Creates the SWT controls for this cheat sheet viewer. |
String | getCheatSheetID()
Returns the id of the cheat sheet showing in this view. |
Control | getControl()
Returns the primary control associated with this viewer. |
void | setFocus()
Asks this cheat sheet viewer to take focus. |
void | setInput(String id)
Sets the cheat sheet viewer to show the cheat sheet with the given id. |
void | setInput(String id,
String name,
URL url)
Sets the cheat sheet viewer to show the cheat sheet with the given cheat sheet content file. |
Method Detail |
public void createPartControl(Composite parent)
When the parent Composite is disposed, this will automatically dispose the controls added by this viewer (and release any other viewer-specific state).
public Control getControl()
public String getCheatSheetID()
public void setFocus()
public void setInput(String id)
The execution states of open cheat sheets are maintained and persisted globally using the cheat sheet id as the key.
public void setInput(String id, String name, URL url)
The execution states of open cheat sheets are maintained and persisted globally using the cheat sheet id as the key. This means that each cheat sheet must have a distinct id, including ones opened from URLs.
Use the other setInput method to clear the viewer; that is, call setInput(null).
|
Eclipse Platform Release 3.0 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp. and others 2000, 2004. All rights reserved.