If I have a java class which is package-private (declared with \"class\", not \"public class\"), there is really no difference if the methods inside are declared public or p
Public methods inside a package class are public to classes in the same package. But, private methods will not be accessible by classes in the same package.