API specifications of NAB framework June 21, 2006 |
Contents
![]() ![]() |
Chapter 5 NAB Framework API Reference |
(NTK management classes)
NtkManager retains entities of the NTK initialization class, context management class, instance management class, project management class, and event callback class.
The NAB Framework user acquires instances of these management classes through NtkManager.
Method name |
Outline |
static void setNtkInitializer(INtkInitializer inst) |
Sets an entity of the NTK initialization class in NtkManager. |
static void setNtkContext(INtkContext inst) |
Sets an entity of the NTK context management class in NtkManager. |
static void setNtkInstanceManager(INtkInstanceManager inst) |
Sets an entity of the NTK instance management class in NtkManager. |
static void setNtkProjectManager(INtkProjectManager inst) |
Sets an entity of the NTK project management class in NtkManager. |
static NtkEventCallbackManager getEventCallbackManager() |
Acquires an instance of the NTK event callback management class. * Returns the event callback manager belonging to the NTK initialization class. |
static synchronized void ntkInitialize() |
Initializes an NTK. An instance of the appropriate NTK initialization class must be set before it is called. |
static boolean isInitialized() |
Acquires information on whether an NTK was initialized. |
static void setSyncDisplay(Display disp) |
Sets an SWT display resource for synchronization with SWT. The set display resource is delivered to the NTK initialization class for use. |
static Display getSyncDisplay() |
Acquires an SWT display resource for synchronization with SWT, and returns the display resource delivered to the NTK initialization class. |
static INtkContext getNtkContext() |
Acquires an entity of the NTK context management class from NtkManager. |
static INtkInstanceManager getNtkInstanceManager() |
Acquires an entity of the NTK instance management class from NtkManager. |
static INtkProjectManager getNtkProjectManager() |
Acquires an entity of the NTK project management class from NtkManager. |
Contents
![]() ![]() |