navigateTomyProjects() is an instance method.
It is being called from addDefaultProjectBymyProjects(), another instance method.
These methods are not being accessed without an object; they are being accessed by this - the current instance against which these methods will be executed.
There is nothing mysterious about this code.