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 2020/10/12 21:40:27 UTC

[plc4x-build-tools] branch feature/plc4go updated: - Added a new Boolean type

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

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


The following commit(s) were added to refs/heads/feature/plc4go by this push:
     new d9ea75b  - Added a new Boolean type
d9ea75b is described below

commit d9ea75b0fff059f85dce22acfa7e2df9e4d1d0c4
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Mon Oct 12 23:40:20 2020 +0200

    - Added a new Boolean type
---
 .../types/references/BooleanTypeReference.java     | 23 ++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/BooleanTypeReference.java b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/BooleanTypeReference.java
new file mode 100644
index 0000000..09889ba
--- /dev/null
+++ b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/BooleanTypeReference.java
@@ -0,0 +1,23 @@
+/*
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+*/
+package org.apache.plc4x.plugins.codegenerator.types.references;
+
+public interface BooleanTypeReference extends SimpleTypeReference {
+
+}