public interface IlpContext
Modifier and Type | Method and Description |
---|---|
IlpBlinkingManager |
getBlinkingManager()
Returns the blinking manager service.
|
IlpClassLoaderService |
getClassLoaderService()
Returns the class loader service.
|
IlpMutableClassManager |
getClassManager()
Returns the class manager.
|
IlpMutableDataSourceManager |
getDataSourceManager()
Returns the data source manager.
|
IlpImageRepository |
getImageRepository()
Returns the image repository.
|
IlpMutableInteractorManager |
getInteractorManager()
Returns the interactor manager.
|
Locale |
getLocale()
Returns the locale.
|
IlpMonitoringService |
getMonitoringService()
Returns the monitoring service.
|
Map |
getProperties()
Returns all the properties of this context in the form of a Map containing
property names as keys mapped to values.
|
Object |
getProperty(String name)
Returns a property value of the context.
|
Object |
getService(Class serviceClass)
Retrieves a service by its Java class.
|
Collection |
getServices()
Retrieves the list of available service classes as a collection.
|
IlpStyleManager |
getStyleManager()
Deprecated.
The Style API has been replaced by the Cascading Style
Sheet mechanism. Please refer to the User's Manual for further information.
|
IlSynchronizationStrategy |
getSynchronizationStrategy()
Returns the synchronization strategy.
|
IlpTypeConverter |
getTypeConverter()
Returns the type converter.
|
IlpURLAccessService |
getURLAccessService()
Returns the URL access service.
|
Locale getLocale()
Object getProperty(String name)
name
- The name of the property.null
.Map getProperties()
IlpURLAccessService getURLAccessService()
Note: Calling this method is equivalent to the following code:
(IlpURLAccessService)getService(IlpURLAccessService.class)
IlpMutableClassManager getClassManager()
Note: Calling this method is equivalent to the following code:
(IlpMutableClassManager)getService(IlpClassManager.class)
IlpMutableDataSourceManager getDataSourceManager()
Note: Calling this method is equivalent to the following code:
(IlpMutableDataSourceManager)getService(IlpDataSourceManager.class)
@Deprecated IlpStyleManager getStyleManager()
Note: Calling this method is equivalent to the following code:
(IlpStyleManager)getService(IlpStyleManager.class)
IlpMutableInteractorManager getInteractorManager()
Note: Calling this method is equivalent to the following code:
(IlpMutableInteractorManager)getService(IlpInteractorManager.class)
IlpBlinkingManager getBlinkingManager()
Note: Calling this method is equivalent to the following code:
(IlpBlinkingManager)getService(IlpBlinkingManager.class)
IlSynchronizationStrategy getSynchronizationStrategy()
Note: Calling this method is equivalent to the following code:
(IlSynchronizationStrategy)getService(IlSynchronizationStrategy.class)
IlpTypeConverter getTypeConverter()
Note: Calling this method is equivalent to the following code:
(IlpTypeConverter)getService(IlpTypeConverter.class)
IlpImageRepository getImageRepository()
Note: Calling this method is equivalent to the following code:
(IlpImageRepository)getService(IlpImageRepository.class)
IlpMonitoringService getMonitoringService()
(IlpMonitoringService)getService(IlpMonitoringService.class)
IlpClassLoaderService getClassLoaderService()
(IlpClassLoaderService)getService(IlpClassLoaderService.class)
Object getService(Class serviceClass)
serviceClass
- The Java class to be implemented by the returned service.Collection getServices()
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.