This repository has been archived by the owner on Mar 21, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Really fixed the commenting in fields with validations
- Loading branch information
Mathieu ABOU-AICHI
committed
Dec 21, 2016
1 parent
223b495
commit 21ac3e4
Showing
4 changed files
with
40 additions
and
13 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
entity TestEntity { | ||
/** first comment */ | ||
first String | ||
/** second comment */ | ||
second String | ||
third Integer | ||
/* another */ | ||
fourth String | ||
/** first comment */ | ||
first String | ||
/** second comment */ | ||
second String | ||
third Integer | ||
/* another */ | ||
fourth String | ||
} | ||
|
||
|
||
entity TestEntity2 { | ||
/** first comment */ | ||
first String required | ||
/** second comment */ | ||
second String | ||
} |