pools = new WeakHashMap<>();
- static public ScheduledExecutorService getPrioritizedScheduledPool(String poolName, int coreThreads) {
+ public static ScheduledExecutorService getPrioritizedScheduledPool(String poolName, int coreThreads) {
ExecutorService pool = pools.get(poolName);
if (pool == null) {
synchronized (pools) {
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/folder/KNXFolderObserver.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/folder/KNXFolderObserver.java
index eadaf0030baf0..a1b06ebf950c4 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/folder/KNXFolderObserver.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/folder/KNXFolderObserver.java
@@ -1,10 +1,12 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
+
package org.openhab.binding.knx.internal.folder;
import static java.nio.file.StandardWatchEventKinds.*;
@@ -231,8 +233,8 @@ private static void checkFile(KNXProjectProvider knxProjectProvider, final File
}
}
} catch (Exception e) {
- LoggerFactory.getLogger(KNXFolderObserver.class)
- .warn("Cannot open file '" + file.getAbsolutePath() + "' for reading.", e);
+ LoggerFactory.getLogger(KNXFolderObserver.class).warn("Cannot open file '{}' for reading. '{}'",
+ file.getAbsolutePath(), e.getMessage());
}
}
}
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/BridgeConfiguration.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/BridgeConfiguration.java
index 38b3c01d05a15..357c6f385a550 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/BridgeConfiguration.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/BridgeConfiguration.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/RetryDatapoint.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/RetryDatapoint.java
index 23899ab0c091d..bce0b39be0fb6 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/RetryDatapoint.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/RetryDatapoint.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
@@ -71,4 +71,4 @@ public boolean equals(Object obj) {
return true;
}
-}
\ No newline at end of file
+}
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/TypeItemMap.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/TypeItemMap.java
index 8c85458312c84..23bd707aaf67a 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/TypeItemMap.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/handler/TypeItemMap.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/logging/LogAdapter.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/logging/LogAdapter.java
index a7f82a667630f..9f9e02d02bbf7 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/logging/LogAdapter.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/logging/LogAdapter.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/AbstractKNXProjectParser.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/AbstractKNXProjectParser.java
index 4c20daeb97ebe..dfb6ef0538484 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/AbstractKNXProjectParser.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/AbstractKNXProjectParser.java
@@ -1,3 +1,12 @@
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+
package org.openhab.binding.knx.internal.parser;
import java.text.DecimalFormat;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTEvaluation.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTEvaluation.java
index 9ffa004efe16d..2fb9206e9d7e1 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTEvaluation.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTEvaluation.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTException.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTException.java
index 1df164af68ee4..fb72f74831550 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTException.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTException.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTRule.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTRule.java
index cf1da8eb4a4f9..1fb37f31a0687 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTRule.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXDPTRule.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProject13Parser.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProject13Parser.java
index 74bf6d536304f..a6dbed2c9aff0 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProject13Parser.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProject13Parser.java
@@ -1,10 +1,12 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
+
package org.openhab.binding.knx.internal.parser;
import java.io.ByteArrayInputStream;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProjectParser.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProjectParser.java
index e229b41379012..e7357ab82222d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProjectParser.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/KNXProjectParser.java
@@ -1,10 +1,12 @@
/**
- * Copyright (c) 2014-2016 by the respective copyright holders.
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
+
package org.openhab.binding.knx.internal.parser;
import java.util.HashMap;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AccessRights.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AccessRights.java
index aa08b304b8cc9..06f0441642b89 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AccessRights.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AccessRights.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AddressTable.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AddressTable.java
index 25875aaa4c7f6..2c43d06340ed9 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AddressTable.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AddressTable.java
@@ -1,28 +1,38 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
import java.util.ArrayList;
import java.util.List;
+
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
-import org.w3c.dom.Element;
+import org.w3c.dom.Element;
/**
- * Java class for AddressTable complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
+ *
+ * Java class for AddressTable complex type.
+ *
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
*
* <complexType name="AddressTable">
* <complexContent>
@@ -37,13 +47,11 @@
* </complexContent>
* </complexType>
*
- *
- *
+ *
+ *
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "AddressTable", propOrder = {
- "any"
-})
+@XmlType(name = "AddressTable", propOrder = { "any" })
public class AddressTable {
@XmlAnyElement(lax = true)
@@ -57,26 +65,27 @@ public class AddressTable {
/**
* Gets the value of the any property.
- *
+ *
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the any property.
- *
+ *
*
* For example, to add a new item, do as follows:
+ *
*
- * getAny().add(newItem);
+ * getAny().add(newItem);
*
- *
- *
+ *
+ *
*
* Objects of the following type(s) are allowed in the list
* {@link Object }
* {@link Element }
- *
- *
+ *
+ *
*/
public List getAny() {
if (any == null) {
@@ -87,11 +96,11 @@ public List getAny() {
/**
* Gets the value of the codeSegment property.
- *
+ *
* @return
- * possible object is
- * {@link java.lang.String }
- *
+ * possible object is
+ * {@link java.lang.String }
+ *
*/
public java.lang.String getCodeSegment() {
return codeSegment;
@@ -99,11 +108,11 @@ public java.lang.String getCodeSegment() {
/**
* Sets the value of the codeSegment property.
- *
+ *
* @param value
- * allowed object is
- * {@link java.lang.String }
- *
+ * allowed object is
+ * {@link java.lang.String }
+ *
*/
public void setCodeSegment(java.lang.String value) {
this.codeSegment = value;
@@ -111,11 +120,11 @@ public void setCodeSegment(java.lang.String value) {
/**
* Gets the value of the offset property.
- *
+ *
* @return
- * possible object is
- * {@link java.lang.String }
- *
+ * possible object is
+ * {@link java.lang.String }
+ *
*/
public java.lang.String getOffset() {
return offset;
@@ -123,11 +132,11 @@ public java.lang.String getOffset() {
/**
* Sets the value of the offset property.
- *
+ *
* @param value
- * allowed object is
- * {@link java.lang.String }
- *
+ * allowed object is
+ * {@link java.lang.String }
+ *
*/
public void setOffset(java.lang.String value) {
this.offset = value;
@@ -135,11 +144,11 @@ public void setOffset(java.lang.String value) {
/**
* Gets the value of the maxEntries property.
- *
+ *
* @return
- * possible object is
- * {@link java.lang.String }
- *
+ * possible object is
+ * {@link java.lang.String }
+ *
*/
public java.lang.String getMaxEntries() {
return maxEntries;
@@ -147,11 +156,11 @@ public java.lang.String getMaxEntries() {
/**
* Sets the value of the maxEntries property.
- *
+ *
* @param value
- * allowed object is
- * {@link java.lang.String }
- *
+ * allowed object is
+ * {@link java.lang.String }
+ *
*/
public void setMaxEntries(java.lang.String value) {
this.maxEntries = value;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgram.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgram.java
index 73b85d7b273d6..069cf3e8952d1 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgram.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgram.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgramRef.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgramRef.java
index d65c6a9094cb8..6893e99091eca 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgramRef.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationProgramRef.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationPrograms.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationPrograms.java
index c538cf5aaef49..7d73575017215 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationPrograms.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ApplicationPrograms.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Area.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Area.java
index 7afe81d056794..2a152adb9b003 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Area.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Area.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AssociationTable.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AssociationTable.java
index b2e82bef80c42..fb9ac5fc6d219 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AssociationTable.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/AssociationTable.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attribute.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attribute.java
index 70bc8c6732b30..2f3018ea1f1ed 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attribute.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attribute.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attributes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attributes.java
index 1c574ab06fc84..cd1b8a9d90e2f 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attributes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Attributes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/BinaryData.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/BinaryData.java
index 646b98871a64c..e090f83a97c84 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/BinaryData.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/BinaryData.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Bit.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Bit.java
index c3c146ec6cc70..47b427d3617b4 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Bit.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Bit.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Buildings.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Buildings.java
index 01d4dd9fe3c3c..a006d66858c8d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Buildings.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Buildings.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ChannelInstances.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ChannelInstances.java
index 941608cd43cea..78e45b4ef7b2f 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ChannelInstances.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ChannelInstances.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Code.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Code.java
index d67f3d4c30c41..bcbd3d0cd9366 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Code.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Code.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObject.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObject.java
index 8e0f722ee35ba..ac669128c6c21 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObject.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObject.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRef.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRef.java
index a117cae51d80f..30236568e40aa 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRef.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRef.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRefs.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRefs.java
index 2c463ccfdc9d2..f7fdd47424973 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRefs.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectInstanceRefs.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRef.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRef.java
index 0a84230f7d67d..9035e4a4c3b84 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRef.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRef.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRefs.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRefs.java
index 9515c1e8ce6a8..ad35f98ee05bf 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRefs.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectRefs.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectTable.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectTable.java
index 79338a0d5d2d3..4cf2ce9ea04cf 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectTable.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ComObjectTable.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Connectors.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Connectors.java
index 1a71f26895a63..2a2dd74173692 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Connectors.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Connectors.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtype.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtype.java
index 0212083087479..d5674a8baa17b 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtype.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtype.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtypes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtypes.java
index 1161210f8571d..aa5f0e19033a2 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtypes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointSubtypes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointType.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointType.java
index b25e78edb67e4..d7ea66eb1cc72 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointType.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointType.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointTypes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointTypes.java
index 1175a218371f7..0eb0a70b85bd1 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointTypes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DatapointTypes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceCompare.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceCompare.java
index 5ba3bc574be8a..09598bbf90226 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceCompare.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceCompare.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceInstance.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceInstance.java
index 80c2e55b6f7e2..70a05c117b010 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceInstance.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DeviceInstance.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMask.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMask.java
index 73486e41ca6d3..4b07c9366c5d9 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMask.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMask.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMasks.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMasks.java
index deca93db98be9..dce0a1273073c 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMasks.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/DownwardCompatibleMasks.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Dynamic.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Dynamic.java
index 3b40756178138..65be3ffd7ad05 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Dynamic.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Dynamic.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/EnumValue.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/EnumValue.java
index 7012e683aab13..72f80e0fca579 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/EnumValue.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/EnumValue.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Enumeration.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Enumeration.java
index 869216f0dcce0..acea87b75811a 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Enumeration.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Enumeration.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Extension.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Extension.java
index cd9c4c059c054..18bfd17165353 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Extension.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Extension.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Feature.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Feature.java
index 3f7463f925e3d..049845cc6539e 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Feature.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Feature.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Features.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Features.java
index a93c1504e64cf..cfac2e66e92d2 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Features.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Features.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FixupList.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FixupList.java
index 8f938d5833204..e0676e3aa2fad 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FixupList.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FixupList.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Float.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Float.java
index 8250387b43124..8db9a44b37762 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Float.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Float.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Format.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Format.java
index 94b7fef1b2904..bd69e11268738 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Format.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Format.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlock.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlock.java
index 77122fb3bc603..bfe13d5f235b9 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlock.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlock.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlocks.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlocks.java
index 79e018bc6ac8f..4fb70cfd920f3 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlocks.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/FunctionalBlocks.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddress.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddress.java
index b7f78f95a13e0..e3e2e57fbbdb5 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddress.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddress.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddressReference.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddressReference.java
index 4eb3f40e85a72..dc9448f3aafdc 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddressReference.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddressReference.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddresses.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddresses.java
index c0ce16fc8c493..f4be602d69c07 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddresses.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupAddresses.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRange.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRange.java
index 6a5150b0a5cd2..090f2d7f4d9f5 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRange.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRange.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRanges.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRanges.java
index 7ccf5a8636493..98de2bbc2daae 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRanges.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/GroupRanges.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware.java
index 8867dffedee7c..3c4597b99f41d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Program.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Program.java
index d7b917b52514f..e30d324dfeadc 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Program.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Program.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Programs.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Programs.java
index 68dfb80e8a161..65923025c749d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Programs.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Hardware2Programs.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HawkConfigurationData.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HawkConfigurationData.java
index 8283b83012fdb..55daa63b2bd7e 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HawkConfigurationData.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HawkConfigurationData.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HistoryEntries.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HistoryEntries.java
index 080492b74282f..46b902ce8efaa 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HistoryEntries.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/HistoryEntries.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ImgLocation.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ImgLocation.java
index deb7d5b956b5f..93c87f66b1cf4 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ImgLocation.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ImgLocation.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installation.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installation.java
index 7c9ebd04f0447..580aab9f1566d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installation.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installation.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installations.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installations.java
index 57c75c4bbea15..43210d28d4278 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installations.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Installations.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObject.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObject.java
index 15c1a2ab0072c..3a7688f5aee88 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObject.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObject.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperties.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperties.java
index 6ad5141f61ce6..a1a9dcd0b8d39 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperties.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperties.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperty.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperty.java
index 90d3813317e6b..8a090f4112060 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperty.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectProperty.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectType.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectType.java
index b495f2cb2f8b7..561b1d964962b 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectType.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectType.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectTypes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectTypes.java
index f13b1caf65244..b049b72bee407 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectTypes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjectTypes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjects.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjects.java
index 02991cf3252a1..e675c0765c473 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjects.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/InterfaceObjects.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/KNX.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/KNX.java
index ca7fe72d3fcb1..c19ca0641beab 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/KNX.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/KNX.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Language.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Language.java
index 8e2044251d52b..4899e6a4b37d3 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Language.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Language.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Languages.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Languages.java
index 6111e15eb56ab..ff69ae0441630 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Languages.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Languages.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlAbsSegment.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlAbsSegment.java
index 53720fdbb40f4..e0e4babaa0f1a 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlAbsSegment.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlAbsSegment.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlClearLCFilterTable.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlClearLCFilterTable.java
index ffaaffb188579..be4f64e52d3a9 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlClearLCFilterTable.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlClearLCFilterTable.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareMem.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareMem.java
index 91dd97de6de82..82a72fadabff3 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareMem.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareMem.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareProp.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareProp.java
index fc1d1c821a4ea..038bf5668ae6f 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareProp.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlCompareProp.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlDelay.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlDelay.java
index 8c20d0babe8c7..87982e390d4da 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlDelay.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlDelay.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoad.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoad.java
index dbc1c9d1c9b35..6684a61b522d7 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoad.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoad.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadCompleted.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadCompleted.java
index 3cf7e6e946e68..99ccec6210ad2 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadCompleted.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadCompleted.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageMem.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageMem.java
index 4e82990566086..5335bbae058df 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageMem.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageMem.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageProp.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageProp.java
index cab5b160f2ca1..6e427d3abb479 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageProp.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlLoadImageProp.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMapError.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMapError.java
index b0a83ed570bcf..e4e93615b7fee 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMapError.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMapError.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMasterReset.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMasterReset.java
index 6d315c4a9e492..e2ec42d02ab40 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMasterReset.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMasterReset.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMerge.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMerge.java
index 1c86add0235d0..554a28b88f2eb 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMerge.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlMerge.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlRelSegment.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlRelSegment.java
index 11623414f26db..96801efb72dab 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlRelSegment.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlRelSegment.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlSetControlVariable.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlSetControlVariable.java
index 6ae025d46645b..b06cfaaa49322 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlSetControlVariable.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlSetControlVariable.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl1.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl1.java
index 7faa60af3f3bb..6a5313e486af1 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl1.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl1.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl2.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl2.java
index 1215bec060994..f6e7eba77d5ce 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl2.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskCtrl2.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskPtr.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskPtr.java
index a9d7fac769d1e..85aea65b990c1 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskPtr.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskPtr.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskSegment.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskSegment.java
index f32025c6e24b8..6d16fce317c0f 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskSegment.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlTaskSegment.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlUnload.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlUnload.java
index ba0ac4d788a5e..7e0c3f68662d4 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlUnload.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlUnload.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteMem.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteMem.java
index 0e0208fdda834..89dbd6d1e9828 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteMem.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteMem.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteProp.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteProp.java
index 9a77e3b73775d..464576cfa4cfd 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteProp.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteProp.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteRelMem.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteRelMem.java
index f14547d07c5d8..811784df28d4d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteRelMem.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LdCtrlWriteRelMem.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Line.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Line.java
index 6d670eaeff5e3..6f20fdc216133 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Line.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Line.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LoadProcedures.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LoadProcedures.java
index a92889cfb34db..9c45902ca9171 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LoadProcedures.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/LoadProcedures.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Location.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Location.java
index 532892ed8f9e5..b72ef79c9cf33 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Location.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Location.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturer.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturer.java
index d2ebbf51564b9..03b3939c49b4e 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturer.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturer.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerData.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerData.java
index 003a12d8b9ac5..54bc05dea64c1 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerData.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerData.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerMaster.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerMaster.java
index f74b4e2ef3a9b..a9e0c07e9960d 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerMaster.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ManufacturerMaster.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturers.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturers.java
index ef1785965dea3..f976dee8b3188 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturers.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Manufacturers.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntries.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntries.java
index cba0ffb1473ea..62a76e6a06f0a 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntries.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntries.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntry.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntry.java
index 5835bc9da2aeb..b403a1bd3fa1b 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntry.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskEntry.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersion.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersion.java
index 5873c45805887..94ef4b5ac6969 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersion.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersion.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersions.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersions.java
index 0597d7eb2e475..7abfc2acde13c 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersions.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MaskVersions.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MasterData.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MasterData.java
index 5eafa25d85e66..e6f06eed6083b 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MasterData.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MasterData.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumType.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumType.java
index 860338f9e6ab1..f0d80d76703a0 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumType.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumType.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumTypes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumTypes.java
index 1ddde0800195b..0c4558a69e006 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumTypes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MediumTypes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegment.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegment.java
index ac312b744ac43..c8ff66873d2ba 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegment.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegment.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegments.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegments.java
index 9ebd588953c99..a1aa1f929fb95 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegments.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/MemorySegments.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ObjectFactory.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ObjectFactory.java
index e9cec15700e1d..ef085143a1968 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ObjectFactory.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ObjectFactory.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
@@ -31,38 +38,38 @@
@XmlRegistry
public class ObjectFactory {
- private final static QName _MaskVersionDownwardCompatibleMasks_QNAME = new QName("http://knx.org/xml/project/13", "DownwardCompatibleMasks");
- private final static QName _MaskVersionHawkConfigurationData_QNAME = new QName("http://knx.org/xml/project/13", "HawkConfigurationData");
- private final static QName _MaskVersionMaskEntries_QNAME = new QName("http://knx.org/xml/project/13", "MaskEntries");
- private final static QName _ManufacturerMasterPublicKeys_QNAME = new QName("http://knx.org/xml/project/13", "PublicKeys");
- private final static QName _InterfaceObjectProperty_QNAME = new QName("http://knx.org/xml/project/13", "Property");
- private final static QName _ConnectorsSend_QNAME = new QName("http://knx.org/xml/project/13", "Send");
- private final static QName _ConnectorsReceive_QNAME = new QName("http://knx.org/xml/project/13", "Receive");
- private final static QName _ProcedureLdCtrlCompareMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlCompareMem");
- private final static QName _ProcedureLdCtrlAbsSegment_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlAbsSegment");
- private final static QName _ProcedureLdCtrlLoad_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoad");
- private final static QName _ProcedureLdCtrlUnload_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlUnload");
- private final static QName _ProcedureLdCtrlLoadCompleted_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoadCompleted");
- private final static QName _ProcedureLdCtrlMapError_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlMapError");
- private final static QName _ProcedureLdCtrlClearLCFilterTable_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlClearLCFilterTable");
- private final static QName _ProcedureLdCtrlConnect_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlConnect");
- private final static QName _ProcedureLdCtrlMerge_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlMerge");
- private final static QName _ProcedureLdCtrlTaskCtrl1_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskCtrl1");
- private final static QName _ProcedureLdCtrlTaskCtrl2_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskCtrl2");
- private final static QName _ProcedureLdCtrlSetControlVariable_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlSetControlVariable");
- private final static QName _ProcedureLdCtrlDisconnect_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlDisconnect");
- private final static QName _ProcedureLdCtrlRestart_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlRestart");
- private final static QName _ProcedureLdCtrlDelay_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlDelay");
- private final static QName _ProcedureLdCtrlLoadImageMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoadImageMem");
- private final static QName _ProcedureLdCtrlWriteMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlWriteMem");
- private final static QName _ProcedureLdCtrlTaskSegment_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskSegment");
- private final static QName _ProcedureLdCtrlWriteProp_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlWriteProp");
- private final static QName _ProcedureLdCtrlMasterReset_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlMasterReset");
- private final static QName _ProcedureLdCtrlTaskPtr_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskPtr");
- private final static QName _ProcedureLdCtrlRelSegment_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlRelSegment");
- private final static QName _ProcedureLdCtrlLoadImageProp_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoadImageProp");
- private final static QName _ProcedureLdCtrlCompareProp_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlCompareProp");
- private final static QName _ProcedureLdCtrlWriteRelMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlWriteRelMem");
+ private static final QName _MaskVersionDownwardCompatibleMasks_QNAME = new QName("http://knx.org/xml/project/13", "DownwardCompatibleMasks");
+ private static final QName _MaskVersionHawkConfigurationData_QNAME = new QName("http://knx.org/xml/project/13", "HawkConfigurationData");
+ private static final QName _MaskVersionMaskEntries_QNAME = new QName("http://knx.org/xml/project/13", "MaskEntries");
+ private static final QName _ManufacturerMasterPublicKeys_QNAME = new QName("http://knx.org/xml/project/13", "PublicKeys");
+ private static final QName _InterfaceObjectProperty_QNAME = new QName("http://knx.org/xml/project/13", "Property");
+ private static final QName _ConnectorsSend_QNAME = new QName("http://knx.org/xml/project/13", "Send");
+ private static final QName _ConnectorsReceive_QNAME = new QName("http://knx.org/xml/project/13", "Receive");
+ private static final QName _ProcedureLdCtrlCompareMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlCompareMem");
+ private static final QName _ProcedureLdCtrlAbsSegment_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlAbsSegment");
+ private static final QName _ProcedureLdCtrlLoad_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoad");
+ private static final QName _ProcedureLdCtrlUnload_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlUnload");
+ private static final QName _ProcedureLdCtrlLoadCompleted_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoadCompleted");
+ private static final QName _ProcedureLdCtrlMapError_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlMapError");
+ private static final QName _ProcedureLdCtrlClearLCFilterTable_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlClearLCFilterTable");
+ private static final QName _ProcedureLdCtrlConnect_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlConnect");
+ private static final QName _ProcedureLdCtrlMerge_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlMerge");
+ private static final QName _ProcedureLdCtrlTaskCtrl1_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskCtrl1");
+ private static final QName _ProcedureLdCtrlTaskCtrl2_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskCtrl2");
+ private static final QName _ProcedureLdCtrlSetControlVariable_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlSetControlVariable");
+ private static final QName _ProcedureLdCtrlDisconnect_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlDisconnect");
+ private static final QName _ProcedureLdCtrlRestart_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlRestart");
+ private static final QName _ProcedureLdCtrlDelay_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlDelay");
+ private static final QName _ProcedureLdCtrlLoadImageMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoadImageMem");
+ private static final QName _ProcedureLdCtrlWriteMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlWriteMem");
+ private static final QName _ProcedureLdCtrlTaskSegment_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskSegment");
+ private static final QName _ProcedureLdCtrlWriteProp_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlWriteProp");
+ private static final QName _ProcedureLdCtrlMasterReset_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlMasterReset");
+ private static final QName _ProcedureLdCtrlTaskPtr_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlTaskPtr");
+ private static final QName _ProcedureLdCtrlRelSegment_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlRelSegment");
+ private static final QName _ProcedureLdCtrlLoadImageProp_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlLoadImageProp");
+ private static final QName _ProcedureLdCtrlCompareProp_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlCompareProp");
+ private static final QName _ProcedureLdCtrlWriteRelMem_QNAME = new QName("http://knx.org/xml/project/13", "LdCtrlWriteRelMem");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.openhab.binding.knx.internal.parser.knxproj13
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Options.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Options.java
index eeb1e3cbcf758..be2a930534334 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Options.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Options.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameter.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameter.java
index 89174466778be..1709eca8eabf5 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameter.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameter.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterCalculations.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterCalculations.java
index 832c0642c2c43..5445c1cd9a59e 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterCalculations.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterCalculations.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterInstanceRefs.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterInstanceRefs.java
index 43de76288111a..3db7cc612a7e6 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterInstanceRefs.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterInstanceRefs.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterRefs.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterRefs.java
index 79e389cd28804..b10ad09ba6be3 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterRefs.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterRefs.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterTypes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterTypes.java
index 47c17a25c041d..3f67a34bd9e5e 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterTypes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ParameterTypes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameters.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameters.java
index 0da61dc797d54..e19cd0b514a00 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameters.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Parameters.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedure.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedure.java
index 579598a18c097..5d58fd79ea90b 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedure.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedure.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedures.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedures.java
index 0fa83ae6d1ebf..90bde2bbc78b6 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedures.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Procedures.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Product.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Product.java
index faba1c9680513..afb9ef62f7caf 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Product.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Product.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProductLanguages.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProductLanguages.java
index fb61429fe92b6..3315fc6c0eeff 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProductLanguages.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProductLanguages.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Products.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Products.java
index 377741f5af761..56c8ea053acac 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Products.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Products.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Project.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Project.java
index b9ff86a14d13d..000b73194a779 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Project.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Project.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProjectInformation.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProjectInformation.java
index ccca9089b2da7..30b3715faedd2 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProjectInformation.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ProjectInformation.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Property.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Property.java
index 4fae3a3115336..447d32303ad44 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Property.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Property.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataType.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataType.java
index 8c906add34220..292c23cfd3f69 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataType.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataType.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataTypes.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataTypes.java
index b6ea52ece179e..09b93400e979c 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataTypes.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PropertyDataTypes.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKey.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKey.java
index 62e4d8730abec..36829193e99f2 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKey.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKey.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKeys.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKeys.java
index daf8567307111..be63a6d603551 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKeys.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/PublicKeys.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RSAKeyValue.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RSAKeyValue.java
index 20fafbde38b33..40dfdcdf59852 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RSAKeyValue.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RSAKeyValue.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RefType.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RefType.java
index 51fee91d21bde..a454dfc6f66c5 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RefType.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RefType.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RegistrationInfo.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RegistrationInfo.java
index 5d13e7a7ea9b4..d59eb44242d8c 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RegistrationInfo.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/RegistrationInfo.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Reserved.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Reserved.java
index 75662eeee1230..f399d23cad704 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Reserved.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Reserved.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resource.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resource.java
index fbafda3a3baa4..4c27b36aaf7db 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resource.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resource.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ResourceType.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ResourceType.java
index 0119e841267ff..ba0c38b0ccfa0 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ResourceType.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/ResourceType.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resources.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resources.java
index 7e43aea2f7915..37c06f96de068 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resources.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Resources.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Security.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Security.java
index e3e96f415fa3f..b42e9999a15a4 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Security.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Security.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/SignedInteger.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/SignedInteger.java
index 7665f371b2689..a3cf7d4c2918a 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/SignedInteger.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/SignedInteger.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Static.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Static.java
index 0dec9847c4806..cc1df477231ec 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Static.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Static.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/String.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/String.java
index 469b59104ad45..02333a99a7a30 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/String.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/String.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Topology.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Topology.java
index 74ca307f0ff12..22bf4d45548bc 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Topology.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Topology.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Trades.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Trades.java
index 1abe8c8858b40..663cbf6833a2e 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Trades.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Trades.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Translation.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Translation.java
index 9b82865583afe..d452937e03aaa 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Translation.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/Translation.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationElement.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationElement.java
index 9dbef01a72ff1..4148f07c7f6a3 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationElement.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationElement.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationUnit.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationUnit.java
index ca4eb5e7ceaf3..0ece5f1ffed9b 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationUnit.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/TranslationUnit.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnassignedDevices.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnassignedDevices.java
index 46960b00ff34d..6ed3dc95a84c2 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnassignedDevices.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnassignedDevices.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnsignedInteger.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnsignedInteger.java
index e1301bd98dbb6..5c68be66c6cdc 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnsignedInteger.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UnsignedInteger.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UserFiles.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UserFiles.java
index 51774e4acff22..7fbc5b1655e40 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UserFiles.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/UserFiles.java
@@ -1,10 +1,17 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/package-info.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/package-info.java
index a1d1dddbc7736..86d341c3a550a 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/package-info.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/parser/knxproj13/package-info.java
@@ -1,9 +1,16 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2017.03.09 at 08:34:29 PM CET
-//
-
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+/**
+ * This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
+ * See http://java.sun.com/xml/jaxb
+ * Any modifications to this file will be lost upon recompilation of the source schema.
+ * Generated on: 2017.03.09 at 08:34:29 PM CET
+ */
@javax.xml.bind.annotation.XmlSchema(namespace = "http://knx.org/xml/project/13", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package org.openhab.binding.knx.internal.parser.knxproj13;
diff --git a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/provider/KNXProjectThingProvider.java b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/provider/KNXProjectThingProvider.java
index efd9621f0a2fa..2e5a03e4f5263 100644
--- a/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/provider/KNXProjectThingProvider.java
+++ b/addons/binding/org.openhab.binding.knx/src/main/java/org/openhab/binding/knx/internal/provider/KNXProjectThingProvider.java
@@ -1,3 +1,12 @@
+/**
+ * Copyright (c) 2010-2017 by the respective copyright holders.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ */
+
package org.openhab.binding.knx.internal.provider;
import static org.openhab.binding.knx.KNXBindingConstants.*;