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.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.commands">
      <command
            defaultHandler="de.vogella.plugin.openview.handler.OpenSvnRepositoryViewHandler"
            id="de.vogella.plugin.openview.OpenSubversionRepositoryView"
            name="Open SubversionRepository View">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="menu:org.eclipse.ui.main.menu">
         <command
               commandId="de.vogella.plugin.openview.OpenSubversionRepositoryView"
               label="Open SVN Rep"
               style="push">
         </command>
      </menuContribution>
   </extension>

</plugin>