Accessors.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-04-26 19:24:20 -05:00
parent 571427c512
commit bed5c107ee
1 changed files with 35 additions and 0 deletions

View File

@ -8,3 +8,38 @@ Class {
],
#category : #Holonica
}
{ #category : #accessing }
HlGroup >> name [
^ name
]
{ #category : #accessing }
HlGroup >> name: anObject [
name := anObject
]
{ #category : #accessing }
HlGroup >> period [
^ period
]
{ #category : #accessing }
HlGroup >> period: datesString [
period := datesString
]
{ #category : #accessing }
HlGroup >> persons [
^ persons
]
{ #category : #accessing }
HlGroup >> persons: anObject [
persons := anObject
]