SlideShare a Scribd company logo
Assignment 10
Aim: Using Eclipse IDE create project in C and JAVA
Theory
Eclipse is an excellent open extensible IntegratedDevelopmentEnvironment (IDE), written in
JavaLanguage, by InternationalBusinessMachines (IBM). It is now OpenSource.
Eclipse is a multi-language Integrated development environment (IDE) comprising a base workspace and
an extensible plug-in system for customizing the environment. It provides a core of services for
controlling a set of tools working together to support programming tasks. Tool builders contribute to the
Eclipse platform by wrapping their tools in pluggable components, called Eclipse plug-ins, which
conform to Eclipse's plug-in contract. A plug-in in Eclipse is a component that provides a certain type of
service within the context of the Eclipse workbench
An Eclipse installation includes a plugins folder where individual plug-ins are deployed. Each plug-in is
installed in its own folder under the plugins folder. A plug-in is described in an XML manifest file, called
plugin.xml, residing in the plug-in's folder. The manifest file tells the Eclipse runtime what it needs to
know to activate the plug-in.

Deploying a plug-in in an Eclipse installation involves copying the

resources that constitute the plug-in (the manifest file, jar files, and other resources) into an individual
folder for the plug-in, under the installation's plugins directory. Such a plug-in can then be activated by
the Eclipse runtime when it is required to perform some function. Activating a plug-in means loading its
runtime class and instantiating and initializing its instance.

How to create a new project in JAVA
Choose File → New → Java Project from the Eclipse menu bar, as in the following example:
The following window will be displayed. Enter the Project name and make sure the "Use Project
folder as root for sources and class files" option is selected in the "Project layout" section as shown in
the image below:

Click Finish to create the project. The following screen will be displayed, denoting an empty
workspace:

To close the Welcome screen, click the X on the tab labeled Welcome(towards the top left of
the Eclipse window). Now you should see the workspace. Congratulations, you have created
your first Java project! But, we're only halfway there. Next comes putting some substance (code)
into the project to make a working program!

More Related Content

PPTX
3 more abouteclipse
PPT
Eclipse IDE
PDF
What's new in Eclipse Mars
PPT
Eclipse 2011 Hot Topics
DOCX
Installing the java sdk
PPTX
Deployingmuleapplications 160903085602
PPTX
PPTX
jQuery vs AJAX Control Toolkit
3 more abouteclipse
Eclipse IDE
What's new in Eclipse Mars
Eclipse 2011 Hot Topics
Installing the java sdk
Deployingmuleapplications 160903085602
jQuery vs AJAX Control Toolkit

What's hot (20)

PPTX
Building Eclipse Plugins
PDF
Eclipse 2.5 Subversion Plugin Installation
PDF
Supplement J Eclipse
 
KEY
L0016 - The Structure of an Eclipse Plug-in
PPTX
Drupal 8 cli
PDF
Docker 101
PPTX
01 configure your-project
ODP
PDE Good Practices
PDF
Compiling With Eclipse
PPTX
Android the first app - hello world - copy
PPTX
Github plugin setup in anypointstudio
PPTX
JUnit and MUnit Set Up In Anypoint Studio
PPTX
AndEngine
PPTX
Google Map Implementation with offline feature.
PDF
Eclipse plug in development
DOCX
Eclipse plug in mylyn & tasktop
PPTX
PDF
Going Desktop with Electron
PPTX
Integrating external products into eclipse
PPTX
Configuring Anypoint Studio MQ connector
Building Eclipse Plugins
Eclipse 2.5 Subversion Plugin Installation
Supplement J Eclipse
 
L0016 - The Structure of an Eclipse Plug-in
Drupal 8 cli
Docker 101
01 configure your-project
PDE Good Practices
Compiling With Eclipse
Android the first app - hello world - copy
Github plugin setup in anypointstudio
JUnit and MUnit Set Up In Anypoint Studio
AndEngine
Google Map Implementation with offline feature.
Eclipse plug in development
Eclipse plug in mylyn & tasktop
Going Desktop with Electron
Integrating external products into eclipse
Configuring Anypoint Studio MQ connector
Ad

