You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/08/07 14:58:38 UTC

[plc4x-build-tools] branch feature/implement-df1-driver updated: - Updated the current Netty driver prototype to work with the latest code generation updates.

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch feature/implement-df1-driver
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git


The following commit(s) were added to refs/heads/feature/implement-df1-driver by this push:
     new 888b24c  - Updated the current Netty driver prototype to work with the latest code generation updates.
888b24c is described below

commit 888b24c6511f3face4697a687b1d4b293ccad2bf
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Wed Aug 7 16:58:30 2019 +0200

    - Updated the current Netty driver prototype to work with the latest code generation updates.
---
 .../apache/plc4x/plugins/codegenerator/types/fields/ArrayField.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ArrayField.java b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ArrayField.java
index 2023e0c..a65220a 100644
--- a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ArrayField.java
+++ b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/fields/ArrayField.java
@@ -34,7 +34,8 @@ public interface ArrayField extends PropertyField {
 
     enum LengthType {
         COUNT,
-        LENGTH
+        LENGTH,
+        TERMINATED
     }
 
 }