How to prevent the opening of an Untitled document at launch ?

Is it possible to avoid the automatic opening of a new document at application startup ?

-(BOOL)applicationShouldOpenUntitledFile::(NSApplication *)sender;
Implementing this method in your application delegate and making it return NO is enough to prevent document creation at launch time.
The application delegate protocol defines: