I have created a JAR project which consists of two packages :
- package
a
: contains some methods - package
b
: contains methods calling the ones of packagea
Now I want that the projects using my JAR should not be able to call methods in package a
, instead they must call methods defined in package b
.