public interface IOpenIcon
This interface is used by icons that open a layer or window.
Examples:
Modifier and Type | Method and Description |
---|---|
boolean |
isShowing()
Indicates if the icon is currently showing on screen.
|
void |
open()
Opens the associated layer or window.
|
void |
rememberKeyBindingId(java.lang.String keyBindingId,
java.lang.String ttType)
Stores key binding related IDs.
|
void rememberKeyBindingId(java.lang.String keyBindingId, java.lang.String ttType)
Stores key binding related IDs. These IDs are needed to be able to restore the key binding specific part of the tool tip after the basic tool tip has been changed.
keyBindingId
- the key binding idttType
- the key binding type idvoid open()
Opens the associated layer or window.
boolean isShowing()
Indicates if the icon is currently showing on screen. Implemented by Component
.