Source Code for Examples
Select a project to browse the source code. I current do not include graphics or other binary artifacts. I include the source code and xml files as well as the ".projects" and the ".classpath" files.
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="de.vogella.rcp.intro.forms.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="Perspective"
class="de.vogella.rcp.intro.forms.Perspective"
id="de.vogella.rcp.intro.forms.perspective">
</perspective>
</extension>
<extension
point="org.eclipse.ui.views">
<view
name="View"
class="de.vogella.rcp.intro.forms.View"
id="de.vogella.rcp.intro.forms.view">
</view>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="de.vogella.rcp.intro.forms.handler.HelloHandler"
id="de.vogella.rcp.intro.forms.hello"
name="Hello">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="popup:formsToolBar">
<command
commandId="de.vogella.rcp.intro.forms.hello"
icon="icons/alt_window_16.gif"
label="Hello"
style="push">
</command>
</menuContribution>
</extension>
</plugin>