@author Cameron Garnham
| 30 | * @author Cameron Garnham |
| 31 | */ |
| 32 | public interface Viewable { |
| 33 | |
| 34 | /** |
| 35 | * Display the view. |
| 36 | */ |
| 37 | void displayView(DisplayHint displayHint); |
| 38 | |
| 39 | /** |
| 40 | * @returns the icon for the view |
| 41 | */ |
| 42 | Icon getViewIcon(); |
| 43 | |
| 44 | /** |
| 45 | * @returns the view identifier for the view |
| 46 | */ |
| 47 | View getViewId(); |
| 48 | |
| 49 | /** |
| 50 | * @returns the title for the view |
| 51 | */ |
| 52 | String getViewTitle(); |
| 53 | |
| 54 | /** |
| 55 | * @returns the tooltip for the view |
| 56 | */ |
| 57 | String getViewTooltip(); |
| 58 | |
| 59 | /** |
| 60 | * Navigate away from the view (including releasing any resources used). |
| 61 | */ |
| 62 | void navigateAwayFromView(); |
| 63 | |
| 64 | } |
no outgoing calls
no test coverage detected