Similar to Assign 10 - Creating Projects using Eclipse IDE (20)

PPT
ABC of Platform Workspace
PDF
Eclipse In Action A Guide For Java Developers 1st Edition David Gallardo
PDF
JF_4_1_sg.pdf
PPT
Eclipse Training - Introduction
PDF
Part 2 java development
PDF
JDT Fundamentals 2010
PDF
EclipseCon 2010 - JDT Fundamentals
PDF
intro-to-eclipse.pdf
PPT
Introduction To Eclipse RCP
PDF
How to train the jdt dragon
PPT
ITU - MDD - Eclipse Plug-ins
PPT
Eclipse introduction IDE PRESENTATION
PPTX
Eclipse Overview
PPT
2) java development
DOCX
Page 8 of 83.Tutorial Get Started with Eclipse in the Compute.docx
PPTX
MWLUG - Universal Java
PDF
Eclipse Way
PDF
Java, Eclipse, Maven & JSF tutorial
PDF
Myeclipse+Eclipse+J Boss开发Ejb
PPTX
Introduction to Eclipse
ABC of Platform Workspace
Eclipse In Action A Guide For Java Developers 1st Edition David Gallardo
JF_4_1_sg.pdf
Eclipse Training - Introduction
Part 2 java development
JDT Fundamentals 2010
EclipseCon 2010 - JDT Fundamentals
intro-to-eclipse.pdf
Introduction To Eclipse RCP
How to train the jdt dragon
ITU - MDD - Eclipse Plug-ins
Eclipse introduction IDE PRESENTATION
Eclipse Overview
2) java development
Page 8 of 83.Tutorial Get Started with Eclipse in the Compute.docx
MWLUG - Universal Java
Eclipse Way
Java, Eclipse, Maven & JSF tutorial
Myeclipse+Eclipse+J Boss开发Ejb
Introduction to Eclipse
Ad

Assign 10 - Creating Projects using Eclipse IDE

  • 1. Assignment 10 Aim: Using Eclipse IDE create project in C and JAVA Theory Eclipse is an excellent open extensible IntegratedDevelopmentEnvironment (IDE), written in JavaLanguage, by InternationalBusinessMachines (IBM). It is now OpenSource. Eclipse is a multi-language Integrated development environment (IDE) comprising a base workspace and an extensible plug-in system for customizing the environment. It provides a core of services for controlling a set of tools working together to support programming tasks. Tool builders contribute to the Eclipse platform by wrapping their tools in pluggable components, called Eclipse plug-ins, which conform to Eclipse's plug-in contract. A plug-in in Eclipse is a component that provides a certain type of service within the context of the Eclipse workbench An Eclipse installation includes a plugins folder where individual plug-ins are deployed. Each plug-in is installed in its own folder under the plugins folder. A plug-in is described in an XML manifest file, called plugin.xml, residing in the plug-in's folder. The manifest file tells the Eclipse runtime what it needs to know to activate the plug-in. Deploying a plug-in in an Eclipse installation involves copying the resources that constitute the plug-in (the manifest file, jar files, and other resources) into an individual folder for the plug-in, under the installation's plugins directory. Such a plug-in can then be activated by the Eclipse runtime when it is required to perform some function. Activating a plug-in means loading its runtime class and instantiating and initializing its instance. How to create a new project in JAVA Choose File → New → Java Project from the Eclipse menu bar, as in the following example:
  • 2. The following window will be displayed. Enter the Project name and make sure the "Use Project folder as root for sources and class files" option is selected in the "Project layout" section as shown in the image below: Click Finish to create the project. The following screen will be displayed, denoting an empty workspace: To close the Welcome screen, click the X on the tab labeled Welcome(towards the top left of the Eclipse window). Now you should see the workspace. Congratulations, you have created your first Java project! But, we're only halfway there. Next comes putting some substance (code) into the project to make a working program!