All Classes Namespaces Functions Variables Enumerations Enumerator Properties
plyCommon.plyDataProviderInterface Interface Reference

Those classes able to provide plyDataObject with data must implement this interface It can also be used where a general callback is needed and the data set/ get might be ignored by a system More...

Inherited by DiaQ.DiaQEngine, and plyBloxKit.plyBloxGlobal.

Public Member Functions

object DataProvider_GetValue (string[] nfo)
 Override to provide the data. Passed the nfo[] array as set up in plyDataObject. More...
 
void DataProvider_SetValue (string[] nfo, object value)
 Override to set the data. Passed the nfo[] array as set up in plyDataObject and a value to set. More...
 
void DataProvider_Callback (string[] nfo)
 Called when general callback is made into implementer. Use case will depend on what system makes the call. Passed the nfo[] array as set up in plyDataObject. More...
 

Detailed Description

Those classes able to provide plyDataObject with data must implement this interface It can also be used where a general callback is needed and the data set/ get might be ignored by a system

Member Function Documentation

void plyCommon.plyDataProviderInterface.DataProvider_Callback ( string[]  nfo)

Called when general callback is made into implementer. Use case will depend on what system makes the call. Passed the nfo[] array as set up in plyDataObject.

object plyCommon.plyDataProviderInterface.DataProvider_GetValue ( string[]  nfo)

Override to provide the data. Passed the nfo[] array as set up in plyDataObject.

void plyCommon.plyDataProviderInterface.DataProvider_SetValue ( string[]  nfo,
object  value 
)

Override to set the data. Passed the nfo[] array as set up in plyDataObject and a value to set.