Hi,
I commented every method of my source code using javadoc tags. But I noticed the private methods/variables do not show up in the api documentation. If I change the access modifier to public then they show up. I was wondering how to make them visible (without declaring them as public) if I want to make all the contents visible to a developer (for his easy reading) who are going to develop on it later on.
Thanks.