Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Object subclass: 'Veiculo'
- instanceVariables: 'passageiros'
- passengers
- ^passageiros
- addPassenger: pPessoa
- passengers add: pPessoa
- removePassenger: pPessoa
- passengers remove: pPessoa
- init
- passageiros := OrderedCollection new.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement