Skip to content

Commit

Permalink
isHideable is now true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Nov 7, 2024
1 parent e04e1c2 commit 53aa7cb
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,6 @@ OPUmlClassifierController >> hookDiagramElement [
self diagramElement hiddenPackages: self hiddenPackages
]

{ #category : 'testing' }
OPUmlClassifierController >> isHideable [
^ true
]

{ #category : 'accessing' }
OPUmlClassifierController >> modelClassName [
^ self subclassResponsibility
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ OPUmlClassifierItemController >> descriptionName [
^ description
]

{ #category : 'testing' }
OPUmlClassifierItemController >> isHideable [
^ true
]

{ #category : 'hooks' }
OPUmlClassifierItemController >> placeholderName [

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,6 @@ OPUmlPackageController >> hookDiagramElement [
self diagramElement hiddenPackages: self hiddenPackages
]

{ #category : 'testing' }
OPUmlPackageController >> isHideable [
^ true
]

{ #category : 'accessing' }
OPUmlPackageController >> modelClass [
modelClass ifNil: [ self beForPackage ].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,12 @@ OPUmlPackageDiagramController >> rebuildPalette [
{ #category : 'as yet unclassified' }
OPUmlPackageDiagramController >> typeOfModel: aModel [
^ OPModelObjectType
named: (aModel umlClassName splitOnCapitals joinUsing: ' ')
named: (aModel umlClassName splitCamelCase joinUsing: ' ')
withSubtype:
(aModel appliedStereotypes
ifEmpty: [ OPModelObjectType named: '(without stereotype)' ]
ifNotEmpty: [ OPModelObjectType
named:
(aModel appliedStereotypes first umlClassName splitOnCapitals
(aModel appliedStereotypes first umlClassName splitCamelCase
joinUsing: ' ') ])
]
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ Class {
#tag : 'Controllers'
}

{ #category : 'testing' }
OPUmlRelationshipController >> isHideable [
^ true
]

{ #category : 'accessing' }
OPUmlRelationshipController >> magritteDescription [
| container |
Expand Down

0 comments on commit 53aa7cb

Please sign in to comment.