vote up 3 vote down star
1

Does anyone know of an automated approach to refactoring code to minimize the visibility of classes, and their properties and methods? I'm trying to clean up an old API that has way too many public getters and setters to fit with JavaBean standards. An Eclipse plugin would be ideal, but any tool that could help would be great.

flag

2 Answers

vote up 5 vote down check

IntelliJ idea can do a global analysis of code and tell you about all kinds of excessive visibility issues. If there's any dynamic technologies involved, it's also quite good at understanding that they are usages of a given method/class; but it's not perfect.

link|flag
If you've got all the code that uses it, then yea, IntelliJ (or presumably Eclipse) can tell you all the places it's being used. It may or may not find usages via reflection though depending on the reflection tool. Otherwise, there's not much you can do other than remove it and see what breaks. – Chris Kessel Feb 9 at 16:56
If there's public api's involved you obviously need client code too. The full codebase analyzis in Idea is amazing, but you still cannot go on a direct delete rampage without considering each item. – krosenvold Feb 9 at 16:59
vote up 1 vote down

I use Structure101 to maintain the structure of my application. It's worth a look.

link|flag

Your Answer

Get an OpenID
or

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