SlideShare a Scribd company logo
Dmitry AlexandrovMartin Toshev
• Brief history and evolution of the platform
• OSGi
• Eclipse RCP – main components and architecture
• Deployment structure and plug-in installation flow
• Developing plug-ins
• Demos
• Q&A
• 1998 – OTI (Object Technology International – a subsidiary of IBM purchased in
1996, now known as IBM Ottawa Lab) starts developing what is now known as
Eclipse IDE
• 2001 – Eclipse IDE was outsourced in order to increase adoption and
acceleration. The Eclipse consortium and eclipse.org were established (along
with 8 other organizations)
• 2001 – Eclipse 1.0
• 2002 – Eclipse 2.0
• 2003 – Eclipse 2.1
• 2004 – Eclipse Software Foundation was created – on the 21st of June Eclipse
3.0 was shipped (codebase originated from VisualAge) with a runtime
architecture following the OSGi Service Platform specification
• 2004 (21st of June) – 3.0.[1]
• 2005 (28th of June) – 3.1
• 2006 (30th of June) – 3.2 (Calisto) – WTP donated from IBM
• 2007 (29th of June) – 3.3 (Europa)
• 2008 (25th of June) – 3.4 (Ganymede)
• 2009 (24th of June) – 3.5 (Galileo)
• 2010 (23rd of June) – 3.6 (Helios)
• 2011 (22nd of June) – 3.7 (Indigo)
• 2012 (27th of June) – 4.2 (Juno). Eclipse 4.2 is the result of the e4 incubation
• 2013 (planned 26 of June) – 4.3 (Kepler)
• 2014 (planned 25 of June) – 4.4 (Luna)
• 2012 – started development of Eclipse Orion – open-source browser-based IDE
for web development in the cloud
• The Open Services Gateway initiative framework is a module system and
service platform for the Java programming language that implements a complete
and dynamic component model, something that as of 2011 does not exist in
standalone Java/VM environments
• OSGi allows for applications or components to be installed, started, stopped,
updated and uninstalled without requiring a reboot
• The OSGi specifications have moved beyond the original focus of service
gateways, and are now used in applications ranging from mobile phones to the
open source Eclipse IDE. Other application areas include automobiles, industrial
automation, building automation, PDAs, grid computing, entertainment, fleet
management and application servers
Wikipedia
• Any framework that provides an implementation based on OSGi
provides an environment for the modularization of application into
smaller bundles – tightly coupled, dynamically loadable
collections of classes, jars and configuration files that explicitly
declared their dependencies
• OSGi logical layers and units:
bundles
services
services registry
life-cycle
modules
security
execution environment
• Every bundle contains a manifest.mf file (the bundle descriptor)
that specifies:
Bundle-Name: Defines a human-readable name for this bundle, Simply assigns a
short name to the bundle
Bundle-SymbolicName: The only required header, this entry specifies a unique
identifier for a bundle, based on the reverse domain name convention (used also by the java
packages)
Bundle-Description: A description of the bundle's functionality
Bundle-ManifestVersion: This little known header indicates the OSGi
specification to use for reading this bundle
Bundle-Version: Designates a version number to the bundle
Bundle-Activator: Indicates the class name to be invoked once a bundle is
activated
Export-Package: Expresses what Java packages contained in a bundle will be
made available to the outside world
Import-Package: Indicates what Java packages will be required from the outside
world, in order to fulfill the dependencies needed in a bundle.
• Sample manifest.mf file:
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Sample
Bundle-SymbolicName: com.sample
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: sample.Activator
Bundle-Vendor: test
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime
Bundle-
RequiredExecutionEnvironment:
JavaSE-1.7
Bundle-ActivationPolicy: lazy
• Advantages:
Reduced complexity: changes can be made without affecting other modules
Reuse: easy integration of third party components
Easy deployment – the life-cycle management of components is well-defined
Dynamic updates: Bundles can be installed, started, stopped, updated and uninstalled
without bringing down the whole system
Adaptive: The OSGi provides a dynamic service registry where bundles can register,
get and listen to services. This dynamic service model allows bundle to find out what all
services available in the system and can adapt those functionalities
Transparency: Certain parts of applications can be shutdown for bug fixing
• The Eclipse RCP (rich client platform) for developing general
purpose applications consists of:
Equinox – a standard bundling framework (OSGi implementation)
Core platform – boot Eclipse, run plug-ins
Standard Widget Toolkit (SWT) – a portable widget toolkit
JFace – viewer classes to bring model view controller programming to SWT, file
buffers, text handling, text editors
Eclipse Workbench – views, editors, perspectives, wizards, actions, commands
Eclipse plug in development
Eclipse plug in development
Eclipse plug in development
Eclipse plug in development
Eclipse plug in development
eclipse/ main installation folder
configuration/ Eclipse configuration
config.ini main configuration file
org.eclipse.equinox.simpleconfigurator/
bundles.info current set of plugins
dropins/ folder scanned for plugins
features/ features folder
p2/ p2 configuration folder
plugins/ plug-ins folder
eclipse.exe Eclipse loader
eclipse.ini Eclipse configuration file
Eclipse plug in development
Eclipse plug in development
• OSGi bundles
• Use extension points
• Provide extension points
• The Eclipse Platform
• Equinox – An OSGi R4 specification implementation used by Eclipse (a
common environment for executing plug-ins (bundles) and managing their life-
cycle)
• Various Eclipse plug-ins – The services managed by Equinox
• The Eclipse IDE - ADT, CDT, JDT, PDT and many others
Common characteristics of the workbench components:
Created statically via the use of extensions to existing extension points
(some can be created dynamically via the source code)
Most of them have a well-defined lifecycle
Most of them are represented by a particular class that must conform to
certain rules
Eclipse plug in development
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<category
id=“sample.category"
name=“sample">
</category>
<view
category=“sample.category"
class=“sample"
id=“sample.view"
name=“sample"
restorable="true">
</view>
</extension>
</plugin>
(extension point: org.eclipse.ui.views)
• Typically used to navigate a hierarchy of information, open an editor or display
properties for the active editor
• Can be grouped into categories
• Can be arranged by a perspective
• View classes must implement the IViewPart interface
• Used to supply functionality for toolbar buttons, context menu items and top-
level menu items
• Commands separate presentation from implementation, while actions don’t
• Can be enabled/disabled for a perspective or by a custom condition
• Action classes must implement the IActionDelegate interface, while command
classes must implement the IHandler interface
(extension point: org.eclipse.ui.editors)
• Primary mechanism to modify resources – text editors, multipage editors and
others
• Have an open-modify-save-close lifecycle
• Can be stacked
• Editors can be:
Text editors.
Form-based editors can layout controls in a fashion similar to a dialog or wizard.
Graphics intensive editors can be written using SWT level code.
List-oriented editors can use JFace list, tree, and table viewers to manipulate their data.
• Editor classes must implement the IEditorPart interface or extend EditorPart
• Editor input is manipulated by means of the IEditorInput interface
• The text editor framework provides a model-independent editor that supports
the following features:
presentation and user modification of text
standard text editing operations such as cut/copy/paste, find/replace
support for context and pulldown menus
visual presentation of text annotations in rulers or as squigglies in the text
automatic update of annotations as the user edits text
presentation of additional information such as line numbers
syntax highlighting
content assist
text outlining pages that show the hierarchical structure of the text
context sensitive behavior
hover support over rulers and text
key binding contexts
preference handling
• A custom text editor can be created by extending AbstractTextEditor or
TextEditor
• For source code style editors, a SourceViewer is provided. It can be customized
by extending SourceViewerConfiguration.
• Operations on text resources:
Partitioning & Syntax highlighting
Scanner
Rules
o IPredicateRule
o IRule
Detectors
Formatting
Completion
• Working with text resources – document structure:
- Partitioning
o IPredicateRule
• Working with text resources - highlighting:
Damage, repair, and reconciling (IPresentationDamager,
IPresentationRepairer, IPresentationReconciler)
Scanner
Detectors
Rules
o IRule
• Working with text resources – content assist:
IContentAssistant
IContentAssistProcessor
• Working with text resources – document readability:
IFormattingStrategy
Eclipse plug in development
Vertical ruler
Overview ruler
Text annotations
• Working with text resources – Annotations and rulers:
<extension
point="org.eclipse.core.filebuffers.annotationModelCreation">
<factory extensions="*"
class="org.eclipse.ui.texteditor.ResourceMarkerAnnotationModelFactory">
</factory>
</extension>
Text hover
Ruler hover
• Working with text resources – Hover information:
• IDE sugar
- Launch functionality
- Delegate
- Shortcut
- LaunchConfiguration
• Console
- Work with MessageConsole
(extension point: org.eclipse.ui.perspectives)
• Used for organizing/arranging views, editors and commands in the workbench
• Already existing perspectives can be enhanced as well
• Perspectives classes must implement the IPerspectiveFactory interface
• Preferences (org.eclipse.ui.preferencePages)
• Properties (org.eclipse.ui.propertyPages)
• Help pages (org.eclipse.ui.help)
In the EFS (Eclipse file system) all resources implement the
IResource interface:
files (IFile resources)
folders (IFolder resources)
projects (IProject resources)
the workspace root (IWorkspaceRoot resource)
editors_diagram.jpg
• IResourceChangeListener
• IResourceDeltaVisitor
The resource delta is structured as a tree rooted at the workspace root
Resources that have been created, deleted, or changed. If you have deleted (or added) a folder,
the resource delta will include the folder and all files contained in the folder
Resources that have been moved or renamed using the IResource.move() API
Markers that have been added, removed, or changed. Marker modification is considered to be a
workspace modification operation
Files that have been modified. Changed files are identified in the resource delta, but you do not
have access to the previous content of the file in the resource delta
ResourcesPlugin.getWorkspace().addResourceChangeListener(
listener, IResourceChangeEvent.POST_CHANGE);
• The workbench defines a number of services that can be retrieved from the
org.eclipse.ui.services.IServiceLocator:
Service Description Availability
IBindingService
Provides services related to the binding architecture (e.g., keyboard
shortcuts) within the workbench.
Globally
ICommandService
Provides services related to the command architecture within the
workbench.
Globally
ICommandImageService Provides a look-up facility for images associated with commands. Globally
IContextService
Provides services related to contexts in the Eclipse workbench, like context
activation and definitions.
Globally
IContributionService
Standard mechanisms that clients may use to order, display, and generally
work with contributions to the Workbench.
Globally
IEvaluationService
Evaluate a core expression against the workbench application context and
report updates using a Boolean property.
Globally
IFocusService Tracks focusGained and focusLost events. Globally
IHandlerService
Provides services related to activating and deactivating handlers within the
workbench.
Globally
IMenuService Provides services related to the menu architecture within the workbench. Globally
IPageService
A page service tracks the page and perspective lifecycle events within a
workbench window.
Workbench
Window
IPartService
A part service tracks the creation and activation of parts within a workbench
window.
Workbench
Window
IProgressService
The progress service is the primary interface to the workbench progress
support.
Globally
IWorkbenchSiteProgressService
The part progress service is an IProgressService that adds API for jobs that
change the state in a IWorkbenchPartSite while they are being run.
Part Site
ISaveablesLifecycleListener Listener for events fired by implementers of ISaveablesSource. Globally
ISelectionService A selection service tracks the selection within an a workbench window.
Workbench
Window
getSite().getWorkbenchWindow()
.getSelectionService().addSelectionListener(<listener>);
// <listener> must implement ISelectionListener
getSite().setSelectionProvider(<provider>);
// <provider> must implement ISelectionProvider)
Eclipse plug in development
• Plug-in – an OSGi bundle
• Feature – grouping of plug-ins and fragments
• Fragment – extend the functionality of another plug-in
• Update site – grouping of features that can be installed from a site
• The plug-in selection spy (Alt + Shift + F1) / menu spy (Alt + Shift + F2)
• Import plug-ins / fragment from the Import Wizard
• Window -> Preferences -> Plug-in Development -> Include all plug-ins from
target in Java search
• Eclipse Git repo
• Plug-in Registry/Plug-ins/Plug-in Dependencies
• Implementing help – providing useful information for a plug-in
• Internationalization – expanding the scope of our plug-in
• Building a plug-in – creating an Ant/Maven - based build script for a plug-in
• Publishing a plug-in – creating an update site for a plug-in
• SWT and JFace
• GEF and GMF
• Comparison with another platforms in terms of plug-in development
• Overview of existing plug-ins and features
• Providing extension points for a plug-in
• Eclipse Plug-ins (3rd edition) – Eric Clayberg, Dan Rubel
• Eclipse corner articles
(http://www.eclipse.org/articles/)
© 2011 Cisco and/or its affiliates. All rights reserved. 50
Thank you
• Brief history of Eclipse (up to 2006)
http://www.venukb.com/2006/07/21/history-of-eclipse/
last visited: 01.03.2013
• Wikipedia’s entry on Eclipse
http://en.wikipedia.org/wiki/Eclipse_(software)
last visited: 01.03.2013
• eclipse.org: Eclipse e4
http://eclipse.org/e4/
last visited: 01.03.2013
• EclipseCon 2009: e4 Project in Review
http://live.eclipse.org/node/737
last visited: 01.03.2013
• eclipse.org: Eclipse development process
http://www.eclipse.org/eclipse/development/
last visited: 01.03.2013
• Eclipse wiki: Development Resources
http://wiki.eclipse.org/Development_Resources
last visited: 01.03.2013
• Eclipse wiki:
http://wiki.eclipse.org/Development_Resources/Process_Guidelines/What_is_Inc
ubation
last visited: 01.03.2013
• Architecture of the Eclipse platform
https://wiki.engr.illinois.edu/download/attachments/183861826/cs427-
12.pdf?version=1&modificationDate=1317337982000
last visited: 01.03.2013
• vogella.de: Extending Eclipse –Plug-in Development Tutorial
http://www.vogella.de/articles/EclipsePlugIn/article.html
last visited: 01.03.2013
• OSGi tutorial
http://www.knopflerfish.org/tutorials/osgi_tutorial.pdf
last visited: 01.03.2013
• vogella.de: OSGi with Eclipse Equinox
http://www.vogella.de/articles/OSGi/article.html
last visited: 01.03.2013
• Wikipedia entry on OSGi
http://en.wikipedia.org/wiki/OSGi
last visited: 01.03.2013
• Wikipedia entry of Equinox
http://en.wikipedia.org/wiki/Equinox_(OSGi)
last visited: 01.03.2013
• Understanding the Eclipse p2 provisioning system
http://eclipse.dzone.com/articles/understanding-eclipse-p2-provi
last visited 01.03.2013
• Introduction to p2 (video)
http://www.fosslc.org/drupal/content/gentle-introduction-p2
last visited: 01.03.2013
• eclipse.org: project plan for Eclipse project, version Juno
http://www.eclipse.org/projects/project-
plan.php?planurl=http://www.eclipse.org/eclipse/development/plans/eclipse_proj
ect_plan_4_2.xml
last visited: 01.03.2013
• The architecture of open source applications (chapter 6: Eclipse)
http://www.aosabook.org/en/eclipse.html
last visited: 01.03.2013
• Eclipse Plug-in developers guide – Editor
http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2F
guide%2Feditors.htm&cp=2_0_13
last visited: 01.03.2013

More Related Content

Eclipse plug in development

  • 2. • Brief history and evolution of the platform • OSGi • Eclipse RCP – main components and architecture • Deployment structure and plug-in installation flow • Developing plug-ins • Demos • Q&A
  • 3. • 1998 – OTI (Object Technology International – a subsidiary of IBM purchased in 1996, now known as IBM Ottawa Lab) starts developing what is now known as Eclipse IDE • 2001 – Eclipse IDE was outsourced in order to increase adoption and acceleration. The Eclipse consortium and eclipse.org were established (along with 8 other organizations) • 2001 – Eclipse 1.0 • 2002 – Eclipse 2.0 • 2003 – Eclipse 2.1 • 2004 – Eclipse Software Foundation was created – on the 21st of June Eclipse 3.0 was shipped (codebase originated from VisualAge) with a runtime architecture following the OSGi Service Platform specification
  • 4. • 2004 (21st of June) – 3.0.[1] • 2005 (28th of June) – 3.1 • 2006 (30th of June) – 3.2 (Calisto) – WTP donated from IBM • 2007 (29th of June) – 3.3 (Europa) • 2008 (25th of June) – 3.4 (Ganymede) • 2009 (24th of June) – 3.5 (Galileo) • 2010 (23rd of June) – 3.6 (Helios) • 2011 (22nd of June) – 3.7 (Indigo) • 2012 (27th of June) – 4.2 (Juno). Eclipse 4.2 is the result of the e4 incubation
  • 5. • 2013 (planned 26 of June) – 4.3 (Kepler) • 2014 (planned 25 of June) – 4.4 (Luna) • 2012 – started development of Eclipse Orion – open-source browser-based IDE for web development in the cloud
  • 6. • The Open Services Gateway initiative framework is a module system and service platform for the Java programming language that implements a complete and dynamic component model, something that as of 2011 does not exist in standalone Java/VM environments • OSGi allows for applications or components to be installed, started, stopped, updated and uninstalled without requiring a reboot • The OSGi specifications have moved beyond the original focus of service gateways, and are now used in applications ranging from mobile phones to the open source Eclipse IDE. Other application areas include automobiles, industrial automation, building automation, PDAs, grid computing, entertainment, fleet management and application servers Wikipedia
  • 7. • Any framework that provides an implementation based on OSGi provides an environment for the modularization of application into smaller bundles – tightly coupled, dynamically loadable collections of classes, jars and configuration files that explicitly declared their dependencies • OSGi logical layers and units: bundles services services registry life-cycle modules security execution environment
  • 8. • Every bundle contains a manifest.mf file (the bundle descriptor) that specifies: Bundle-Name: Defines a human-readable name for this bundle, Simply assigns a short name to the bundle Bundle-SymbolicName: The only required header, this entry specifies a unique identifier for a bundle, based on the reverse domain name convention (used also by the java packages) Bundle-Description: A description of the bundle's functionality Bundle-ManifestVersion: This little known header indicates the OSGi specification to use for reading this bundle Bundle-Version: Designates a version number to the bundle Bundle-Activator: Indicates the class name to be invoked once a bundle is activated Export-Package: Expresses what Java packages contained in a bundle will be made available to the outside world Import-Package: Indicates what Java packages will be required from the outside world, in order to fulfill the dependencies needed in a bundle.
  • 9. • Sample manifest.mf file: Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Sample Bundle-SymbolicName: com.sample Bundle-Version: 1.0.0.qualifier Bundle-Activator: sample.Activator Bundle-Vendor: test Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime Bundle- RequiredExecutionEnvironment: JavaSE-1.7 Bundle-ActivationPolicy: lazy
  • 10. • Advantages: Reduced complexity: changes can be made without affecting other modules Reuse: easy integration of third party components Easy deployment – the life-cycle management of components is well-defined Dynamic updates: Bundles can be installed, started, stopped, updated and uninstalled without bringing down the whole system Adaptive: The OSGi provides a dynamic service registry where bundles can register, get and listen to services. This dynamic service model allows bundle to find out what all services available in the system and can adapt those functionalities Transparency: Certain parts of applications can be shutdown for bug fixing
  • 11. • The Eclipse RCP (rich client platform) for developing general purpose applications consists of: Equinox – a standard bundling framework (OSGi implementation) Core platform – boot Eclipse, run plug-ins Standard Widget Toolkit (SWT) – a portable widget toolkit JFace – viewer classes to bring model view controller programming to SWT, file buffers, text handling, text editors Eclipse Workbench – views, editors, perspectives, wizards, actions, commands
  • 17. eclipse/ main installation folder configuration/ Eclipse configuration config.ini main configuration file org.eclipse.equinox.simpleconfigurator/ bundles.info current set of plugins dropins/ folder scanned for plugins features/ features folder p2/ p2 configuration folder plugins/ plug-ins folder eclipse.exe Eclipse loader eclipse.ini Eclipse configuration file
  • 20. • OSGi bundles • Use extension points • Provide extension points
  • 21. • The Eclipse Platform • Equinox – An OSGi R4 specification implementation used by Eclipse (a common environment for executing plug-ins (bundles) and managing their life- cycle) • Various Eclipse plug-ins – The services managed by Equinox • The Eclipse IDE - ADT, CDT, JDT, PDT and many others
  • 22. Common characteristics of the workbench components: Created statically via the use of extensions to existing extension points (some can be created dynamically via the source code) Most of them have a well-defined lifecycle Most of them are represented by a particular class that must conform to certain rules
  • 24. <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.4"?> <plugin> <extension point="org.eclipse.ui.views"> <category id=“sample.category" name=“sample"> </category> <view category=“sample.category" class=“sample" id=“sample.view" name=“sample" restorable="true"> </view> </extension> </plugin>
  • 25. (extension point: org.eclipse.ui.views) • Typically used to navigate a hierarchy of information, open an editor or display properties for the active editor • Can be grouped into categories • Can be arranged by a perspective • View classes must implement the IViewPart interface
  • 26. • Used to supply functionality for toolbar buttons, context menu items and top- level menu items • Commands separate presentation from implementation, while actions don’t • Can be enabled/disabled for a perspective or by a custom condition • Action classes must implement the IActionDelegate interface, while command classes must implement the IHandler interface
  • 27. (extension point: org.eclipse.ui.editors) • Primary mechanism to modify resources – text editors, multipage editors and others • Have an open-modify-save-close lifecycle • Can be stacked • Editors can be: Text editors. Form-based editors can layout controls in a fashion similar to a dialog or wizard. Graphics intensive editors can be written using SWT level code. List-oriented editors can use JFace list, tree, and table viewers to manipulate their data.
  • 28. • Editor classes must implement the IEditorPart interface or extend EditorPart • Editor input is manipulated by means of the IEditorInput interface • The text editor framework provides a model-independent editor that supports the following features: presentation and user modification of text standard text editing operations such as cut/copy/paste, find/replace support for context and pulldown menus visual presentation of text annotations in rulers or as squigglies in the text automatic update of annotations as the user edits text presentation of additional information such as line numbers syntax highlighting content assist text outlining pages that show the hierarchical structure of the text context sensitive behavior hover support over rulers and text key binding contexts preference handling
  • 29. • A custom text editor can be created by extending AbstractTextEditor or TextEditor • For source code style editors, a SourceViewer is provided. It can be customized by extending SourceViewerConfiguration. • Operations on text resources: Partitioning & Syntax highlighting Scanner Rules o IPredicateRule o IRule Detectors Formatting Completion
  • 30. • Working with text resources – document structure: - Partitioning o IPredicateRule
  • 31. • Working with text resources - highlighting: Damage, repair, and reconciling (IPresentationDamager, IPresentationRepairer, IPresentationReconciler) Scanner Detectors Rules o IRule
  • 32. • Working with text resources – content assist: IContentAssistant IContentAssistProcessor
  • 33. • Working with text resources – document readability: IFormattingStrategy
  • 35. Vertical ruler Overview ruler Text annotations • Working with text resources – Annotations and rulers: <extension point="org.eclipse.core.filebuffers.annotationModelCreation"> <factory extensions="*" class="org.eclipse.ui.texteditor.ResourceMarkerAnnotationModelFactory"> </factory> </extension>
  • 36. Text hover Ruler hover • Working with text resources – Hover information:
  • 37. • IDE sugar - Launch functionality - Delegate - Shortcut - LaunchConfiguration • Console - Work with MessageConsole
  • 38. (extension point: org.eclipse.ui.perspectives) • Used for organizing/arranging views, editors and commands in the workbench • Already existing perspectives can be enhanced as well • Perspectives classes must implement the IPerspectiveFactory interface
  • 39. • Preferences (org.eclipse.ui.preferencePages) • Properties (org.eclipse.ui.propertyPages) • Help pages (org.eclipse.ui.help)
  • 40. In the EFS (Eclipse file system) all resources implement the IResource interface: files (IFile resources) folders (IFolder resources) projects (IProject resources) the workspace root (IWorkspaceRoot resource)
  • 42. • IResourceChangeListener • IResourceDeltaVisitor The resource delta is structured as a tree rooted at the workspace root Resources that have been created, deleted, or changed. If you have deleted (or added) a folder, the resource delta will include the folder and all files contained in the folder Resources that have been moved or renamed using the IResource.move() API Markers that have been added, removed, or changed. Marker modification is considered to be a workspace modification operation Files that have been modified. Changed files are identified in the resource delta, but you do not have access to the previous content of the file in the resource delta ResourcesPlugin.getWorkspace().addResourceChangeListener( listener, IResourceChangeEvent.POST_CHANGE);
  • 43. • The workbench defines a number of services that can be retrieved from the org.eclipse.ui.services.IServiceLocator: Service Description Availability IBindingService Provides services related to the binding architecture (e.g., keyboard shortcuts) within the workbench. Globally ICommandService Provides services related to the command architecture within the workbench. Globally ICommandImageService Provides a look-up facility for images associated with commands. Globally IContextService Provides services related to contexts in the Eclipse workbench, like context activation and definitions. Globally IContributionService Standard mechanisms that clients may use to order, display, and generally work with contributions to the Workbench. Globally IEvaluationService Evaluate a core expression against the workbench application context and report updates using a Boolean property. Globally IFocusService Tracks focusGained and focusLost events. Globally IHandlerService Provides services related to activating and deactivating handlers within the workbench. Globally IMenuService Provides services related to the menu architecture within the workbench. Globally IPageService A page service tracks the page and perspective lifecycle events within a workbench window. Workbench Window IPartService A part service tracks the creation and activation of parts within a workbench window. Workbench Window IProgressService The progress service is the primary interface to the workbench progress support. Globally IWorkbenchSiteProgressService The part progress service is an IProgressService that adds API for jobs that change the state in a IWorkbenchPartSite while they are being run. Part Site ISaveablesLifecycleListener Listener for events fired by implementers of ISaveablesSource. Globally ISelectionService A selection service tracks the selection within an a workbench window. Workbench Window
  • 44. getSite().getWorkbenchWindow() .getSelectionService().addSelectionListener(<listener>); // <listener> must implement ISelectionListener getSite().setSelectionProvider(<provider>); // <provider> must implement ISelectionProvider)
  • 46. • Plug-in – an OSGi bundle • Feature – grouping of plug-ins and fragments • Fragment – extend the functionality of another plug-in • Update site – grouping of features that can be installed from a site
  • 47. • The plug-in selection spy (Alt + Shift + F1) / menu spy (Alt + Shift + F2) • Import plug-ins / fragment from the Import Wizard • Window -> Preferences -> Plug-in Development -> Include all plug-ins from target in Java search • Eclipse Git repo • Plug-in Registry/Plug-ins/Plug-in Dependencies
  • 48. • Implementing help – providing useful information for a plug-in • Internationalization – expanding the scope of our plug-in • Building a plug-in – creating an Ant/Maven - based build script for a plug-in • Publishing a plug-in – creating an update site for a plug-in • SWT and JFace • GEF and GMF • Comparison with another platforms in terms of plug-in development • Overview of existing plug-ins and features • Providing extension points for a plug-in
  • 49. • Eclipse Plug-ins (3rd edition) – Eric Clayberg, Dan Rubel • Eclipse corner articles (http://www.eclipse.org/articles/)
  • 50. © 2011 Cisco and/or its affiliates. All rights reserved. 50 Thank you
  • 51. • Brief history of Eclipse (up to 2006) http://www.venukb.com/2006/07/21/history-of-eclipse/ last visited: 01.03.2013 • Wikipedia’s entry on Eclipse http://en.wikipedia.org/wiki/Eclipse_(software) last visited: 01.03.2013 • eclipse.org: Eclipse e4 http://eclipse.org/e4/ last visited: 01.03.2013 • EclipseCon 2009: e4 Project in Review http://live.eclipse.org/node/737 last visited: 01.03.2013
  • 52. • eclipse.org: Eclipse development process http://www.eclipse.org/eclipse/development/ last visited: 01.03.2013 • Eclipse wiki: Development Resources http://wiki.eclipse.org/Development_Resources last visited: 01.03.2013 • Eclipse wiki: http://wiki.eclipse.org/Development_Resources/Process_Guidelines/What_is_Inc ubation last visited: 01.03.2013
  • 53. • Architecture of the Eclipse platform https://wiki.engr.illinois.edu/download/attachments/183861826/cs427- 12.pdf?version=1&modificationDate=1317337982000 last visited: 01.03.2013 • vogella.de: Extending Eclipse –Plug-in Development Tutorial http://www.vogella.de/articles/EclipsePlugIn/article.html last visited: 01.03.2013 • OSGi tutorial http://www.knopflerfish.org/tutorials/osgi_tutorial.pdf last visited: 01.03.2013 • vogella.de: OSGi with Eclipse Equinox http://www.vogella.de/articles/OSGi/article.html last visited: 01.03.2013
  • 54. • Wikipedia entry on OSGi http://en.wikipedia.org/wiki/OSGi last visited: 01.03.2013 • Wikipedia entry of Equinox http://en.wikipedia.org/wiki/Equinox_(OSGi) last visited: 01.03.2013 • Understanding the Eclipse p2 provisioning system http://eclipse.dzone.com/articles/understanding-eclipse-p2-provi last visited 01.03.2013 • Introduction to p2 (video) http://www.fosslc.org/drupal/content/gentle-introduction-p2 last visited: 01.03.2013
  • 55. • eclipse.org: project plan for Eclipse project, version Juno http://www.eclipse.org/projects/project- plan.php?planurl=http://www.eclipse.org/eclipse/development/plans/eclipse_proj ect_plan_4_2.xml last visited: 01.03.2013 • The architecture of open source applications (chapter 6: Eclipse) http://www.aosabook.org/en/eclipse.html last visited: 01.03.2013 • Eclipse Plug-in developers guide – Editor http://help.eclipse.org/juno/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2F guide%2Feditors.htm&cp=2_0_13 last visited: 01.03.2013