mirror of
https://github.com/uwol/proleap-vb6-parser.git
synced 2025-12-18 04:24:36 +03:00
switched MIT license
This commit is contained in:
40
LICENSE
40
LICENSE
@@ -1,27 +1,21 @@
|
|||||||
Copyright (c) 2016, Ulrich Wolffgang
|
MIT License
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Copyright (c) 2017 Ulrich Wolffgang
|
||||||
modification, are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
list of conditions and the following disclaimer.
|
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,
|
The above copyright notice and this permission notice shall be included in all
|
||||||
this list of conditions and the following disclaimer in the documentation
|
copies or substantial portions of the Software.
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
* Neither the name of the copyright holder nor the names of its contributors
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
may be used to endorse or promote products derived from this software without
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
specific prior written permission.
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
SOFTWARE.
|
||||||
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.
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ The parser is developed test-driven and has successfully been **applied to large
|
|||||||
|
|
||||||
[](https://travis-ci.org/uwol/vb6parser)
|
[](https://travis-ci.org/uwol/vb6parser)
|
||||||
[](https://coveralls.io/github/uwol/vb6parser?branch=master)
|
[](https://coveralls.io/github/uwol/vb6parser?branch=master)
|
||||||
[](https://opensource.org/licenses/BSD-3-Clause)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](https://twitter.com/proleap_io)
|
[](https://twitter.com/proleap_io)
|
||||||
|
|
||||||
|
|
||||||
@@ -189,4 +189,4 @@ Release process
|
|||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Licensed under the BSD 3-Clause License. See LICENSE for details.
|
Licensed under the MIT License. See LICENSE for details.
|
||||||
|
|||||||
6
pom.xml
6
pom.xml
@@ -10,8 +10,8 @@
|
|||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>The BSD 3-Clause License</name>
|
<name>MIT License</name>
|
||||||
<url>http://opensource.org/licenses/BSD-3-Clause</url>
|
<url>https://opensource.org/licenses/MIT</url>
|
||||||
<distribution>repo</distribution>
|
<distribution>repo</distribution>
|
||||||
</license>
|
</license>
|
||||||
</licenses>
|
</licenses>
|
||||||
@@ -169,4 +169,4 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under 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
|
* Visual Basic 6.0 Grammar for ANTLR4
|
||||||
*
|
*
|
||||||
* This is a grammar for Visual Basic 6.0 and the parser at
|
* This is a Visual Basic 6.0 grammar, which is part of the Visual Basic 6.0
|
||||||
* https://github.com/uwol/vb6parser. The grammar is derived from the
|
* parser at https://github.com/uwol/vb6parser.
|
||||||
* Visual Basic 6.0 language reference
|
*
|
||||||
* http://msdn.microsoft.com/en-us/library/aa338033%28v=vs.60%29.aspx
|
* The grammar is derived from the Visual Basic 6.0 language reference
|
||||||
* and tested against MSDN VB6 statements as well as several Visual
|
* 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.
|
* 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;
|
grammar VisualBasic6;
|
||||||
@@ -41,11 +33,11 @@ module
|
|||||||
moduleReferences
|
moduleReferences
|
||||||
: moduleReference+
|
: moduleReference+
|
||||||
;
|
;
|
||||||
|
|
||||||
moduleReference
|
moduleReference
|
||||||
: OBJECT WS? EQ WS? moduleReferenceGUID SEMICOLON WS? moduleReferenceComponent NEWLINE*
|
: OBJECT WS? EQ WS? moduleReferenceGUID SEMICOLON WS? moduleReferenceComponent NEWLINE*
|
||||||
;
|
;
|
||||||
|
|
||||||
moduleReferenceGUID
|
moduleReferenceGUID
|
||||||
: STRINGLITERAL
|
: STRINGLITERAL
|
||||||
;
|
;
|
||||||
@@ -102,28 +94,28 @@ moduleBodyElement
|
|||||||
|
|
||||||
// controls ----------------------------------
|
// controls ----------------------------------
|
||||||
|
|
||||||
controlProperties
|
controlProperties
|
||||||
: WS? BEGIN WS cp_ControlType WS cp_ControlIdentifier WS? NEWLINE+ cp_Properties+ END NEWLINE*
|
: WS? BEGIN WS cp_ControlType WS cp_ControlIdentifier WS? NEWLINE+ cp_Properties+ END NEWLINE*
|
||||||
;
|
;
|
||||||
|
|
||||||
cp_Properties
|
cp_Properties
|
||||||
: cp_SingleProperty
|
: cp_SingleProperty
|
||||||
| cp_NestedProperty
|
| cp_NestedProperty
|
||||||
| controlProperties;
|
| controlProperties;
|
||||||
|
|
||||||
cp_SingleProperty
|
cp_SingleProperty
|
||||||
: WS? implicitCallStmt_InStmt WS? EQ WS? '$'? literal FRX_OFFSET? NEWLINE+
|
: WS? implicitCallStmt_InStmt WS? EQ WS? '$'? literal FRX_OFFSET? NEWLINE+
|
||||||
;
|
;
|
||||||
|
|
||||||
cp_PropertyName
|
cp_PropertyName
|
||||||
: (OBJECT '.')? complexType
|
: (OBJECT '.')? complexType
|
||||||
;
|
;
|
||||||
|
|
||||||
cp_NestedProperty
|
cp_NestedProperty
|
||||||
: WS? BEGINPROPERTY WS ambiguousIdentifier (LPAREN INTEGERLITERAL RPAREN)? (WS GUID)? NEWLINE+ (cp_Properties+)? ENDPROPERTY NEWLINE+
|
: WS? BEGINPROPERTY WS ambiguousIdentifier (LPAREN INTEGERLITERAL RPAREN)? (WS GUID)? NEWLINE+ (cp_Properties+)? ENDPROPERTY NEWLINE+
|
||||||
;
|
;
|
||||||
|
|
||||||
cp_ControlType
|
cp_ControlType
|
||||||
: complexType
|
: complexType
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -653,7 +645,7 @@ implicitCallStmt_InBlock
|
|||||||
|
|
||||||
// parantheses are forbidden in case of args
|
// parantheses are forbidden in case of args
|
||||||
// variables cannot be called in blocks
|
// 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
|
iCS_B_ProcedureCall
|
||||||
: certainIdentifier (WS argsCall)?
|
: certainIdentifier (WS argsCall)?
|
||||||
;
|
;
|
||||||
@@ -795,13 +787,13 @@ literal
|
|||||||
| NULL
|
| NULL
|
||||||
;
|
;
|
||||||
|
|
||||||
publicPrivateVisibility
|
publicPrivateVisibility
|
||||||
: PRIVATE
|
: PRIVATE
|
||||||
| PUBLIC
|
| PUBLIC
|
||||||
;
|
;
|
||||||
|
|
||||||
publicPrivateGlobalVisibility
|
publicPrivateGlobalVisibility
|
||||||
: PRIVATE
|
: PRIVATE
|
||||||
| PUBLIC
|
| PUBLIC
|
||||||
| GLOBAL
|
| GLOBAL
|
||||||
;
|
;
|
||||||
@@ -1522,7 +1514,7 @@ NULL
|
|||||||
: N U L L
|
: N U L L
|
||||||
;
|
;
|
||||||
|
|
||||||
OBJECT
|
OBJECT
|
||||||
: O B J E C T
|
: O B J E C T
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1931,7 +1923,7 @@ LEQ
|
|||||||
: '<='
|
: '<='
|
||||||
;
|
;
|
||||||
|
|
||||||
LBRACE
|
LBRACE
|
||||||
: '{'
|
: '{'
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -2217,4 +2209,4 @@ fragment Y
|
|||||||
|
|
||||||
fragment Z
|
fragment Z
|
||||||
: ('z' | 'Z')
|
: ('z' | 'Z')
|
||||||
;
|
;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 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;
|
package io.proleap.vb6.asg.inference;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 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;
|
package io.proleap.vb6.asg.inference;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 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;
|
package io.proleap.vb6.asg.inference.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 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;
|
package io.proleap.vb6.asg.inference.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-clause license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package io.proleap.vb6.asg.metamodel;
|
package io.proleap.vb6.asg.metamodel;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.api.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.call.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
@@ -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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This software may be modified and distributed under the terms
|
* This software may be modified and distributed under the terms
|
||||||
* of the BSD 3-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;
|
package io.proleap.vb6.asg.metamodel.impl;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user