2 Eclipse Overview
2 Eclipse Overview
Eclipse is an Integrated Development Environment (IDE) that allows you to enter, compile, and run programs. The programs can be written in one of many different languages.
the language's compiler must be installed. The compiler installation is separate from Eclipse's installation.
Start Eclipse
Start menu or Shortcut
Create a workspace
Aworkspacecontains all your projects and settings Workspace Launcher dialog box appears In the Workspace box, enter d:\section Uncheck "Use this as a default and do not ask again"
Workbench
main Eclipse window area where you'll do all your work enter, debug, and run code contains things like the menu bar, toolbar, editor, and views
Perspective
an Eclipse way of grouping the layout of the various views, toolbars, and menus according to the specific task you're doing Eclipse can be used for many different languages
If the previous Eclipse user used it for a language other than Java
Project
an entity that helps to organize all the files in a particular program a collection of a set of source files To create a project:
Select File / New / Project
Editor
primary content area where you do development in Eclipse can be maximized and restored stack editor windows side by side or on top of each other
Basic Steps
Create a source code file Understand the code Save the source file Compile your program Fix compilation errors, if any
See your program in the Package Explorer pane