@@ -65,8 +65,8 @@ CmCommandsGroup >> groups [
65
65
]
66
66
67
67
{ #category : #testing }
68
- CmCommandsGroup >> hasCommand: aLtCommand [
69
- ^ self commands includes: aLtCommand
68
+ CmCommandsGroup >> hasCommand: aCmCommand [
69
+ ^ self commands includes: aCmCommand
70
70
]
71
71
72
72
{ #category : #testing }
@@ -86,39 +86,39 @@ CmCommandsGroup >> initialize [
86
86
]
87
87
88
88
{ #category : #' public-api' }
89
- CmCommandsGroup >> register: aLtCommandsOrGroup [
90
- (self hasEntryNamed: aLtCommandsOrGroup basicName)
91
- ifTrue: [ LtDuplicatedEntryName signalEntryNamed: aLtCommandsOrGroup basicName ].
89
+ CmCommandsGroup >> register: aCmCommandsOrGroup [
90
+ (self hasEntryNamed: aCmCommandsOrGroup basicName)
91
+ ifTrue: [ CmDuplicatedEntryName signalEntryNamed: aCmCommandsOrGroup basicName ].
92
92
93
- entries add: aLtCommandsOrGroup
93
+ entries add: aCmCommandsOrGroup
94
94
]
95
95
96
96
{ #category : #' public-api' }
97
- CmCommandsGroup >> register: aLtCommandsOrGroup after: anotherLtCommandsOrGroup [
97
+ CmCommandsGroup >> register: aCmCommandsOrGroup after: anotherLtCommandsOrGroup [
98
98
self shouldBeImplemented; flag: #TODO
99
99
]
100
100
101
101
{ #category : #' public-api' }
102
- CmCommandsGroup >> register: aLtCommandsOrGroup before: anotherLtCommandsOrGroup [
102
+ CmCommandsGroup >> register: aCmCommandsOrGroup before: anotherLtCommandsOrGroup [
103
103
self shouldBeImplemented; flag: #TODO
104
104
]
105
105
106
106
{ #category : #' public-api' }
107
- CmCommandsGroup >> register: aLtCommandsOrGroup insteadOf: anotherLtCommandsOrGroup [
107
+ CmCommandsGroup >> register: aCmCommandsOrGroup insteadOf: anotherLtCommandsOrGroup [
108
108
self shouldBeImplemented; flag: #TODO
109
109
]
110
110
111
111
{ #category : #' public-api' }
112
- CmCommandsGroup >> registerFirst: aLtCommandsOrGroup [
112
+ CmCommandsGroup >> registerFirst: aCmCommandsOrGroup [
113
113
self shouldBeImplemented; flag: #TODO
114
114
]
115
115
116
116
{ #category : #' public-api' }
117
- CmCommandsGroup >> registerLast: aLtCommandsOrGroup [
117
+ CmCommandsGroup >> registerLast: aCmCommandsOrGroup [
118
118
self shouldBeImplemented; flag: #TODO
119
119
]
120
120
121
121
{ #category : #' public-api' }
122
- CmCommandsGroup >> unregister: aLtCommandOrRegister [
123
- entries remove: (entries detect: [ :e | e = aLtCommandOrRegister ])
122
+ CmCommandsGroup >> unregister: aCmCommandOrGroup [
123
+ entries remove: (entries detect: [ :e | e = aCmCommandOrGroup ])
124
124
]
0 commit comments