vote up 2 vote down star
1

I'm looking for a Java tool which can automate reducing the visibility of classes and methods which don't need to be public. I want to reduce the amount of methods/classes that are public so that the only remaining public ones are the ones I want to expose as part of the public API. I have quite a lot of classes and methods so would like a tool to automate this.

I expected some better tools for doing this - is there anything in IntelliJ that can help?

flag

Clarification would be nice, do you want a tool to do regression analysis to determine what needs to be public and mark everything else as private, or do you want to be able to input some kind of list of what your public API should be and have it digest that to determine it? – Guvante Jul 28 at 17:51
I package all my code in to a JAR which is used in other projects. I want the public part of the API to have public access and everything else to have as low visibility as possible e.g. package access. I want the tool to work out by analyzing the code which classes and methods can be moved to default (package) access or lower - I can then manually change the public API methods back to public as there isn't many of them. – Supertux Jul 28 at 18:01

2 Answers

vote up 1 vote down check

You can use JDepend or CAP to view type references. It's not that helpful for methods though.

If there aren't that many methods, this approach will work.

In Eclipse you can search for all references to a method by selecting it and hitting Ctrl+Shift+G.

link|flag
I will have a look at JDepend and CAP. There are lots of methods - the Ctrl+Shift+G method would take too long. – Supertux Jul 28 at 19:01
It also works at the type level, so as a first pass if there are no type references (or at least none outside the package) you can make the type and all methods less visible – Rich Seller Jul 28 at 19:05
vote up 0 vote down

It's not an automated solution but could you bring up the Package View in eclipse, then start making methods and classes private. If it causes a problem you will see it almost instanly in the package viewer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.