In Eclipse is it possible to create automatically Getters and Setters for a field. But I have a lot of private fields for which only getters should exist. Is somewhere in Eclips
One more (may be nasty) way of creating only getters is:
final
modifier (such as private final int hoursSpentInSO
)