I know how to write a package in OCL but what exactly is the meaning of this construct? Why and when do we have to use packages?
As an example for a package in my script they write
package MeetingExample
context Meeting::isConfirmed : Boolean
init: false
context TeamMember:meeting : Set(Meetings)
init: Set{}
endpackage
But what is the difference to if I write only
context Meeting::isConfirmed : Boolean
init: false
context TeamMember:meeting : Set(Meetings)
init: Set{}