-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #635 from moosetechnology/parametric
Parametric
- Loading branch information
Showing
43 changed files
with
1,555 additions
and
844 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
" | ||
## Relations | ||
====================== | ||
### Association source | ||
| Relation | Origin | Opposite | Type | Comment | | ||
| `genericEntity` | `FamixTConcretisation` | `concretisations` | `FamixTParametricEntity` | genericEntity linked to in this relationship. from-side of the association| | ||
### Association target | ||
| Relation | Origin | Opposite | Type | Comment | | ||
| `concreteEntity` | `FamixTConcretisation` | `genericEntity` | `FamixTParametricEntity` | concreteEntity linked to in this relationship. to-side of the association| | ||
### Other | ||
| Relation | Origin | Opposite | Type | Comment | | ||
| `next` | `FamixTAssociation` | `previous` | `FamixTAssociation` | Next association in an ordered collection of associations. Currently not supported by the Moose importer| | ||
| `parameterConcretisations` | `FamixTConcretisation` | `concretisations` | `FamixTParameterConcretisation` | | | ||
| `previous` | `FamixTAssociation` | `next` | `FamixTAssociation` | Previous association in an ordered collection of associations. Currently not supported by the Moose importer| | ||
| `sourceAnchor` | `FamixTSourceEntity` | `element` | `FamixTSourceAnchor` | SourceAnchor entity linking to the original source code for this entity| | ||
## Properties | ||
====================== | ||
| Name | Type | Default value | Comment | | ||
| `isStub` | `Boolean` | false | Flag true if the entity attributes are incomplete, either because the entity is missing or not imported.| | ||
" | ||
Class { | ||
#name : #FamixJavaConcretisation, | ||
#superclass : #FamixJavaEntity, | ||
#traits : 'FamixTConcretisation', | ||
#classTraits : 'FamixTConcretisation classTrait', | ||
#category : #'Famix-Java-Entities-Entities' | ||
} | ||
|
||
{ #category : #meta } | ||
FamixJavaConcretisation class >> annotation [ | ||
|
||
<FMClass: #Concretisation super: #FamixJavaEntity> | ||
<package: #'Famix-Java-Entities'> | ||
<generated> | ||
^ self | ||
] |
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
src/Famix-Java-Entities/FamixJavaParameterConcretisation.class.st
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 @@ | ||
" | ||
## Relations | ||
====================== | ||
### Association source | ||
| Relation | Origin | Opposite | Type | Comment | | ||
| `genericParameter` | `FamixTParameterConcretisation` | `concretisations` | `FamixTGenericParameterType` | genericParameter linked to in this relationship. from-side of the association| | ||
### Association target | ||
| Relation | Origin | Opposite | Type | Comment | | ||
| `concreteParameter` | `FamixTParameterConcretisation` | `generics` | `FamixTConcreteParameterType` | concreteParameter linked to in this relationship. to-side of the association| | ||
### Other | ||
| Relation | Origin | Opposite | Type | Comment | | ||
| `concretisations` | `FamixTParameterConcretisation` | `parameterConcretisations` | `FamixTConcretisation` | | | ||
| `next` | `FamixTAssociation` | `previous` | `FamixTAssociation` | Next association in an ordered collection of associations. Currently not supported by the Moose importer| | ||
| `previous` | `FamixTAssociation` | `next` | `FamixTAssociation` | Previous association in an ordered collection of associations. Currently not supported by the Moose importer| | ||
| `sourceAnchor` | `FamixTSourceEntity` | `element` | `FamixTSourceAnchor` | SourceAnchor entity linking to the original source code for this entity| | ||
## Properties | ||
====================== | ||
| Name | Type | Default value | Comment | | ||
| `isStub` | `Boolean` | false | Flag true if the entity attributes are incomplete, either because the entity is missing or not imported.| | ||
" | ||
Class { | ||
#name : #FamixJavaParameterConcretisation, | ||
#superclass : #FamixJavaEntity, | ||
#traits : 'FamixTParameterConcretisation', | ||
#classTraits : 'FamixTParameterConcretisation classTrait', | ||
#category : #'Famix-Java-Entities-Entities' | ||
} | ||
|
||
{ #category : #meta } | ||
FamixJavaParameterConcretisation class >> annotation [ | ||
|
||
<FMClass: #ParameterConcretisation super: #FamixJavaEntity> | ||
<package: #'Famix-Java-Entities'> | ||
<generated> | ||
^ self | ||
] |
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
54 changes: 0 additions & 54 deletions
54
src/Famix-Java-Entities/FamixJavaParameterizableClass.class.st
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.