Download Eclipse and Create Workspace

Eclipse is a very popular IDE among developers because of its vast features and ease of use. Before getting into basics of Eclipse we will see how to download Eclipse and create workspace in Eclipse. What is an IDE? IDE is short for Integrated Development Environment. An IDE consolidates operations such as coding, debugging, running, … Read more

Shortcut to generate Getter and Setter in Eclipse

What are Getter and setter methods ? Getter method is to retrieve the value of instance variable while a setter method is used to set or update the value of instance variable. It is a good practice to access instance variables through these methods instead of directly accessing because we can place some pre-conditions before … Read more