SIHAdapterDescriptor Class Reference
| Inherits from | NSObject |
|---|---|
| Conforms to | SICIDescriptor |
| Declared in | SIHAdapterDescriptor.h SIHAdapterDescriptor.m |
Overview
- Exposes methods to GET and SET Hybrid Descriptor Adapter information as per define in HybridDescriptor.xml file or standalone xml file in application.
Example:
{@code
adapter_name
adapter_description
HYBRID-TO-NATIVE|NATIVE-TO-HYBRID
name_of_adapter_class
true/false
handler_name
handler_description
name_of_handler_method
name_of_parameter
parameter_type
description_of_parameter
return_type
return_data_description
}
</p>
– getName
Get Name of Adapter.
- (NSString *)getNameReturn Value
Name of Adapter.
Discussion
Get Name of Adapter.
Declared In
SIHAdapterDescriptor.h
– setName:
Set Name of Adapter.
- (void)setName:(NSString *)nameParameters
name |
Name of Adapter. |
|---|
Discussion
Set Name of Adapter.
Declared In
SIHAdapterDescriptor.h
– getDescription
Get Description of Adapter.
- (NSString *)getDescriptionReturn Value
Description of Adapter.
Discussion
Get Description of Adapter.
Declared In
SIHAdapterDescriptor.h
– setDescription:
Set Description of Adapter.
- (void)setDescription:(NSString *)descriptionParameters
description |
Description of Adapter. |
|---|
Discussion
Set Description of Adapter.
Declared In
SIHAdapterDescriptor.h
– getType
Get Type of Adapter.
- (NSString *)getTypeReturn Value
Type of Adapter.
Discussion
Get Type of Adapter.
Declared In
SIHAdapterDescriptor.h
– setType:
Set Type of Adapter.
- (void)setType:(NSString *)typeParameters
type |
Type of Adapter. |
|---|
Discussion
Set Type of Adapter.
Declared In
SIHAdapterDescriptor.h
– getMapTo
Get Map To Name.
- (NSString *)getMapToReturn Value
Map To Name.
Discussion
Get Map To Name.
Declared In
SIHAdapterDescriptor.h
– setMapTo:
Set Map To Name.
- (void)setMapTo:(NSString *)mapToParameters
mapTo |
Map To Name. |
|---|
Discussion
Set Map To Name.
Declared In
SIHAdapterDescriptor.h
– isCache
Check whether cache is enabled or disabled.
- (bool)isCacheReturn Value
true/false; TRUE if cache enabled, FALSE if cache disabled.
Discussion
Check whether cache is enabled or disabled.
Declared In
SIHAdapterDescriptor.h
– setCache:
Set Cache value.
- (void)setCache:(bool)cacheParameters
cache |
Cache Enabled or Disabled. |
|---|
Discussion
Set Cache value.
Declared In
SIHAdapterDescriptor.h
– getHandlers
Get All Handler defined in descriptors.
- (NSEnumerator *)getHandlersReturn Value
All Handlers.
Discussion
Get All Handler defined in descriptors.
Declared In
SIHAdapterDescriptor.h
– getHandler:
Get Handler based on handler name.
- (SIHHandler *)getHandler:(NSString *)handlerNameParameters
handlerName |
Name of Handler. |
|---|
Return Value
Handler.
Discussion
Get Handler based on handler name.
Declared In
SIHAdapterDescriptor.h
– addHandler:
Add Handler.
- (void)addHandler:(SIHHandler *)handlerParameters
handler |
Handler. |
|---|
Discussion
Add Handler.
Declared In
SIHAdapterDescriptor.h
– containHandler:
Check whether handler exist or not based on handler name.
- (bool)containHandler:(NSString *)handlerNameParameters
handlerName |
Name of handler. @return |
|---|
Discussion
Check whether handler exist or not based on handler name.
Declared In
SIHAdapterDescriptor.h