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 [![Build](https://img.shields.io/travis/uwol/vb6parser.svg)](https://travis-ci.org/uwol/vb6parser) [![Coverage](https://coveralls.io/repos/github/uwol/vb6parser/badge.svg?branch=master)](https://coveralls.io/github/uwol/vb6parser?branch=master) -[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![ProLeap on Twitter](https://img.shields.io/twitter/follow/proleap_io.svg?style=social&label=Follow)](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 + * 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.chdir; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/impl/ChDirImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/impl/ChDirImpl.java index cc94fed..5b19f7a 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/impl/ChDirImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdir/impl/ChDirImpl.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.chdir.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/ChDrive.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/ChDrive.java index 6405db4..4df71c6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/ChDrive.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/ChDrive.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.chdrive; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/impl/ChDriveImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/impl/ChDriveImpl.java index 0149a8d..dd487a4 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/impl/ChDriveImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/chdrive/impl/ChDriveImpl.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.chdrive.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/Close.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/Close.java index e42270f..570bbd8 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/Close.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/Close.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.close; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/impl/CloseImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/impl/CloseImpl.java index 3f8c6af..7d8fe80 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/impl/CloseImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/close/impl/CloseImpl.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.close.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/Constant.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/Constant.java index a701ba5..dabbee1 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/Constant.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/Constant.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.constant; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/impl/ConstantImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/impl/ConstantImpl.java index 07d5ede..c21d84e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/impl/ConstantImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/constant/impl/ConstantImpl.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.constant.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/Date.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/Date.java index 77cd7bc..4172dad 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/Date.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/Date.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.date; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/impl/DateImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/impl/DateImpl.java index a1a2cc9..c6e952e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/impl/DateImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/date/impl/DateImpl.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.date.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/Deftype.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/Deftype.java index a5002c4..ad628df 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/Deftype.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/Deftype.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.deftype; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/impl/DeftypeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/impl/DeftypeImpl.java index 9f2772a..0a7df32 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/impl/DeftypeImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deftype/impl/DeftypeImpl.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.deftype.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/DeleteSetting.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/DeleteSetting.java index 085d8f2..6c8451c 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/DeleteSetting.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/DeleteSetting.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.deletesetting; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/impl/DeleteSettingImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/impl/DeleteSettingImpl.java index cbf91cf..08f321c 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/impl/DeleteSettingImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/deletesetting/impl/DeleteSettingImpl.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.deletesetting.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/DoLoop.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/DoLoop.java index a272552..60d3c57 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/DoLoop.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/DoLoop.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.doloop; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/impl/DoLoopImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/impl/DoLoopImpl.java index 9ab7176..6547563 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/impl/DoLoopImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/doloop/impl/DoLoopImpl.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.doloop.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/Enumeration.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/Enumeration.java index 3bfc28a..855beb0 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/Enumeration.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/Enumeration.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.enumeration; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/EnumerationConstant.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/EnumerationConstant.java index d817ca8..b6ce860 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/EnumerationConstant.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/EnumerationConstant.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.enumeration; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationConstantImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationConstantImpl.java index def832b..14700b6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationConstantImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationConstantImpl.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.enumeration.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationImpl.java index 183a01e..cd93c49 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/enumeration/impl/EnumerationImpl.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.enumeration.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/Event.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/Event.java index ca5eddb..cd51727 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/Event.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/Event.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.event; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/impl/EventImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/impl/EventImpl.java index 59d479e..d1ae538 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/impl/EventImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/event/impl/EventImpl.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.event.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/Exit.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/Exit.java index 94ac87c..43dac5e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/Exit.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/Exit.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.exit; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/impl/ExitImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/impl/ExitImpl.java index 1dcdcda..a7e03c2 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/impl/ExitImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/exit/impl/ExitImpl.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.exit.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/ExplicitCallStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/ExplicitCallStmt.java index 11358a2..9ab87f8 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/ExplicitCallStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/ExplicitCallStmt.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.explicitcallstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/impl/ExplicitCallStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/impl/ExplicitCallStmtImpl.java index 8f3961d..53fbb98 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/impl/ExplicitCallStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/explicitcallstmt/impl/ExplicitCallStmtImpl.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.explicitcallstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ElementVariable.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ElementVariable.java index 6e9683e..0d6d2a9 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ElementVariable.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ElementVariable.java @@ -3,7 +3,7 @@ * 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.foreach; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ForEach.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ForEach.java index 64874e1..3b44c0d 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ForEach.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/ForEach.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.foreach; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ElementVariableImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ElementVariableImpl.java index 18f4253..2da96fb 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ElementVariableImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ElementVariableImpl.java @@ -3,7 +3,7 @@ * 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.foreach.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ForEachImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ForEachImpl.java index fea15f6..abda81d 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ForEachImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/foreach/impl/ForEachImpl.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.foreach.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/ForNext.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/ForNext.java index 7caa168..bb55e18 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/ForNext.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/ForNext.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.fornext; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/impl/ForNextImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/impl/ForNextImpl.java index de060b6..90a409a 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/impl/ForNextImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/fornext/impl/ForNextImpl.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.fornext.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/Function.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/Function.java index a440ac9..4c1ad58 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/Function.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/Function.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.function; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/impl/FunctionImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/impl/FunctionImpl.java index fe1e30b..d31bdda 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/impl/FunctionImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/function/impl/FunctionImpl.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.function.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/BlockIfThenElse.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/BlockIfThenElse.java index 881804a..7f0a1b7 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/BlockIfThenElse.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/BlockIfThenElse.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.ifstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseBlock.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseBlock.java index e9cc818..a76f43b 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseBlock.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseBlock.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.ifstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseIfBlock.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseIfBlock.java index bb8763e..47b182c 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseIfBlock.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/ElseIfBlock.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.ifstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfBlock.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfBlock.java index 6f792c9..98ac96b 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfBlock.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfBlock.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.ifstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfCondition.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfCondition.java index 6ee1f99..8f3f1b1 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfCondition.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/IfCondition.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.ifstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/InlineIfThenElse.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/InlineIfThenElse.java index 93a4c27..5aa492e 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/InlineIfThenElse.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/InlineIfThenElse.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.ifstmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/BlockIfThenElseImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/BlockIfThenElseImpl.java index 006cb7f..b2a4aa6 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/BlockIfThenElseImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/BlockIfThenElseImpl.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.ifstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseBlockImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseBlockImpl.java index fef3ebb..ebdec9a 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseBlockImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseBlockImpl.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.ifstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseIfBlockImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseIfBlockImpl.java index d48c992..92416e8 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseIfBlockImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/ElseIfBlockImpl.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.ifstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfBlockImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfBlockImpl.java index 242c395..9eaf942 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfBlockImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfBlockImpl.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.ifstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfConditionImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfConditionImpl.java index d3b6067..6680d6f 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfConditionImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/IfConditionImpl.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.ifstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/InlineIfThenElseImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/InlineIfThenElseImpl.java index 1042643..5ebcbc0 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/InlineIfThenElseImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/ifstmt/impl/InlineIfThenElseImpl.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.ifstmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/Let.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/Let.java index 6ad5524..0466103 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/Let.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/Let.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.let; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/impl/LetImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/impl/LetImpl.java index ddf2a88..c7e8ee2 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/impl/LetImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/let/impl/LetImpl.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.let.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/OnError.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/OnError.java index 484ed4d..fcc6562 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/OnError.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/OnError.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.onerror; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/impl/OnErrorImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/impl/OnErrorImpl.java index e3c9e51..ff95336 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/impl/OnErrorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/onerror/impl/OnErrorImpl.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.onerror.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/Open.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/Open.java index de571e3..3b2dfdd 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/Open.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/Open.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.open; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/impl/OpenImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/impl/OpenImpl.java index 3eb3821..6455728 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/impl/OpenImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/open/impl/OpenImpl.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.open.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/Print.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/Print.java index 337d345..d8c1974 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/Print.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/Print.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.print; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/impl/PrintImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/impl/PrintImpl.java index 66035fa..e7b60eb 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/impl/PrintImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/print/impl/PrintImpl.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.print.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/PropertyGet.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/PropertyGet.java index 7e9e168..e9f9e2a 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/PropertyGet.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/PropertyGet.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.property.get; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/impl/PropertyGetImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/impl/PropertyGetImpl.java index 18798e2..6bfc89b 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/impl/PropertyGetImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/get/impl/PropertyGetImpl.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.property.get.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/PropertyLet.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/PropertyLet.java index 73ed79c..311100e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/PropertyLet.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/PropertyLet.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.property.let; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/impl/PropertyLetImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/impl/PropertyLetImpl.java index 891780d..4a89d36 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/impl/PropertyLetImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/let/impl/PropertyLetImpl.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.property.let.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/PropertySet.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/PropertySet.java index 0436ce3..b7e7cfa 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/PropertySet.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/PropertySet.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.property.set; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/impl/PropertySetImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/impl/PropertySetImpl.java index ef7b6bc..394a32d 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/impl/PropertySetImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/property/set/impl/PropertySetImpl.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.property.set.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/ReDim.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/ReDim.java index 4fa802b..1c7026d 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/ReDim.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/ReDim.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.redim; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/impl/ReDimImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/impl/ReDimImpl.java index cada242..ca66940 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/impl/ReDimImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/redim/impl/ReDimImpl.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.redim.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/Resume.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/Resume.java index 5c2b852..5dcb3eb 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/Resume.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/Resume.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.resume; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/impl/ResumeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/impl/ResumeImpl.java index 563ed3a..080bd55 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/impl/ResumeImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/resume/impl/ResumeImpl.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.resume.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/SaveSetting.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/SaveSetting.java index f99558f..454900b 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/SaveSetting.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/SaveSetting.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.savesetting; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/impl/SaveSettingImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/impl/SaveSettingImpl.java index 9c644fb..f4bb306 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/impl/SaveSettingImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/savesetting/impl/SaveSettingImpl.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.savesetting.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/Select.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/Select.java index 9be3f9f..effb12c 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/Select.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/Select.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.select; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCase.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCase.java index 57be53b..eadd0b6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCase.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCase.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.select; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCond.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCond.java index cc97d95..8dac07b 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCond.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCond.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.select; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCondExpression.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCondExpression.java index 7a08cda..784f90a 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCondExpression.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/SelectCaseCondExpression.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.select; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondExpressionImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondExpressionImpl.java index 426d548..73c7265 100644 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondExpressionImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondExpressionImpl.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.select.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondImpl.java index f38e032..d743812 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseCondImpl.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.select.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseImpl.java index c3a4eca..6b249b4 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectCaseImpl.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.select.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectImpl.java index f52c9e8..d467527 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/select/impl/SelectImpl.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.select.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/Set.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/Set.java index c7402b5..2cf76e3 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/Set.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/Set.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.set; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/impl/SetImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/impl/SetImpl.java index 4bc7a75..1e7a05f 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/impl/SetImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/set/impl/SetImpl.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.set.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/Sub.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/Sub.java index 40bf344..e9f1aa0 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/Sub.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/Sub.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.sub; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/impl/SubImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/impl/SubImpl.java index edafb3b..afa174d 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/impl/SubImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/sub/impl/SubImpl.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.sub.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/While.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/While.java index 7976efc..88ec6d6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/While.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/While.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.whilestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/impl/WhileImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/impl/WhileImpl.java index 8c278bf..2fcb13e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/impl/WhileImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/whilestmt/impl/WhileImpl.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.whilestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/With.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/With.java index 9d6c5f4..314796c 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/With.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/With.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.with; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/impl/WithImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/impl/WithImpl.java index dc7eab8..8193fc6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/impl/WithImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/with/impl/WithImpl.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.with.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/Write.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/Write.java index b311b4c..e595cbb 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/Write.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/Write.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.write; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/impl/WriteImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/impl/WriteImpl.java index f79f44b..b4ea4fb 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/impl/WriteImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/statement/write/impl/WriteImpl.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.write.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/AssignableTypedElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/AssignableTypedElement.java index 38e3fc5..9be4e5b 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/AssignableTypedElement.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/AssignableTypedElement.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.type; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/BaseType.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/BaseType.java index 7f1c870..2ab41e5 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/BaseType.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/BaseType.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.type; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/ComplexType.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/ComplexType.java index 39f32fe..143060b 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/ComplexType.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/ComplexType.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.type; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/Type.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/Type.java index c2a4ed9..d160c61 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/Type.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/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.type; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/TypedElement.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/TypedElement.java index 0829525..1d60e9d 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/TypedElement.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/TypedElement.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.type; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/VbBaseType.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/VbBaseType.java index ce69c7b..6dd845e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/VbBaseType.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/VbBaseType.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.type; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/BaseTypeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/BaseTypeImpl.java index 0fc697b..7ab35b4 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/BaseTypeImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/BaseTypeImpl.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.type.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/ComplexTypeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/ComplexTypeImpl.java index 70f302a..e6b8d42 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/ComplexTypeImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/ComplexTypeImpl.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.type.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/TypeImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/TypeImpl.java index ddee557..917380e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/type/impl/TypeImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/type/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.type.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ArgValueAssignment.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ArgValueAssignment.java index d1258e0..52cbe2b 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ArgValueAssignment.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ArgValueAssignment.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/CallValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/CallValueStmt.java index 204a7f4..c7accae 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/CallValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/CallValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/EqValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/EqValueStmt.java index fe54c8c..a736569 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/EqValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/EqValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/IsValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/IsValueStmt.java index 3ac75ef..68fc3f0 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/IsValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/IsValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/LiteralValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/LiteralValueStmt.java index 10b0e35..772199c 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/LiteralValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/LiteralValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NewValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NewValueStmt.java index 59c95ab..81094d3 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NewValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NewValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NotValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NotValueStmt.java index aafb056..8333bc2 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NotValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/NotValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueAssignment.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueAssignment.java index 9fb18c3..34fc862 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueAssignment.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueAssignment.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueStmt.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueStmt.java index 1d7f40f..a74f384 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueStmt.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/ValueStmt.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.valuestmt; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArgValueAssignmentImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArgValueAssignmentImpl.java index 6163311..3009a2e 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArgValueAssignmentImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArgValueAssignmentImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArithmeticValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArithmeticValueStmtImpl.java index 8e5e16e..773fdb7 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArithmeticValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ArithmeticValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/BooleanValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/BooleanValueStmtImpl.java index e60dc6d..8729676 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/BooleanValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/BooleanValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/CallValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/CallValueStmtImpl.java index 53f96ef..6ba4551 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/CallValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/CallValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/EqValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/EqValueStmtImpl.java index f8a0b2d..790c482 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/EqValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/EqValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/IsValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/IsValueStmtImpl.java index 54e2996..ac03589 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/IsValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/IsValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/LiteralValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/LiteralValueStmtImpl.java index 7be90ca..875a38a 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/LiteralValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/LiteralValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NewValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NewValueStmtImpl.java index 3f2336b..9cc8ed6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NewValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NewValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NotValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NotValueStmtImpl.java index e66f326..4679ce6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NotValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/NotValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StringValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StringValueStmtImpl.java index 60a9137..144692f 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StringValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StringValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StructValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StructValueStmtImpl.java index cf34dd6..5e2b5d6 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StructValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/StructValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueAssignmentImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueAssignmentImpl.java index f0685f7..4771695 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueAssignmentImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueAssignmentImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueStmtImpl.java b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueStmtImpl.java index 4d80d7b..d0c9bbb 100755 --- a/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueStmtImpl.java +++ b/src/main/java/io/proleap/vb6/asg/metamodel/valuestmt/impl/ValueStmtImpl.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.valuestmt.impl; diff --git a/src/main/java/io/proleap/vb6/asg/params/VbParserParams.java b/src/main/java/io/proleap/vb6/asg/params/VbParserParams.java index ebe2000..7b7ceb2 100644 --- a/src/main/java/io/proleap/vb6/asg/params/VbParserParams.java +++ b/src/main/java/io/proleap/vb6/asg/params/VbParserParams.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.params; diff --git a/src/main/java/io/proleap/vb6/asg/params/impl/VbParserParamsImpl.java b/src/main/java/io/proleap/vb6/asg/params/impl/VbParserParamsImpl.java index cae1f4e..922f655 100644 --- a/src/main/java/io/proleap/vb6/asg/params/impl/VbParserParamsImpl.java +++ b/src/main/java/io/proleap/vb6/asg/params/impl/VbParserParamsImpl.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.params.impl; diff --git a/src/main/java/io/proleap/vb6/asg/resolver/NameResolver.java b/src/main/java/io/proleap/vb6/asg/resolver/NameResolver.java index ca9dc35..5d3f729 100755 --- a/src/main/java/io/proleap/vb6/asg/resolver/NameResolver.java +++ b/src/main/java/io/proleap/vb6/asg/resolver/NameResolver.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.resolver; diff --git a/src/main/java/io/proleap/vb6/asg/resolver/TypeNameSanitizer.java b/src/main/java/io/proleap/vb6/asg/resolver/TypeNameSanitizer.java index 3b718c4..64f625a 100755 --- a/src/main/java/io/proleap/vb6/asg/resolver/TypeNameSanitizer.java +++ b/src/main/java/io/proleap/vb6/asg/resolver/TypeNameSanitizer.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.resolver; diff --git a/src/main/java/io/proleap/vb6/asg/resolver/TypeResolver.java b/src/main/java/io/proleap/vb6/asg/resolver/TypeResolver.java index 9d570ad..f5fcceb 100755 --- a/src/main/java/io/proleap/vb6/asg/resolver/TypeResolver.java +++ b/src/main/java/io/proleap/vb6/asg/resolver/TypeResolver.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.resolver; diff --git a/src/main/java/io/proleap/vb6/asg/resolver/impl/NameResolverImpl.java b/src/main/java/io/proleap/vb6/asg/resolver/impl/NameResolverImpl.java index 5423472..32ccb91 100755 --- a/src/main/java/io/proleap/vb6/asg/resolver/impl/NameResolverImpl.java +++ b/src/main/java/io/proleap/vb6/asg/resolver/impl/NameResolverImpl.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.resolver.impl; diff --git a/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeNameSanitizerImpl.java b/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeNameSanitizerImpl.java index eccacce..d983b94 100755 --- a/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeNameSanitizerImpl.java +++ b/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeNameSanitizerImpl.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.resolver.impl; diff --git a/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeResolverImpl.java b/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeResolverImpl.java index fe01d93..e2b9759 100755 --- a/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeResolverImpl.java +++ b/src/main/java/io/proleap/vb6/asg/resolver/impl/TypeResolverImpl.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.resolver.impl; diff --git a/src/main/java/io/proleap/vb6/asg/runner/ThrowingErrorListener.java b/src/main/java/io/proleap/vb6/asg/runner/ThrowingErrorListener.java index 2c4a9ea..a97a1f6 100644 --- a/src/main/java/io/proleap/vb6/asg/runner/ThrowingErrorListener.java +++ b/src/main/java/io/proleap/vb6/asg/runner/ThrowingErrorListener.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.runner; diff --git a/src/main/java/io/proleap/vb6/asg/runner/VbParserRunner.java b/src/main/java/io/proleap/vb6/asg/runner/VbParserRunner.java index 92a3c7b..ae8353d 100755 --- a/src/main/java/io/proleap/vb6/asg/runner/VbParserRunner.java +++ b/src/main/java/io/proleap/vb6/asg/runner/VbParserRunner.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.runner; diff --git a/src/main/java/io/proleap/vb6/asg/runner/impl/VbParserRunnerImpl.java b/src/main/java/io/proleap/vb6/asg/runner/impl/VbParserRunnerImpl.java index 5452ea0..2199a3c 100755 --- a/src/main/java/io/proleap/vb6/asg/runner/impl/VbParserRunnerImpl.java +++ b/src/main/java/io/proleap/vb6/asg/runner/impl/VbParserRunnerImpl.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.runner.impl; diff --git a/src/main/java/io/proleap/vb6/asg/util/ANTLRUtils.java b/src/main/java/io/proleap/vb6/asg/util/ANTLRUtils.java index d8182ad..4c9832c 100755 --- a/src/main/java/io/proleap/vb6/asg/util/ANTLRUtils.java +++ b/src/main/java/io/proleap/vb6/asg/util/ANTLRUtils.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.util; diff --git a/src/main/java/io/proleap/vb6/asg/util/CastUtils.java b/src/main/java/io/proleap/vb6/asg/util/CastUtils.java index 187527b..e98a4af 100755 --- a/src/main/java/io/proleap/vb6/asg/util/CastUtils.java +++ b/src/main/java/io/proleap/vb6/asg/util/CastUtils.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.util; diff --git a/src/main/java/io/proleap/vb6/asg/util/StringUtils.java b/src/main/java/io/proleap/vb6/asg/util/StringUtils.java index 66569f0..f1986dc 100755 --- a/src/main/java/io/proleap/vb6/asg/util/StringUtils.java +++ b/src/main/java/io/proleap/vb6/asg/util/StringUtils.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.util; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/ParserVisitor.java b/src/main/java/io/proleap/vb6/asg/visitor/ParserVisitor.java index 2a21ed5..4af5476 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/ParserVisitor.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/ParserVisitor.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.visitor; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/AbstractVbParserVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/AbstractVbParserVisitorImpl.java index 8d93f14..63e05cd 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/AbstractVbParserVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/AbstractVbParserVisitorImpl.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.visitor.impl; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbDeclarationVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbDeclarationVisitorImpl.java index 2311635..74451a3 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbDeclarationVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbDeclarationVisitorImpl.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.visitor.impl; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbExpressionVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbExpressionVisitorImpl.java index 92c3871..d9fece4 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbExpressionVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbExpressionVisitorImpl.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.visitor.impl; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleNameAnalyzerVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleNameAnalyzerVisitorImpl.java index 662cfde..a6d41a7 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleNameAnalyzerVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleNameAnalyzerVisitorImpl.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.visitor.impl; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleVisitorImpl.java index 9e5bfa7..2d1a2de 100644 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbModuleVisitorImpl.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.visitor.impl; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeAssignmentVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeAssignmentVisitorImpl.java index 24bf599..922ea28 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeAssignmentVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeAssignmentVisitorImpl.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.visitor.impl; diff --git a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeVisitorImpl.java b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeVisitorImpl.java index 3cf94b8..8541174 100755 --- a/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeVisitorImpl.java +++ b/src/main/java/io/proleap/vb6/asg/visitor/impl/VbTypeVisitorImpl.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.visitor.impl; diff --git a/src/test/java/io/proleap/vb6/TestGenerator.java b/src/test/java/io/proleap/vb6/TestGenerator.java index 2681f29..06ec201 100755 --- a/src/test/java/io/proleap/vb6/TestGenerator.java +++ b/src/test/java/io/proleap/vb6/TestGenerator.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; diff --git a/src/test/java/io/proleap/vb6/runner/VbParseTestRunner.java b/src/test/java/io/proleap/vb6/runner/VbParseTestRunner.java index 5c1b01d..4b5ffad 100644 --- a/src/test/java/io/proleap/vb6/runner/VbParseTestRunner.java +++ b/src/test/java/io/proleap/vb6/runner/VbParseTestRunner.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.runner; diff --git a/src/test/java/io/proleap/vb6/runner/impl/VbParseTestRunnerImpl.java b/src/test/java/io/proleap/vb6/runner/impl/VbParseTestRunnerImpl.java index a3abc47..a6bee28 100644 --- a/src/test/java/io/proleap/vb6/runner/impl/VbParseTestRunnerImpl.java +++ b/src/test/java/io/proleap/vb6/runner/impl/VbParseTestRunnerImpl.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.runner.impl;