|
int | call () |
| Calls an underlying driver function expecting no parameters.
|
|
int | call (String params) |
| Calls an underlying driver function.
|
|
int | call (String params, String delimiters) |
| Calls an underlying driver function.
|
|
int | call (StringVector params) |
| Calls an underlying driver function.
|
|
long | changedCounter () |
| Returns the current changed counter for the component referenced by this object.
|
|
long | changedCounterAttr () |
| Returns the current attribute changed counter for the component referenced by this object.
|
|
synchronized void | delete () |
|
String | displayName () |
| Returns the display name of the component referenced by this object.
|
|
String | docString () |
| Returns a string containing general information about the component referenced by this object.
|
|
Component | firstChild () |
| Moves to the first child of this component(moves down one level).
|
|
Component | firstSibling () |
| Moves to the first sibling(the first feature in the current list of features).
|
|
int | flags () |
| Returns the flags associated with this component.
|
|
String | flagsAsString () |
| Returns the flags associated with this component as a string.
|
|
String | flagsAsString (String separator) |
| Returns the flags associated with this component as a string.
|
|
int | hObj () |
| Returns a unique identifier for the component referenced by this object.
|
|
boolean | isDefault () |
| Checks if this component is currently referencing the default for this component.
|
|
boolean | isList () |
| Checks if this component is of type mvIMPACT.acquire.ComponentList.
|
|
boolean | isMeth () |
| Checks if this component is of type mvIMPACT.acquire.Method.
|
|
boolean | isProp () |
| Checks if this component is of type mvIMPACT.acquire.Property or a derived type.
|
|
boolean | isValid () |
| Checks if the internal component referenced by this object is still valid.
|
|
boolean | isVisible () |
| Checks if the component is currently shadowed due to a settings made elsewhere or not.
|
|
boolean | isWriteable () |
| Checks if the caller has write/modify access to the component.
|
|
Component | lastSibling () |
| Moves to the last sibling(the last feature in the current list of features).
|
|
| Method () |
| Constructs a new unbound mvIMPACT.acquire.Method object.
|
|
| Method (int hMeth) |
| Constructs a new mvIMPACT.acquire.Method object.
|
|
| Method (Method src) |
| Constructs a new mvIMPACT.acquire.Method from an existing one.
|
|
String | name () |
| Returns the name of the component referenced by this object.
|
|
Component | nextSibling () |
| Moves to the next sibling(the next feature in the current list of features).
|
|
String | paramList () |
| Returns the parameter list of the methods as a string.
|
|
Component | parent () |
| Moves to the parent of this component(moves up one level).
|
|
int | representation () |
| Returns the recommended representation for this component.
|
|
String | representationAsString () |
| Returns the recommended representation of the referenced component as a string.
|
|
Component | restoreDefault () |
| Restores the default for the referenced component.
|
|
Component | selectedFeature (long index) |
| Retrieves a component that is selected by the current one.
|
|
long | selectedFeatureCount () |
| Returns the number of features selected by the current one.
|
|
long | selectedFeatures (ComponentVector v) |
| Retrieves the list of components that are selected by the current one.
|
|
Component | selectingFeature (long index) |
| Retrieves a component that is selecting the current one.
|
|
long | selectingFeatureCount () |
| Returns the number of features selecting the current one.
|
|
long | selectingFeatures (ComponentVector v) |
| Retrieves the list of components that are selecting the current one.
|
|
int | type () |
| Returns the type of the referenced component.
|
|
String | typeAsString () |
| Returns the type of the referenced component as a string.
|
|
int | visibility () |
| Returns the recommended visibility for this component.
|
|
String | visibilityAsString () |
| Returns the recommended visibility of the referenced component as a string.
|
|
A class to call arbitrary driver functions.
Normally all functions needed by the user and offered by the driver will be provided as a normal function somewhere within this interface. In rare cases however it might be necessary to call a function, which hasn't been implemented in this interface. In that case this class will serve as a backdoor.
int call |
( |
String | params | ) |
|
Calls an underlying driver function.
This function can be used to call any driver function which is registered for the device it is called for. To call a function successfully the parameters passed to the function must match the parameters expected by the function.
All parameters are passed as a single string, which is parsed with respect to the given delimiter characters internally.
To find out what kind of parameters are expected by the function use the function mvIMPACT.acquire.Method.paramList().
floating point values can be passed either with a '.' or a ',' acting as the decimal point.
'empty' strings can be passed as a single underline('_').
- Attention
- The characters '.', ',' and '_' can't be used as delimiters.
meth.call( "stringParam 3,14" );
meth.call( "1000%666%_", "%" );
- Returns
- An integer value. For a typical function that is part of the driver SDK this integer value will be
- Parameters
-
params | [in] The parameters to be passed to the function as a single string |
int call |
( |
String | params, |
|
|
String | delimiters ) |
Calls an underlying driver function.
This function can be used to call any driver function which is registered for the device it is called for. To call a function successfully the parameters passed to the function must match the parameters expected by the function.
All parameters are passed as a single string, which is parsed with respect to the given delimiter characters internally.
To find out what kind of parameters are expected by the function use the function mvIMPACT.acquire.Method.paramList().
floating point values can be passed either with a '.' or a ',' acting as the decimal point.
'empty' strings can be passed as a single underline('_').
- Attention
- The characters '.', ',' and '_' can't be used as delimiters.
meth.call( "stringParam 3,14" );
meth.call( "1000%666%_", "%" );
- Returns
- An integer value. For a typical function that is part of the driver SDK this integer value will be
- Parameters
-
params | [in] The parameters to be passed to the function as a single string |
delimiters | [in] A string containing valid delimiter characters for the parameter string |
Calls an underlying driver function.
This function can be used to call any driver function which is registered for the device it is called for. To call a function successfully the parameters passed to the function must match the parameters expected by the function.
The parameters are passed as a list of strings.
To find out what kind of parameters are expected by the function use the function mvIMPACT.acquire.Method.paramList().
floating point values can be passed either with a '.' or a ',' acting as the decimal point.
'empty' strings can be passed as a single underline('_').rs.
ArrayList<String> list = new ArrayList<String>();
list.add( "stringParam" );
list.add( "3.14" );
meth.call( params );
Definition StringVector.java:11
- Returns
- An integer value. For a typical function that is part of the driver SDK this integer value will be
- Parameters
-
params | [in] The parameters to be passed to the function as a list of strings |
Checks if the component is currently shadowed due to a settings made elsewhere or not.
Settings applied to certain components might affect the behaviour of others. For example an activated automatic gain control might shadow the value written to the gain property by the user as the gain is calculated internally. In order to check if modifying the actual component will affect the behaviour of the system this function may be used. When it returns true, the mvIMPACT.acquire.Component will have an impact on the system, if false is returned, the feature might be modified, but this will currently NOT influence the acquisition process or the overall behaviour of the device or driver.
This is what is called visibility. The user still might modify or read the current mvIMPACT.acquire.Component when it's not visible however the actual data will be used only if the Component is visible (mvIMPACT.acquire.TComponentFlag.cfInvisible must NOT be set).
The visibility of a mvIMPACT.acquire.Component object will change only if other mvIMPACT.acquire.Component objects are modified and NEVER when a program runs but does not change any mvIMPACT.acquire.Component.
Returns the parameter list of the methods as a string.
This function returns a string containing one character for each parameter this mvIMPACT.acquire.Method object expects and one for the return type of the function call.
The first character is the return type of the function all others are parameters. void functions don't specify parameters.
The characters have the following meaning:
- i specifies a 32-bit integer value
- I specifies a 64-bit integer value
- s specifies a pointer to a C-string
- f specifies a double precision float value
- p specifies a pointer value
- v specifies a void return value
EXAMPLES:
- 'v': This is a function returning nothing (void). It expects no parameters.
- 'viis': This is a function returning nothing (void). It expects 2 integer values and one pointer to a C-string.
- 'if': This function returns an integer value and expects a float value.
- Returns
- The parameter list of the method as a string.
Retrieves a component that is selected by the current one.
This function retrieves a component that is selected by the current one. This information is mainly useful for GUI applications that want to arrange features in a way that dependencies between features can easily been spotted.
When a component 'selects' other components, this indicates that selected components may change whenever the selecting component changes. An example for a selector might be a property defining the index within a LUT while the value of a particular LUT entry could be a selected feature. Assuming 2 properties LUTIndex and LUTValue then changing LUTIndex will invalidate and possibly change LUTValue.
To find out how many mvIMPACT.acquire.Component objects are selected by the current one call mvIMPACT.acquire.Component.selectedFeatureCount. This value minus 1 will also be the max. value for index.
- See also
- mvIMPACT.acquire.Component.selectedFeatureCount,
mvIMPACT.acquire.Component.selectedFeatures
- Since
- 1.11.20
- Returns
- A mvIMPACT.acquire.Component that is selected by the current one.
- Parameters
-
index | [in] The index for the component to query. |
Retrieves a component that is selecting the current one.
This function retrieves a component that is selecting the current one. This information is mainly useful for GUI applications that want to arrange features in a way that dependencies between features can easily been spotted.
When a component 'selects' other components, this indicates that selected components may change whenever the selecting component changes. An example for a selector might be a property defining the index within a LUT while the value of a particular LUT entry could be a selected feature. Assuming 2 properties LUTIndex and LUTValue then changing LUTIndex will invalidate and possibly change LUTValue.
To find out how many mvIMPACT.acquire.Component objects are selecting the current one call mvIMPACT.acquire.Component.selectingFeatureCount. This value minus 1 will also be the max. value for index.
- See also
- mvIMPACT.acquire.Component.selectingFeatureCount,
mvIMPACT.acquire.Component.selectingFeatures
- Since
- 1.11.20
- Returns
- A mvIMPACT.acquire.Component that is selecting the current one.
- Parameters
-
index | [in] The index for the component to query. |