-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
1,262 additions
and
581 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
78 changes: 0 additions & 78 deletions
78
repository/BaselineOfClassEditor/BaselineOfClassEditor.class.st
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
74 changes: 74 additions & 0 deletions
74
repository/BaselineOfOpenPonkClassEditor/BaselineOfOpenPonkClassEditor.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,74 @@ | ||
" | ||
Baseline for https://github.com/OpenPonk/class-editor | ||
" | ||
Class { | ||
#name : 'BaselineOfOpenPonkClassEditor', | ||
#superclass : 'BaselineOf', | ||
#category : 'BaselineOfOpenPonkClassEditor', | ||
#package : 'BaselineOfOpenPonkClassEditor' | ||
} | ||
|
||
{ #category : 'plugins' } | ||
BaselineOfOpenPonkClassEditor class >> loadPlugins [ | ||
self new loadPlugins | ||
] | ||
|
||
{ #category : 'baselines' } | ||
BaselineOfOpenPonkClassEditor >> baseline: spec [ | ||
|
||
<baseline> | ||
spec for: #common do: [ | ||
spec | ||
baseline: 'OpenPonkUMLXMI' | ||
with: [ spec repository: 'github://openponk/uml-xmi' ]. | ||
spec | ||
baseline: 'OpenPonkUMLBootstrapGenerator' | ||
with: [ | ||
spec repository: 'github://openponk/uml-bootstrap-generator' ]. | ||
spec | ||
baseline: 'OpenPonk' | ||
with: [ spec repository: 'github://openponk/openponk' ]. | ||
spec | ||
baseline: 'OpenPonkUMLProfiles' | ||
with: [ spec repository: 'github://openponk/uml-profiles' ]. | ||
spec package: 'OpenPonk-ClassEditor' with: [ | ||
spec requires: #( 'OpenPonkUMLXMI' 'OpenPonkUMLBootstrapGenerator' | ||
'OpenPonkUMLProfiles' ) ]. | ||
|
||
spec group: 'plugin' with: #( 'OpenPonk-ClassEditor' ). | ||
(Smalltalk globals includesKey: | ||
#BaselineOfOpenPonkOntoUMLVerifications) | ||
ifTrue: [ spec group: 'complete-plugin' with: #( plugin ) ] | ||
ifFalse: [ | ||
self plugins: spec. | ||
spec package: 'OpenPonk-ClassEditor-Plugins' with: [ | ||
spec requires: | ||
#( 'OpenPonkOntoUMLVerifications' OpenPonkOntoUMLPatterns | ||
OpenPonkGit OpenPonkOntoUMLTransformations ) ]. | ||
spec | ||
group: 'complete-plugin' | ||
with: #( plugin 'OpenPonk-ClassEditor-Plugins' ) ]. | ||
spec group: 'complete' with: #( OpenPonk 'complete-plugin' ). | ||
spec group: 'default' with: #( OpenPonk plugin ) ] | ||
] | ||
|
||
{ #category : 'baselines' } | ||
BaselineOfOpenPonkClassEditor >> plugins: spec [ | ||
|
||
spec baseline: 'OpenPonkOntoUMLVerifications' with: [ | ||
spec | ||
repository: 'github://openponk/ontouml-verifications'; | ||
loads: 'plugin' ]. | ||
spec baseline: 'OpenPonkOntoUMLTransformations' with: [ | ||
spec | ||
repository: | ||
'github://openponk/openponk-ontouml-to-uml-transformation'; | ||
loads: 'plugin' ]. | ||
spec | ||
baseline: 'OpenPonkGit' | ||
with: [ spec repository: 'github://openponk/openponk-git' ]. | ||
spec baseline: 'OpenPonkOntoUMLPatterns' with: [ | ||
spec | ||
repository: 'github://openponk/ontouml-patterns'; | ||
loads: 'plugin' ] | ||
] |
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 @@ | ||
Package { #name : 'BaselineOfOpenPonkClassEditor' } |
5 changes: 0 additions & 5 deletions
5
repository/OPClassEditor-Plugins/OPClassEditorPluginsMeta.class.st
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
repository/OpenPonk-ClassEditor-Plugins/OPClassEditorPluginsMeta.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,6 @@ | ||
Class { | ||
#name : 'OPClassEditorPluginsMeta', | ||
#superclass : 'Object', | ||
#category : 'OpenPonk-ClassEditor-Plugins', | ||
#package : 'OpenPonk-ClassEditor-Plugins' | ||
} |
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 @@ | ||
Package { #name : 'OpenPonk-ClassEditor-Plugins' } |
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
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,8 @@ | ||
Extension { #name : 'OPDiagram' } | ||
|
||
{ #category : '*OpenPonk-ClassEditor' } | ||
OPDiagram >> supportsHidingLabelEnds [ | ||
|
||
^ self modelElement isNotNil and: [ | ||
self modelElement isKindOf: OPUMLPackage ] | ||
] |
Oops, something went wrong.