I am developing an application in Java ME that I want to provide as a library. Is there no way to hide classes that I don\'t want everyone to use, but is essential still in
You need to make the classes that you don't want exposed protected. This will make them non usable from client code. Read more in the official docs