-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INFM-137 only
new
if extends has relations
- Loading branch information
Showing
3 changed files
with
45 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
package types | ||
|
||
type Class struct { | ||
Name string | ||
Abstract bool | ||
Deprecated bool | ||
Extends string | ||
Package string | ||
Imports []string | ||
Namespace string | ||
Using []string | ||
Documentation string | ||
Attributes []Attribute | ||
Relations []Association | ||
Resources []Attribute | ||
Resource bool | ||
ExtendsResource bool | ||
Identifiable bool | ||
GitTag string | ||
Stereotype string | ||
Name string | ||
Abstract bool | ||
Deprecated bool | ||
Extends string | ||
Package string | ||
Imports []string | ||
Namespace string | ||
Using []string | ||
Documentation string | ||
Attributes []Attribute | ||
Relations []Association | ||
ExtendsRelations bool | ||
Resources []Attribute | ||
Resource bool | ||
ExtendsResource bool | ||
Identifiable bool | ||
GitTag string | ||
Stereotype string | ||
} |
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