@@ -17,9 +17,9 @@ Class {
17
17
18
18
{ #category : #commands }
19
19
CmContactBookPresenter class >> buildAddingGroupWith: presenterIntance [
20
- ^ (LtCommandsGroup named: ' Adding' ) asSpecGroup
20
+ ^ (CmCommandsGroup named: ' Adding' ) asSpecGroup
21
21
basicDescription: ' Commands related to contact addition.' ;
22
- register: (LtAddContactCommand forSpec context: presenterIntance);
22
+ register: (CmAddContactCommand forSpec context: presenterIntance);
23
23
beDisplayedAsGroup;
24
24
yourself
25
25
]
@@ -34,26 +34,26 @@ CmContactBookPresenter class >> buildCommandsGroupWith: presenterIntance forRoot
34
34
35
35
{ #category : #commands }
36
36
CmContactBookPresenter class >> buildEditionGroupWith: presenterIntance [
37
- ^ (LtCommandsGroup named: ' Edition' ) asSpecGroup
37
+ ^ (CmCommandsGroup named: ' Edition' ) asSpecGroup
38
38
basicDescription: ' Commands related to contact edition.' ;
39
- register: (LtRenameContactCommand forSpec context: presenterIntance);
39
+ register: (CmRenameContactCommand forSpec context: presenterIntance);
40
40
beDisplayedAsGroup;
41
41
yourself
42
42
]
43
43
44
44
{ #category : #commands }
45
45
CmContactBookPresenter class >> buildRemovingGroupWith: presenterIntance [
46
- ^ (LtCommandsGroup named: ' Removing' ) asSpecGroup
46
+ ^ (CmCommandsGroup named: ' Removing' ) asSpecGroup
47
47
basicDescription: ' Command related to contact removal.' ;
48
- register: (LtRemoveContactCommand forSpec context: presenterIntance);
48
+ register: (CmRemoveContactCommand forSpec context: presenterIntance);
49
49
beDisplayedAsGroup;
50
50
yourself
51
51
]
52
52
53
53
{ #category : #examples }
54
54
CmContactBookPresenter class >> coworkersExample [
55
55
< example>
56
- ^ (self on: LtContactBook coworkers) openWithSpec
56
+ ^ (self on: CmContactBook coworkers) openWithSpec
57
57
]
58
58
59
59
{ #category : #examples }
@@ -68,7 +68,7 @@ CmContactBookPresenter class >> defaultSpec [
68
68
{ #category : #examples }
69
69
CmContactBookPresenter class >> familyExample [
70
70
< example>
71
- ^ (self on: LtContactBook family) openWithSpec
71
+ ^ (self on: CmContactBook family) openWithSpec
72
72
]
73
73
74
74
{ #category : #accessing }
@@ -110,7 +110,7 @@ CmContactBookPresenter >> newContact [
110
110
(splitted size = 2 and : [ splitted allSatisfy: #isNotEmpty ])
111
111
ifFalse: [ InvalidUserInput signal : ' Please enter contact name and phone (split by comma)' ].
112
112
113
- ^ LtContact new
113
+ ^ CmContact new
114
114
name: splitted first;
115
115
phone: splitted second;
116
116
yourself
0 commit comments