Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Project finalEnterActions:
Last updated at 11:50 am UTC on 28 November 2017
The method #finalEnterActions: is executed before a Project is entered.

For example you might want to do the following: call a method #configureOnFirstEntry


 finalEnterActions: leavingProject
	"Perform the final actions necessary as the receiver project is entered"

	super finalEnterActions: leavingProject.
	self configureOnFirstEntry.


See also
Project finalExitActions: