switched MIT license

This commit is contained in:
uwol
2017-12-11 11:22:43 +01:00
parent 12b5a830bd
commit c9efbdb455
270 changed files with 577 additions and 591 deletions

40
LICENSE
View File

@@ -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.
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.

View File

@@ -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.

View File

@@ -10,8 +10,8 @@
<packaging>jar</packaging>
<licenses>
<license>
<name>The BSD 3-Clause License</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
@@ -169,4 +169,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>

View File

@@ -1,29 +1,21 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under 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')
;
;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-clause license. See the LICENSE file for details.
* of the MIT license. See the LICENSE file for details.
*/
package io.proleap.vb6.asg.metamodel;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2017, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

View File

@@ -1,9 +1,9 @@
/*
* Copyright (C) 2016, Ulrich Wolffgang <u.wol@wwu.de>
* Copyright (C) 2017, Ulrich Wolffgang <ulrich.wolffgang@proleap.io>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD 3-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;

Some files were not shown because too many files have changed in this diff Show More