Question

Is there a way to generate all getters and setters in an entire package in eclipse? Thanks.

Was it helpful?

Solution

Assuming you're using Java, you may want to take a look at Project Lombok.

OTHER TIPS

Generating getters and setters on everything in an entire package seems like a very bad idea. Not everything should be accessible or modifiable. Good OO design includes knowing when to encapsulate by keeping some things private.

That said, you might already know this. If you're looking to do this for some academic exercise, feel free to disregard.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top