Visibility modifiers

It it possible to declare a method to be “visible only for other classes in this module”?

In Java there are four visibility modifiers “public”,“protected”,“private” and “”. This last modifier makes the method/class visible to the classes that exists in the same namespace (Xojo equivalent would be a module if I’ve understood things correctly). Can I do something similar in Xojo?

The Private scope will restrict the method to only the immediate Module.

Public lets it be called directory from anywhere.
Protected lets it be called from anywhere as long as it is fully specified, e.g., ModuleName.MethodName
Private restricts it to only within the class or module.

Yes, so there exists no way of doing the “default package visibility” like in Java.

Well, I have to do something else then.