33 lines
488 B
Smalltalk
33 lines
488 B
Smalltalk
"
|
|
I store the places a BreaMember is affiliated to.
|
|
"
|
|
Class {
|
|
#name : #BreaOrganization,
|
|
#superclass : #Object,
|
|
#instVars : [
|
|
'name',
|
|
'website'
|
|
],
|
|
#category : #Brea
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
BreaOrganization >> name [
|
|
^ name
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
BreaOrganization >> name: anObject [
|
|
name := anObject
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
BreaOrganization >> website [
|
|
^ website
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
BreaOrganization >> website: anObject [
|
|
website := anObject
|
|
]
|