Difference between revisions of "Core.Actions.AppendByteField"

From emotive
Jump to navigation Jump to search
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Core]]
+
{{DISPLAYTITLE:OTX '''AppendByteField'''}}[[Category:Core]]
 
== Classification ==
 
== Classification ==
 
{{ClassificationActivity | AppendByteField | Adds a new ByteField at the end of a ByteFields | [[Action]] | [[Core|OTX Core library]] | [[ByteFieldModifiers related actions]] | - | - }}
 
{{ClassificationActivity | AppendByteField | Adds a new ByteField at the end of a ByteFields | [[Action]] | [[Core|OTX Core library]] | [[ByteFieldModifiers related actions]] | - | - }}
Line 5: Line 5:
 
== OTL Syntax ==
 
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
ByteField.AppendByteField(ByteFieldTerm, {ByteFieldTerm, ...});
+
ByteField.AppendByteField(ByteFieldVariable, {ByteFieldTerm, ...});
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== Description ==
 
== Description ==
The OTX '''AppendByteField''' activity at the end of a [[ByteField]]s adds a new ByteField.
+
The OTX '''AppendByteField''' activity at the end of a [[Core.DataTypes.ComplexDataType.ByteField|ByteField]]s adds a new ByteField.
  
 
== Properties ==
 
== Properties ==
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| ByteField | [[ByteField]] | [[Variable]] | - | [1] | Variable of type ByteField to which to add the new ByteFIeld}}
+
{{TableRowPropertie1| ByteField | [[Core.DataTypes.ComplexDataType.ByteField|ByteField]] | [[Variable]] | - | [1] | Variable of type ByteField to which to add the new ByteFIeld}}
 
{{TableRowPropertie2| OtherByteField | [[Term]] | [[Variable]] | - | [1] | The new ByteField, which is added to the ByteField}}
 
{{TableRowPropertie2| OtherByteField | [[Term]] | [[Variable]] | - | [1] | The new ByteField, which is added to the ByteField}}
 
|}
 
|}
Line 20: Line 20:
 
== OTL Examples ==
 
== OTL Examples ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
public procedure main()
+
ByteField ByteField1 = &00FF;
{
+
ByteField NewByteField1 = &F000;
  ByteField ByteField1 = &00FF;
 
  ByteField NewByteField1 = &F000;
 
  
  ByteField.AppendByteField(ByteField1, {NewByteField1});
+
ByteField.AppendByteField(ByteField1, {NewByteField1});
}
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== See also ==
 
== See also ==
[[Assignment]] <br/>
+
[[Core.Actions.Assignment|Assignment]] <br/>
[[ProcedureCall]] <br/>
+
[[Core.Actions.ProcedureCall|ProcedureCall]] <br/>
[[ShiftRight]] <br/>
+
[[Core.Actions.ShiftRight|ShiftRight]] <br/>
[[ShiftLeft]] <br/>
+
[[Core.Actions.ShiftLeft|ShiftLeft]] <br/>
[[SetBit]] <br/>
+
[[Core.Actions.SetBit|SetBit]] <br/>
[[ReplaceSubByteField]] <br/>
+
[[Core.Actions.ReplaceSubByteField|ReplaceSubByteField]] <br/>
[[ListConcatenate]] <br/>
+
[[Core.Actions.ListConcatenate|ListConcatenate]] <br/>
[[ListAppendItems]] <br/>
+
[[Core.Actions.ListAppendItems|ListAppendItems]] <br/>
[[ListInsertItems]] <br/>
+
[[Core.Actions.ListInsertItems|ListInsertItems]] <br/>
[[ListRemoveItems]] <br/>
+
[[Core.Actions.ListRemoveItems|ListRemoveItems]] <br/>
[[ListClear]] <br/>
+
[[Core.Actions.ListClear|ListClear]] <br/>
[[MapUnion]] <br/>
+
[[Core.Actions.MapUnion|MapUnion]] <br/>
[[MapPutItems]] <br/>
+
[[Core.Actions.MapPutItems|MapPutItems]] <br/>
[[MapRemoveItems]] <br/>
+
[[Core.Actions.MapRemoveItems|MapRemoveItems]] <br/>
[[MapClear]]
+
[[Core.Actions.MapClear|MapClear]]

Latest revision as of 10:55, 16 February 2016

Classification

Name AppendByteField
Short Description Adds a new ByteField at the end of a ByteFields
Class Action
Extension OTX Core library
Group ByteFieldModifiers related actions
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

ByteField.AppendByteField(ByteFieldVariable, {ByteFieldTerm, ...});

Description

The OTX AppendByteField activity at the end of a ByteFields adds a new ByteField.

Properties

Name Data Type Class Default Cardinality Description
ByteField ByteField Variable - [1] Variable of type ByteField to which to add the new ByteFIeld
OtherByteField Term Variable - [1] The new ByteField, which is added to the ByteField

OTL Examples

ByteField ByteField1 = &00FF;
ByteField NewByteField1 = &F000;

ByteField.AppendByteField(ByteField1, {NewByteField1});

See also

Assignment
ProcedureCall
ShiftRight
ShiftLeft
SetBit
ReplaceSubByteField
ListConcatenate
ListAppendItems
ListInsertItems
ListRemoveItems
ListClear
MapUnion
MapPutItems
MapRemoveItems
MapClear