-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed #213 StateTransition .get_source() and .get_target() always ret…
…urn an empty JavaList.
- Loading branch information
Showing
3 changed files
with
50 additions
and
2 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
15 changes: 15 additions & 0 deletions
15
...rg.eclipse.python4capella.gen/resources/customizations/classes/StateTransition.source.txt
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,15 @@ | ||
def get_source(self): | ||
""" | ||
Returns: AbstractState | ||
""" | ||
value = self.get_java_object().getSource() | ||
if value is None: | ||
return value | ||
else: | ||
e_object_class = getattr(sys.modules["__main__"], "EObject") | ||
specific_cls = e_object_class.get_class(value) | ||
if specific_cls is None: | ||
return None | ||
else: | ||
return specific_cls(value) | ||
|
15 changes: 15 additions & 0 deletions
15
...rg.eclipse.python4capella.gen/resources/customizations/classes/StateTransition.target.txt
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,15 @@ | ||
def get_target(self): | ||
""" | ||
Returns: AbstractState | ||
""" | ||
value = self.get_java_object().getTarget() | ||
if value is None: | ||
return value | ||
else: | ||
e_object_class = getattr(sys.modules["__main__"], "EObject") | ||
specific_cls = e_object_class.get_class(value) | ||
if specific_cls is None: | ||
return None | ||
else: | ||
return specific_cls(value) | ||
|