Difference between revisions of "Extensions.Job.SetJobInfo"

From emotive
Jump to navigation Jump to search
(Created page with "== Classification == {{ClassificationActivity | SetJobInfo | Set job information | Action | OTX Job extension | Job related actions | InvalidStateException...")
 
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{DISPLAYTITLE:  '''SetJobInfo '''}}
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | SetJobInfo | Set job information | [[Action]] | [[Job|OTX Job extension]] | [[Job related actions]] | [[InvalidStateException]] | - }}
+
{{ClassificationActivity | SetJobInfo | Sets a job information | [[Action]] | [[Extensions.Job|OTX Job extension]] | [[Extensions.Job#Actions|Job related actions]] | [[Extensions.DiagCom.InvalidStateException|InvalidStateException]] | - }}
 +
 
 +
== OTL Syntax ==
 +
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 +
Job.SetJobInfo(StringTerm info);
 +
</syntaxhighlight>
  
 
== Description ==
 
== Description ==
'''SetJobInfo''' set a job information which is sent to the calling tester.
+
The '''SetJobInfo''' will set a job information which is sent to the calling tester.
  
 
== Properties ==
 
== Properties ==
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| Info | [[String]] | [[Term]] | - | [1] | A string that is sent to the tester as job information.}}
+
{{TableRowPropertie2| Info | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | Represents a '''string''' which will be sent to the tester as job information.}}
 
|}
 
|}
 +
 +
== OTL Examples ==
 +
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 +
/// Local Declarations
 +
 +
String Info1;
 +
 +
/// Flow
 +
 +
Job.SetJobInfo(Info1);
 +
</syntaxhighlight>
  
 
== See also ==
 
== See also ==
[[SendFinalResult]]<br/>
+
[[Extensions.Job.SendFinalResult|SendFinalResult]]<br/>
[[SendIntermediateResult]]<br/>
+
[[Extensions.Job.SendIntermediateResult|SendIntermediateResult]]<br/>
[[SetProgressInfo]]<br/>
+
<!--[[Extensions.Job.SetJobInfo|SetJobInfo]]<br/>-->
[[AddElement]]<br/>
+
[[Extensions.Job.SetProgressInfo|SetProgressInfo]]<br/>
[[AddBranchByName]]<br/>
+
[[Extensions.Job.AddElement|AddElement]]<br/>
[[AddBranchByIndex]]<br/>
+
[[Extensions.Job.AddBranchByName|AddBranchByName]]<br/>
[[AddBranchByValue]]<br/>
+
[[Extensions.Job.AddBranchByIndex|AddBranchByIndex]]<br/>
[[AddEnvDataByDtc]]
+
[[Extensions.Job.AddBranchByValue|AddBranchByValue]]<br/>
 +
[[Extensions.Job.AddEnvDataByDtc|AddEnvDataByDtc]]

Latest revision as of 03:26, 13 September 2019

Classification

Name SetJobInfo
Short Description Sets a job information
Class Action
Extension OTX Job extension
Group Job related actions
Exceptions InvalidStateException
Checker Rules -
Standard Compliant Yes

OTL Syntax

Job.SetJobInfo(StringTerm info);

Description

The SetJobInfo will set a job information which is sent to the calling tester.

Properties

Name Data Type Class Default Cardinality Description
Info String Term - [1] Represents a string which will be sent to the tester as job information.

OTL Examples

/// Local Declarations

String Info1;

/// Flow

Job.SetJobInfo(Info1);

See also

SendFinalResult
SendIntermediateResult
SetProgressInfo
AddElement
AddBranchByName
AddBranchByIndex
AddBranchByValue
AddEnvDataByDtc