Skip to content

Commit

Permalink
Show all elements in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Feb 16, 2023
1 parent b95f214 commit 6a075c1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions repository/OP-ClockProfile/ClClockProfileFactory.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,18 @@ ClClockProfileFactory >> modelWithAppliedStereotype [

{ #category : #'instance creation' }
ClClockProfileFactory >> openExample [

<script: 'self new openExample'>
OPProject openOnModel: self modelWithAppliedStereotype
(OPProject openOnModel: self modelWithAppliedStereotype)
showAllElementsInAllDiagrams
]

{ #category : #'instance creation' }
ClClockProfileFactory >> openProfile [

<script: 'self new openProfile'>
OPProject openOnModel: self class profile
(OPProject openOnModel: self class profile)
showAllElementsInAllDiagrams
]

{ #category : #'instance creation' }
Expand Down
8 changes: 6 additions & 2 deletions repository/OP-IssuesProfile/IPIssuesProfileFactory.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,16 @@ IPIssuesProfileFactory >> exampleModel [

{ #category : #actions }
IPIssuesProfileFactory >> openExample [

<script: 'self new openExample'>
OPProject openOnModel: self exampleModel
(OPProject openOnModel: self exampleModel)
showAllElementsInAllDiagrams
]

{ #category : #actions }
IPIssuesProfileFactory >> openProfile [

<script: 'self new openProfile'>
OPProject openOnModel: self class profile
(OPProject openOnModel: self class profile)
showAllElementsInAllDiagrams
]

0 comments on commit 6a075c1

Please sign in to comment.