-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
88 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
libs/extensions/tabular/exec/test/test-extension/TestBlockTypes.jv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// SPDX-FileCopyrightText: 2023 Friedrich-Alexander-Universitat Erlangen-Nurnberg | ||
// | ||
// SPDX-License-Identifier: AGPL-3.0-only | ||
|
||
builtin blocktype TestSheetExtractor { | ||
input inPort oftype None; | ||
output outPort oftype Sheet; | ||
} | ||
|
||
builtin blocktype TestSheetLoader { | ||
input inPort oftype Sheet; | ||
output outPort oftype None; | ||
} | ||
|
||
builtin blocktype TestTextFileExtractor { | ||
input inPort oftype None; | ||
output outPort oftype TextFile; | ||
} | ||
|
||
builtin blocktype TestFileExtractor { | ||
input inPort oftype None; | ||
output outPort oftype File; | ||
} | ||
|
||
builtin blocktype TestWorkbookExtractor { | ||
input inPort oftype None; | ||
output outPort oftype Workbook; | ||
} | ||
|
||
builtin blocktype TestWorkbookLoader { | ||
input inPort oftype Workbook; | ||
output outPort oftype None; | ||
} | ||
|
||
builtin blocktype TestTableExtractor { | ||
input inPort oftype None; | ||
output outPort oftype Table; | ||
} | ||
|
||
builtin blocktype TestTableLoader { | ||
input inPort oftype Table; | ||
output outPort oftype None; | ||
} |