Skip to main content
summaryrefslogtreecommitdiffstats
blob: 02ee2b2263eb1b229ab9b857123b149f7e53250f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
	Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others.
	All rights reserved. This program and the accompanying materials
	are made available under the terms of the Eclipse Public License v1.0
	which accompanies this distribution, and is available at
	http://www.eclipse.org/legal/epl-v10.html

	Contributors:
	  Eike Stepper - initial API and implementation
-->

<plugin>

   <extension id="app" point="org.eclipse.core.runtime.applications" name="%app.name">
      <application>
         <run class="org.eclipse.emf.cdo.internal.explorer.CDOExplorer"/>
      </application>
   </extension>
   
   	<extension id="product" point="org.eclipse.core.runtime.products">
      	<product
        	name="%product.name"
          description="%product.description"
          application="org.eclipse.emf.cdo.explorer.app">
        		<property name="appName" value="CDO Explorer"/>
         		<property name="windowImages" value="icons/alt_window_16.gif,icons/alt_window_32.gif"/>
      	</product>
   	</extension>

</plugin>

Back to the top