Difference between revisions of "Extensions.DiagCom.IsDiagServiceEvent"
Jump to navigation
Jump to search
(Created page with "Category:DiagCom == Classification == {{ClassificationActivity | IsDiagServiceEvent | Checks whether an event was rased to a diagnostic service | Term | DiagCom|OTX...") |
|||
Line 5: | Line 5: | ||
== Pseudo-Code Syntax == | == Pseudo-Code Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | IsDiagServiceEvent(Event source | + | Boolean IsDiagServiceEvent(Event source); |
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 03:13, 18 July 2014
Contents
Classification
Name | IsDiagServiceEvent |
Short Description | Checks whether an event was rased to a diagnostic service |
Class | Term |
Extension | OTX DiagCom extension |
Group | Event related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
Boolean IsDiagServiceEvent(Event source);
Description
The IsDiagServiceEvent term checks whether the passed event so was rased to a diagnostic service on the DiagServiceEventSource was generated term or not, see Event Library.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Boolean | True if and only if the Eventoriginates from a DiagServiceEventSourceterm, otherwise false. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Event | Event | Term | - | [1] | Represents the Eventwhose type shall be tested. |
Examples
Boolean result = IsDiagServiceEvent(event);