-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NPE with schema import and --createMetaInfo and a VIEW with implicit …
…typed attributes (#385)
- Loading branch information
Showing
4 changed files
with
90 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
INTERLIS 2.3; | ||
|
||
MODEL View23 | ||
AT "mailto:ce@eisenhutinformatik.ch" VERSION "2015-09-23" = | ||
|
||
TOPIC Topic = | ||
|
||
CLASS ClassA = | ||
attrA1 : MANDATORY TEXT*10; | ||
attrA2 : TEXT*10; | ||
END ClassA; | ||
|
||
VIEW ViewA | ||
PROJECTION OF base~ClassA; | ||
= | ||
ATTRIBUTE | ||
a :=base-> attrA1; | ||
END ViewA; | ||
|
||
END Topic; | ||
END View23. |