Skip to main content
summaryrefslogtreecommitdiffstats
blob: 35600130c0c3de15555dc17e63d7a6beb1c0a554 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         id="product"
         point="org.eclipse.core.runtime.products">
      <product
            application="org.eclipse.ui.ide.workbench"
            name="Eclipse Modeling Tools">
         <property
               name="preferenceCustomization"
               value="plugin_customization.ini">
         </property>
         <property
               name="appName"
               value="Eclipse Modeling Tools">
         </property>
         <property
               name="aboutText"
               value="Specified in the plugin.xml of the branding plugin.">
         </property>
         <property
               name="startupProgressRect"
               value="5,275,445,15">
         </property>
         <property
               name="windowImages"
               value="eclipse.png,eclipse32.png,eclipse48.png">
         </property>
         <property
              name="introBrandingImage"
              value="product:intro-eclipse.png"/>
         <property
               name="introTitle"
               value="Welcome to the Eclipse Papyrus Tools">
         </property>
         <property
               name="introBrandingImageText"
               value="Eclipse Project">
         </property>
      </product>
   </extension>
   <extension
         point="org.eclipse.ui.intro">
      <introProductBinding
            introId="org.eclipse.ui.intro.universal"
            productId="org.eclipse.epp.package.papyrus.product">
      </introProductBinding>
   </extension>

</plugin>

Back to the top