diff --git a/LICENSE b/LICENSE
index abaeed9..ea569ee 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,27 +1,21 @@
-Copyright (c) 2016, Ulrich Wolffgang
-All rights reserved.
+MIT License
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
+Copyright (c) 2017 Ulrich Wolffgang
-* Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
-* Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
-* Neither the name of the copyright holder nor the names of its contributors
- may be used to endorse or promote products derived from this software without
- specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 26e62c8..5a76546 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ The parser is developed test-driven and has successfully been **applied to large
[](https://travis-ci.org/uwol/vb6parser)
[](https://coveralls.io/github/uwol/vb6parser?branch=master)
-[](https://opensource.org/licenses/BSD-3-Clause)
+[](https://opensource.org/licenses/MIT)
[](https://twitter.com/proleap_io)
@@ -189,4 +189,4 @@ Release process
License
-------
-Licensed under the BSD 3-Clause License. See LICENSE for details.
+Licensed under the MIT License. See LICENSE for details.
diff --git a/pom.xml b/pom.xml
index a5e059a..6ec874b 100755
--- a/pom.xml
+++ b/pom.xml
@@ -10,8 +10,8 @@
jar
- The BSD 3-Clause License
- http://opensource.org/licenses/BSD-3-Clause
+ MIT License
+ https://opensource.org/licenses/MIT
repo
@@ -169,4 +169,4 @@
test
-
\ No newline at end of file
+
diff --git a/src/main/antlr4/io/proleap/vb6/VisualBasic6.g4 b/src/main/antlr4/io/proleap/vb6/VisualBasic6.g4
index 3747e62..3930f11 100755
--- a/src/main/antlr4/io/proleap/vb6/VisualBasic6.g4
+++ b/src/main/antlr4/io/proleap/vb6/VisualBasic6.g4
@@ -1,29 +1,21 @@
/*
-* Copyright (C) 2016, Ulrich Wolffgang
+* Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
-* of the BSD 3-clause license. See the LICENSE file for details.
+* of the MIT license. See the LICENSE file for details.
*/
/*
* Visual Basic 6.0 Grammar for ANTLR4
*
-* This is a grammar for Visual Basic 6.0 and the parser at
-* https://github.com/uwol/vb6parser. The grammar is derived from the
-* Visual Basic 6.0 language reference
-* http://msdn.microsoft.com/en-us/library/aa338033%28v=vs.60%29.aspx
-* and tested against MSDN VB6 statements as well as several Visual
+* This is a Visual Basic 6.0 grammar, which is part of the Visual Basic 6.0
+* parser at https://github.com/uwol/vb6parser.
+*
+* The grammar is derived from the Visual Basic 6.0 language reference
+* http://msdn.microsoft.com/en-us/library/aa338033%28v=vs.60%29.aspx
+* and has been tested with MSDN VB6 statements as well as several Visual
* Basic 6.0 code repositories.
-*
-* Characteristics:
-*
-* 1. This grammar is line-based and takes into account whitespace, so that
-* member calls (e.g. "A.B") are distinguished from contextual object calls
-* in WITH statements (e.g. "A .B").
-*
-* 2. Keywords can be used as identifiers depending on the context, enabling
-* e.g. "A.Type", but not "Type.B".
*/
grammar VisualBasic6;
@@ -41,11 +33,11 @@ module
moduleReferences
: moduleReference+
;
-
-moduleReference
+
+moduleReference
: OBJECT WS? EQ WS? moduleReferenceGUID SEMICOLON WS? moduleReferenceComponent NEWLINE*
;
-
+
moduleReferenceGUID
: STRINGLITERAL
;
@@ -102,28 +94,28 @@ moduleBodyElement
// controls ----------------------------------
-controlProperties
+controlProperties
: WS? BEGIN WS cp_ControlType WS cp_ControlIdentifier WS? NEWLINE+ cp_Properties+ END NEWLINE*
;
-cp_Properties
+cp_Properties
: cp_SingleProperty
| cp_NestedProperty
| controlProperties;
-cp_SingleProperty
+cp_SingleProperty
: WS? implicitCallStmt_InStmt WS? EQ WS? '$'? literal FRX_OFFSET? NEWLINE+
;
-cp_PropertyName
+cp_PropertyName
: (OBJECT '.')? complexType
;
-cp_NestedProperty
+cp_NestedProperty
: WS? BEGINPROPERTY WS ambiguousIdentifier (LPAREN INTEGERLITERAL RPAREN)? (WS GUID)? NEWLINE+ (cp_Properties+)? ENDPROPERTY NEWLINE+
;
-cp_ControlType
+cp_ControlType
: complexType
;
@@ -653,7 +645,7 @@ implicitCallStmt_InBlock
// parantheses are forbidden in case of args
// variables cannot be called in blocks
-// certainIdentifier instead of ambiguousIdentifier for preventing ambiguity with statement keywords
+// certainIdentifier instead of ambiguousIdentifier for preventing ambiguity with statement keywords
iCS_B_ProcedureCall
: certainIdentifier (WS argsCall)?
;
@@ -795,13 +787,13 @@ literal
| NULL
;
-publicPrivateVisibility
- : PRIVATE
+publicPrivateVisibility
+ : PRIVATE
| PUBLIC
;
-publicPrivateGlobalVisibility
- : PRIVATE
+publicPrivateGlobalVisibility
+ : PRIVATE
| PUBLIC
| GLOBAL
;
@@ -1522,7 +1514,7 @@ NULL
: N U L L
;
-OBJECT
+OBJECT
: O B J E C T
;
@@ -1931,7 +1923,7 @@ LEQ
: '<='
;
-LBRACE
+LBRACE
: '{'
;
@@ -2217,4 +2209,4 @@ fragment Y
fragment Z
: ('z' | 'Z')
- ;
\ No newline at end of file
+ ;
diff --git a/src/main/java/io/proleap/vb6/asg/inference/TypeAssignmentInference.java b/src/main/java/io/proleap/vb6/asg/inference/TypeAssignmentInference.java
index c9f5cc5..5444323 100755
--- a/src/main/java/io/proleap/vb6/asg/inference/TypeAssignmentInference.java
+++ b/src/main/java/io/proleap/vb6/asg/inference/TypeAssignmentInference.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.inference;
diff --git a/src/main/java/io/proleap/vb6/asg/inference/TypeInference.java b/src/main/java/io/proleap/vb6/asg/inference/TypeInference.java
index ce97c16..8cdab2c 100755
--- a/src/main/java/io/proleap/vb6/asg/inference/TypeInference.java
+++ b/src/main/java/io/proleap/vb6/asg/inference/TypeInference.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.inference;
diff --git a/src/main/java/io/proleap/vb6/asg/inference/impl/TypeAssignmentInferenceImpl.java b/src/main/java/io/proleap/vb6/asg/inference/impl/TypeAssignmentInferenceImpl.java
index 4036e60..1274051 100755
--- a/src/main/java/io/proleap/vb6/asg/inference/impl/TypeAssignmentInferenceImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/inference/impl/TypeAssignmentInferenceImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.inference.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/inference/impl/TypeInferenceImpl.java b/src/main/java/io/proleap/vb6/asg/inference/impl/TypeInferenceImpl.java
index 696bc43..3c42ef5 100755
--- a/src/main/java/io/proleap/vb6/asg/inference/impl/TypeInferenceImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/inference/impl/TypeInferenceImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.inference.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/ASGElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/ASGElement.java
index cd8676c..0de2e59 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/ASGElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/ASGElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Arg.java b/src/main/java/io/proleap/vb6/asg/metamodel/Arg.java
index 47c719e..7c8628a 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Arg.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Arg.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Attribute.java b/src/main/java/io/proleap/vb6/asg/metamodel/Attribute.java
index 10d1380..39a5652 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Attribute.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Attribute.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/ClazzModule.java b/src/main/java/io/proleap/vb6/asg/metamodel/ClazzModule.java
index 2ad68f2..33bb0f3 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/ClazzModule.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/ClazzModule.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Declaration.java b/src/main/java/io/proleap/vb6/asg/metamodel/Declaration.java
index 20f58a6..3fda997 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Declaration.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Declaration.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/DefType.java b/src/main/java/io/proleap/vb6/asg/metamodel/DefType.java
index bcab0bd..b6419ae 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/DefType.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/DefType.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/LineLabel.java b/src/main/java/io/proleap/vb6/asg/metamodel/LineLabel.java
index 1b46a98..770b85e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/LineLabel.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/LineLabel.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Literal.java b/src/main/java/io/proleap/vb6/asg/metamodel/Literal.java
index 54b22df..1b1ad40 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Literal.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Literal.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/ModelElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/ModelElement.java
index 1aaf5b0..14322db 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/ModelElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/ModelElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Module.java b/src/main/java/io/proleap/vb6/asg/metamodel/Module.java
index c3e344b..871d4a6 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Module.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Module.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/ModuleConfigElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/ModuleConfigElement.java
index e8ce692..4e26886 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/ModuleConfigElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/ModuleConfigElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/NamedElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/NamedElement.java
index c480b1d..03650d0 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/NamedElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/NamedElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Operator.java b/src/main/java/io/proleap/vb6/asg/metamodel/Operator.java
index 52042a4..092e770 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Operator.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Operator.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Procedure.java b/src/main/java/io/proleap/vb6/asg/metamodel/Procedure.java
index 1caefb9..6cdc729 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Procedure.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Procedure.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/ProcedureDeclaration.java b/src/main/java/io/proleap/vb6/asg/metamodel/ProcedureDeclaration.java
index 6fcc455..1636b50 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/ProcedureDeclaration.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/ProcedureDeclaration.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Program.java b/src/main/java/io/proleap/vb6/asg/metamodel/Program.java
index d554f7a..6ddc4a1 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Program.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Program.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Scope.java b/src/main/java/io/proleap/vb6/asg/metamodel/Scope.java
index de48e6f..101ef3d 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Scope.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Scope.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/ScopedElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/ScopedElement.java
index 81c4999..9f728e1 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/ScopedElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/ScopedElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/StandardModule.java b/src/main/java/io/proleap/vb6/asg/metamodel/StandardModule.java
index fe9a789..341ff3d 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/StandardModule.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/StandardModule.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Type.java b/src/main/java/io/proleap/vb6/asg/metamodel/Type.java
index 798ce6b..25e6cf9 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Type.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Type.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/TypeElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/TypeElement.java
index 36074f0..0a23aa2 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/TypeElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/TypeElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/Variable.java b/src/main/java/io/proleap/vb6/asg/metamodel/Variable.java
index 71d8a42..0f421c5 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/Variable.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/Variable.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityElement.java
index 07f9f49..36676fd 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityElement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityElement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityEnum.java b/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityEnum.java
index e2d5ba9..35cf704 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityEnum.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/VisibilityEnum.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumeration.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumeration.java
index 138a979..c1d24e1 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumeration.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumeration.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumerationConstant.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumerationConstant.java
index 61a1557..5db490e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumerationConstant.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiEnumerationConstant.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiModule.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiModule.java
index f1d0893..a9c4d76 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiModule.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiModule.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProcedure.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProcedure.java
index c5dd518..7970d8c 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProcedure.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProcedure.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProperty.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProperty.java
index a81972e..24946d6 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProperty.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/ApiProperty.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationConstantImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationConstantImpl.java
index 69ee204..6aed74e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationConstantImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationConstantImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationImpl.java
index 5592ce9..a7b8b92 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiEnumerationImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiModuleImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiModuleImpl.java
index 1028d24..28612a3 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiModuleImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiModuleImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiProcedureImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiProcedureImpl.java
index a5fc367..d82b648 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiProcedureImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiProcedureImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiPropertyImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiPropertyImpl.java
index 05373f8..6159be9 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiPropertyImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/api/impl/ApiPropertyImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationCall.java
index f5c6f7a..00146a4 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationConstantCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationConstantCall.java
index 753ad52..3b91816 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationConstantCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiEnumerationConstantCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiProcedureCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiProcedureCall.java
index 19ec676..d9cc798 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiProcedureCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiProcedureCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiPropertyCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiPropertyCall.java
index a8e68f4..454f49b 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiPropertyCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ApiPropertyCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgCall.java
index 30df7ac..db17670 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgValueAssignmentsContainer.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgValueAssignmentsContainer.java
index 8a59f9a..5394bfd 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgValueAssignmentsContainer.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ArgValueAssignmentsContainer.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ArrayElementCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ArrayElementCall.java
index cc3a6b7..4bac6db 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ArrayElementCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ArrayElementCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/Call.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/Call.java
index 5d769e3..adc09ed 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/Call.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/Call.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ConstantCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ConstantCall.java
index 14be878..4b32fff 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ConstantCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ConstantCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/DictionaryCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/DictionaryCall.java
index 0ce2281..661911a 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/DictionaryCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/DictionaryCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ElementVariableCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ElementVariableCall.java
index 1348429..61bffe2 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ElementVariableCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ElementVariableCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationCall.java
index 98e3ac2..31144ae 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationConstantCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationConstantCall.java
index f2cf5ef..643e285 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationConstantCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/EnumerationConstantCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/FunctionCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/FunctionCall.java
index c863786..1164d35 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/FunctionCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/FunctionCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/MeCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/MeCall.java
index 6375000..65b5170 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/MeCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/MeCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/MembersCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/MembersCall.java
index 2e67f53..7dc4461 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/MembersCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/MembersCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ModuleCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ModuleCall.java
index d13de96..a61713f 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ModuleCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ModuleCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyGetCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyGetCall.java
index e40e0ce..e12c098 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyGetCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyGetCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyLetCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyLetCall.java
index 755d5b0..5354ed9 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyLetCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertyLetCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertySetCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertySetCall.java
index 6740cf5..7da4fc6 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertySetCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/PropertySetCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/ReturnValueCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/ReturnValueCall.java
index 4ecfc57..e9c53e7 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/ReturnValueCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/ReturnValueCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/SubCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/SubCall.java
index 4ad90ed..ddbad52 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/SubCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/SubCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/TypeElementCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/TypeElementCall.java
index 0cb717a..74908fb 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/TypeElementCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/TypeElementCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/VariableCall.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/VariableCall.java
index d3c6454..417ca9d 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/VariableCall.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/VariableCall.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationCallImpl.java
index 64d26db..7409d17 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationConstantCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationConstantCallImpl.java
index b12c25c..afeb682 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationConstantCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiEnumerationConstantCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiProcedureCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiProcedureCallImpl.java
index 5350a21..423208a 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiProcedureCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiProcedureCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiPropertyCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiPropertyCallImpl.java
index b375a34..336735a 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiPropertyCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ApiPropertyCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArgCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArgCallImpl.java
index c1ae71d..6a8a4d0 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArgCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArgCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArrayElementCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArrayElementCallImpl.java
index d1f526b..d3cc78a 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArrayElementCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ArrayElementCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallDelegateImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallDelegateImpl.java
index 8b27df0..c18749b 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallDelegateImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallDelegateImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallImpl.java
index bbcda71..0263cd3 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/CallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ConstantCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ConstantCallImpl.java
index 02f5ec7..aea5a57 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ConstantCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ConstantCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/DictionaryCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/DictionaryCallImpl.java
index b74c010..96cfe06 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/DictionaryCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/DictionaryCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ElementVariableCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ElementVariableCallImpl.java
index 51f5dca..509f5ae 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ElementVariableCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ElementVariableCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationCallImpl.java
index c630522..08087e2 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationConstantCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationConstantCallImpl.java
index eccf9e8..a47d45e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationConstantCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/EnumerationConstantCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/FunctionCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/FunctionCallImpl.java
index 849496f..3a76730 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/FunctionCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/FunctionCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MeCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MeCallImpl.java
index 97fb262..e891d66 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MeCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MeCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MembersCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MembersCallImpl.java
index 59267cf..507c404 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MembersCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/MembersCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ModuleCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ModuleCallImpl.java
index 6baea24..cccc67e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ModuleCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ModuleCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyGetCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyGetCallImpl.java
index 0c90ca6..7832f29 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyGetCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyGetCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyLetCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyLetCallImpl.java
index 2ddd282..ebf7582 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyLetCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertyLetCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertySetCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertySetCallImpl.java
index 11e5c0c..dbec4b4 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertySetCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/PropertySetCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ReturnValueCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ReturnValueCallImpl.java
index aad4d86..f312a5d 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ReturnValueCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/ReturnValueCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/SubCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/SubCallImpl.java
index aafe74c..2843ee2 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/SubCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/SubCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/TypeElementCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/TypeElementCallImpl.java
index e2547be..f42a70c 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/TypeElementCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/TypeElementCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/UndefinedCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/UndefinedCallImpl.java
index 6dd1f28..3247bd6 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/UndefinedCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/UndefinedCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/VariableCallImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/VariableCallImpl.java
index 5cd6e15..e6d743c 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/VariableCallImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/call/impl/VariableCallImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.call.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ASGElementImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ASGElementImpl.java
index b6c136b..f41dd2e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ASGElementImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ASGElementImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ArgImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ArgImpl.java
index f62c2c4..7803fe5 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ArgImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ArgImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/AttributeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/AttributeImpl.java
index 0e34577..cee24e4 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/AttributeImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/AttributeImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ClazzModuleImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ClazzModuleImpl.java
index c821c1d..d8be9f7 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ClazzModuleImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ClazzModuleImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/DefTypeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/DefTypeImpl.java
index 74a7da2..5e17aa1 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/DefTypeImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/DefTypeImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/LineLabelImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/LineLabelImpl.java
index 693044c..2d0cb52 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/LineLabelImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/LineLabelImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/LiteralImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/LiteralImpl.java
index bb24798..f6bfa19 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/LiteralImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/LiteralImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleConfigElementImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleConfigElementImpl.java
index 2305158..f24b830 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleConfigElementImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleConfigElementImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleImpl.java
index 73f732c..d571315 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ModuleImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureDeclarationImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureDeclarationImpl.java
index 6a6b2f6..f56daef 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureDeclarationImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureDeclarationImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureImpl.java
index a82ed39..f9df120 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProcedureImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProgramImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProgramImpl.java
index 7a66771..4ebf56b 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProgramImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ProgramImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopeImpl.java
index 884a841..61b3f5d 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopeImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopeImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopedElementImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopedElementImpl.java
index 251642a..bab09b4 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopedElementImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/ScopedElementImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/StandardModuleImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/StandardModuleImpl.java
index b9a9343..6e53967 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/StandardModuleImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/StandardModuleImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeElementImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeElementImpl.java
index dd12a97..66e9d52 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeElementImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeElementImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeImpl.java
index 2839064..8d21abc 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/TypeImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/impl/VariableImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/impl/VariableImpl.java
index c7b2437..c629e28 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/impl/VariableImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/impl/VariableImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/ASGElementRegistry.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/ASGElementRegistry.java
index 666fff3..48e3f9b 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/ASGElementRegistry.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/ASGElementRegistry.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/EnumerationRegistry.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/EnumerationRegistry.java
index c057f4a..4f4acab 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/EnumerationRegistry.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/EnumerationRegistry.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/TypeRegistry.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/TypeRegistry.java
index 06b1b70..260c0f0 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/TypeRegistry.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/TypeRegistry.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiEnumerationRegistry.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiEnumerationRegistry.java
index d14e831..6194461 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiEnumerationRegistry.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiEnumerationRegistry.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiProcedureRegistry.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiProcedureRegistry.java
index 5548422..dcea67f 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiProcedureRegistry.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiProcedureRegistry.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiPropertyRegistry.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiPropertyRegistry.java
index 19dcd37..807b29d 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiPropertyRegistry.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/ApiPropertyRegistry.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.api;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiEnumerationRegistryImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiEnumerationRegistryImpl.java
index 106ad01..6aa42ec 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiEnumerationRegistryImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiEnumerationRegistryImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiProcedureRegistryImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiProcedureRegistryImpl.java
index 8558d97..21f956f 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiProcedureRegistryImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiProcedureRegistryImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiPropertyRegistryImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiPropertyRegistryImpl.java
index 0234451..5acba4e 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiPropertyRegistryImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/api/impl/ApiPropertyRegistryImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.api.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/ASGElementRegistryImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/ASGElementRegistryImpl.java
index a606966..de94bc7 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/ASGElementRegistryImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/ASGElementRegistryImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/EnumerationRegistryImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/EnumerationRegistryImpl.java
index 941f5b7..089c8dd 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/EnumerationRegistryImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/EnumerationRegistryImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/TypeRegistryImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/TypeRegistryImpl.java
index 86f6218..7921653 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/TypeRegistryImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/registry/impl/TypeRegistryImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.registry.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/Statement.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/Statement.java
index 0630f77..a46f9fa 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/Statement.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/Statement.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementType.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementType.java
index 99f24ad..6fa7493 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementType.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementType.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementTypeEnum.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementTypeEnum.java
index 5ea6d1e..05d4817 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementTypeEnum.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/StatementTypeEnum.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2016, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/AppActivate.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/AppActivate.java
index e662054..01803be 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/AppActivate.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/AppActivate.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement.appactivate;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/impl/AppActivateImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/impl/AppActivateImpl.java
index 8cd4106..bbe9590 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/impl/AppActivateImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/appactivate/impl/AppActivateImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement.appactivate.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/Beep.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/Beep.java
index b1f7d4c..9d5f2e1 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/Beep.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/Beep.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement.beep;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/impl/BeepImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/impl/BeepImpl.java
index 8ebba28..126f32c 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/impl/BeepImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/beep/impl/BeepImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement.beep.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/CallStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/CallStmt.java
index 34f0494..c836ce5 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/CallStmt.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/CallStmt.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement.callstmt;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/impl/CallStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/impl/CallStmtImpl.java
index bece69e..69c37ed 100644
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/impl/CallStmtImpl.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/callstmt/impl/CallStmtImpl.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang
+ * Copyright (C) 2017, Ulrich Wolffgang
* All rights reserved.
*
* This software may be modified and distributed under the terms
- * of the BSD 3-clause license. See the LICENSE file for details.
+ * of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel.statement.callstmt.impl;
diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/ChDir.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/ChDir.java
index f617ac7..3c1f459 100755
--- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/ChDir.java
+++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/ChDir.java
@@ -1,9 +1,9 @@
/*
- * Copyright (C) 2017, Ulrich Wolffgang