0% found this document useful (0 votes)
81 views

2 Eclipse Overview

Eclipse is an IDE that allows you to create, edit, compile and run programs written in many languages. It contains a workbench with views, menus and toolbars for development tasks. Projects organize source files and perspectives customize the layout for different tasks like Java development. The editor is used to write code. Packages and files are displayed in the Package Explorer. Users create Java files, add code, save, compile and run programs from within Eclipse.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views

2 Eclipse Overview

Eclipse is an IDE that allows you to create, edit, compile and run programs written in many languages. It contains a workbench with views, menus and toolbars for development tasks. Projects organize source files and perspectives customize the layout for different tasks like Java development. The editor is used to write code. Packages and files are displayed in the Package Explorer. Users create Java files, add code, save, compile and run programs from within Eclipse.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

GETTING STARTED WITH ECLIPSE

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

Switch the Eclipse perspective back to Java


top-right corner of your workspace window

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

Package Explorer pane


contains your workspace's project folders If not shown, open it as follows:
Select Window / Show View

Create a source code file


In Package Explorer, right click on the project name Select New / File
In the New File window, select your folder. In the File name box, enter Hello.java.

an empty Hello.java frame should appear in the workbench

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

Run the program

Run the program


Right click on the Hello.java file Select Run As Select Java Application in the pop-up submenu
the Console tab should appear in the bottom of the workbench window

Terminating the program


red button at the upper-right corner of your Console frame

Run the program using the Run icon


green-circle icon with a white triangular arrow inside it at the top of the workbench

You might also like