I have a large class that contains about 30 methods. Is it possible to automatically sort them in alphabetical order in eclipse? I was hoping to do this so they would be e
You can actually sort members of your class in your code with eclipse, in my opinion this improves readability but should be used with caution.
select the class, Source > Sort Members
Thanks to marcggs' answer.