@@ -17,9 +17,9 @@ Class {
1717
1818{ #category : #commands }
1919CmContactBookPresenter class >> buildAddingGroupWith: presenterIntance [
20- ^ (LtCommandsGroup named: ' Adding' ) asSpecGroup
20+ ^ (CmCommandsGroup named: ' Adding' ) asSpecGroup
2121 basicDescription: ' Commands related to contact addition.' ;
22- register: (LtAddContactCommand forSpec context: presenterIntance);
22+ register: (CmAddContactCommand forSpec context: presenterIntance);
2323 beDisplayedAsGroup;
2424 yourself
2525]
@@ -34,26 +34,26 @@ CmContactBookPresenter class >> buildCommandsGroupWith: presenterIntance forRoot
3434
3535{ #category : #commands }
3636CmContactBookPresenter class >> buildEditionGroupWith: presenterIntance [
37- ^ (LtCommandsGroup named: ' Edition' ) asSpecGroup
37+ ^ (CmCommandsGroup named: ' Edition' ) asSpecGroup
3838 basicDescription: ' Commands related to contact edition.' ;
39- register: (LtRenameContactCommand forSpec context: presenterIntance);
39+ register: (CmRenameContactCommand forSpec context: presenterIntance);
4040 beDisplayedAsGroup;
4141 yourself
4242]
4343
4444{ #category : #commands }
4545CmContactBookPresenter class >> buildRemovingGroupWith: presenterIntance [
46- ^ (LtCommandsGroup named: ' Removing' ) asSpecGroup
46+ ^ (CmCommandsGroup named: ' Removing' ) asSpecGroup
4747 basicDescription: ' Command related to contact removal.' ;
48- register: (LtRemoveContactCommand forSpec context: presenterIntance);
48+ register: (CmRemoveContactCommand forSpec context: presenterIntance);
4949 beDisplayedAsGroup;
5050 yourself
5151]
5252
5353{ #category : #examples }
5454CmContactBookPresenter class >> coworkersExample [
5555 < example>
56- ^ (self on: LtContactBook coworkers) openWithSpec
56+ ^ (self on: CmContactBook coworkers) openWithSpec
5757]
5858
5959{ #category : #examples }
@@ -68,7 +68,7 @@ CmContactBookPresenter class >> defaultSpec [
6868{ #category : #examples }
6969CmContactBookPresenter class >> familyExample [
7070 < example>
71- ^ (self on: LtContactBook family) openWithSpec
71+ ^ (self on: CmContactBook family) openWithSpec
7272]
7373
7474{ #category : #accessing }
@@ -110,7 +110,7 @@ CmContactBookPresenter >> newContact [
110110 (splitted size = 2 and : [ splitted allSatisfy: #isNotEmpty ])
111111 ifFalse: [ InvalidUserInput signal : ' Please enter contact name and phone (split by comma)' ].
112112
113- ^ LtContact new
113+ ^ CmContact new
114114 name: splitted first;
115115 phone: splitted second;
116116 yourself
0 commit comments